/* register login steps */
:root {
  --acc: #00e6c3;
  --acc2: #18ffa6;
  --card-h: 260px;
  --arrow-w: 56px;
  --panel: rgba(255, 255, 255, 0.05);
  --ring: rgba(255, 255, 255, 0.12);
  --acc2: #18ffa6;
}

.glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.04);
}
.ring-soft {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.btn-primary {
  background: linear-gradient(90deg, #00e6c3, #18ffa6);
  color: #00110d;
  transition: all 0.2s ease-in-out;
}
.btn-primary:hover {
  background: #00e6c3;
  color: #000;
}
.green-filter {
  filter: hue-rotate(115deg) saturate(3) brightness(1.1);
}

/* دکمه شیشه‌ای که روی هاور سبز می‌شود */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 22px 0 22px 22px; /* بالا راست تیز، بقیه گرد */
  font-weight: 800;
  font-size: 0.875rem;
  color: #fff;
  transition: all 0.2s ease;
  isolation: isolate;
}
.btn-cta-red {
  color: #ff0000;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px 0 22px 22px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  z-index: -1;
}
.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px 0 22px 22px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.08) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  transition: opacity 0.2s ease;
}
.btn-cta:hover {
  color: #00110d;
}
.btn-cta:hover::before {
  background: transparent;
  box-shadow: none;
}
.btn-cta:hover::after {
  opacity: 1;
}
.custom_border {
  border-radius: 22px 0 22px 22px;
}
.card-glass {
  position: relative;
  border-radius: 22px;
  isolation: isolate;
  transition: all 0.2s ease;
  overflow: hidden;
  min-height: 170px;
  padding-bottom: 96px;
}
.card-media {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 100px;
  /* height: auto; */
  filter: grayscale(50%) brightness(0.95) contrast(1.05) opacity(0.95);
  pointer-events: none;
  user-select: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.card-glass:hover .card-media {
  transform: translateX(-50%) translateY(-2px) scale(1.02);
}
.card-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.1);
}
.card-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  transition: opacity 0.2s ease;
}
.card-glass:hover::before {
  background: transparent;
  box-shadow: none;
}
.card-glass:hover::after {
  opacity: 1;
}
.card-glass:hover .hover-dark {
  color: #00110d;
}

/* service */
.service-item {
  position: relative;
  width: 100%;
}
.service-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* چیپ‌های بالا */
.chip-right {
  position: relative;
  height: 60px;
  border-radius: 35px 5px 5px 2px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #b8c0c7;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.chip-right::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.12) 0 1px,
      transparent 1px 14px
    ),
    radial-gradient(
      80% 60% at 50% 110%,
      rgba(0, 230, 195, 0.35),
      transparent 60%
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  transition: opacity 0.2s ease;
}

.chip-left {
  position: relative;
  height: 60px;
  border-radius: 5px 35px 2px 5px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #b8c0c7;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.chip-left::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.12) 0 1px,
      transparent 1px 14px
    ),
    radial-gradient(
      80% 60% at 50% 110%,
      rgba(0, 230, 195, 0.35),
      transparent 60%
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  transition: opacity 0.2s ease;
}

/* کارت پایین */
.service-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 1.25rem 1.25rem 1.25rem; /* pt واقعی با آیکن تنظیم می‌شود */
}

.icon-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: 90px;
  height: 90px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  /* background:rgba(255,255,255,.08); box-shadow:inset 0 0 0 0px rgba(255,255,255,.15); */
}
.icon-badge img {
  width: 90px;
  height: 90px;
}
.icon-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0 1px,
    transparent 1px 14px
  );
}

/* دکمه داخل کارت */
.btn-glass {
  position: relative;
  border-radius: 18px;
  width: 100%;
  padding: 0.9rem 1rem;
  text-align: center;
  font-weight: 800;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s;
}
.btn-glass:hover {
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.12) 0 1px,
      transparent 1px 14px
    ),
    radial-gradient(
      80% 60% at 50% 110%,
      rgba(0, 230, 195, 0.35),
      transparent 60%
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  color: black;
}

/* هاور کل آیتم: چیپ‌ها و آیکن سبز شوند */
.service-item:hover .chip-right::after {
  opacity: 1;
}
.service-item:hover .chip-left::after {
  opacity: 1;
}
.service-item:hover .icon-badge::after {
  opacity: 1;
}
.service-item:hover .icon-badge img {
  filter: none;
}
.service-item:hover .btn-glass {
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.12) 0 1px,
      transparent 1px 14px
    ),
    radial-gradient(
      80% 60% at 50% 110%,
      rgba(0, 230, 195, 0.35),
      transparent 60%
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  color: black;
}

.ordering-row .o-item {
  flex: 1 1 0;
  min-width: 0;
}

/* قوس بالای عنوان */
.order-arch {
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -26px;
  width: min(1120px, 96vw);
  opacity: 0.75;
}
.order-arch svg {
  width: 100%;
  height: 72px;
}
.order-arch path {
  fill: none;
  stroke: rgba(0, 230, 195, 0.35);
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* کارت‌ها */
.o-item {
  position: relative;
}
.o-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  min-height: 220px;
  padding: 26px 26px 96px;
  min-width: 250px;
}
.o-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.2s ease;
}
.o-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0 6px,
      transparent 6px 14px
    ),
    linear-gradient(90deg, var(--acc), var(--acc2));
  transition: opacity 0.2s ease;
}
.o-title {
  font-weight: 900;
  font-size: 1.25rem;
  text-align: right;
}
.o-sub {
  color: var(--acc);
  margin-top: 0.5rem;
  text-align: right;
}

.o-emoji {
  position: absolute;
  left: 50%;
  bottom: -10px;
  height: 92px;
  width: auto;
  transform: translateX(-50%);
  /* filter: grayscale(1) opacity(0.9); */
  transition: transform 0.2s ease;
}

.o-item:hover .o-emoji {
  /* filter: grayscale(1) opacity(0.9); */
  transform: translate(-50%, -10px);
}

/* هاور کارت */
.o-item:hover .o-card::before {
  opacity: 0;
}
.o-item:hover .o-card::after {
  opacity: 1;
}
.o-item:hover .o-title {
  color: #00110d;
}
.o-item:hover .o-sub {
  color: #003e35;
}

/* فلش بین کارت‌ها (عکس، فقط دسکتاپ) */
.o-arrow-img {
  display: block;
  align-self: center;
  height: 20px;
  width: auto;
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
}

/* کارت پایه (شیشه‌ای) */
.p-card {
  position: relative;
  border-radius: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05); /* لایه شیشه‌ای */
  box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

/* دکمه CTA با استرایپ */
.primary-cta {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  color: #002a23;
  font-weight: 900;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0 6px,
      transparent 6px 14px
    ),
    linear-gradient(90deg, var(--acc), var(--acc2));
  transition: transform 0.15s ease, filter 0.15s ease;
}
.primary-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

/* کنترل تعداد */
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 1px var(--ring);
  font-size: 22px;
  line-height: 1;
  color: #00e6c3;
}
.qty-input {
  width: 48px;
  height: 36px;
  border-radius: 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 1px var(--ring);
  font-weight: 800;
  color: #e8e8e8;
}

/* گزینه‌ها (رادیویی سفارشی) */
.plan {
  display: block;
  position: relative;
}
.plan-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: auto;
}
.plan-body {
  display: block;
  padding: 16px 18px;
  border-radius: 22px 0 22px 22px;
  background: rgba(0, 0, 0, 0.16);
  box-shadow: inset 0 0 0 0px var(--ring);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.plan-title {
  font-weight: 800;
}
.plan-sub {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #65f0d9;
}
.plan-check {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--ring);
}
.plan-input:checked + .plan-body {
  background: radial-gradient(
      180px 120px at 100% 100%,
      rgba(0, 230, 195, 0.08),
      transparent 70%
    ),
    rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 0 0 1px rgba(0, 230, 195, 0.35);
}
.plan-input:checked + .plan-body .plan-check {
  background: radial-gradient(
      circle at 50% 50%,
      rgba(0, 230, 195, 0.35),
      rgba(0, 230, 195, 0.15) 60%,
      transparent 61%
    ),
    rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 2px rgba(0, 230, 195, 0.65);
}

/* استرایپ بک‌گراند کارت تصویر */
.stripe-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1; /* زیر محتوای کارت */
  opacity: 0.9;
}

/* هاله‌های تزئینی */
.glow-left,
.glow-right {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(40px);
  background: radial-gradient(
    closest-side,
    rgba(0, 230, 195, 0.25),
    transparent 70%
  );
  pointer-events: none;
}
.glow-left {
  left: -140px;
  bottom: -160px;
}
.glow-right {
  right: -140px;
  top: -160px;
}

/* blog */
/* پس‌زمینه‌ی کلی صفحه شما تیره است؛ این CSS فقط برای افکت‌های خاصه */
:root {
  /* --bg:#0b0e0f; */
  --mint: #12f2c8;
  --mint2: #10b981; /* emerald */
  --mint-text: #05352c; /* نوشته‌ی خیلی تیره روی سبز روشن */
}

/* نوار سبز راه‌راه بالا و دکمه‌ها */
.mint-stripes {
  background: repeating-linear-gradient(
    135deg,
    rgba(18, 242, 200, 0.28) 0px,
    rgba(18, 242, 200, 0.28) 2px,
    transparent 2px,
    transparent 20px
  );
  background: rgba(255, 255, 255, 0.06);
}

/* باکس محتوا (گِرد، شیشه‌ای، بوردر ملایم) */
.content-box {
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}
.group:hover .content-box {
  transform: translateY(-2px);
  /* box-shadow: 0 16px 44px rgba(0,0,0,.45); */
  border-color: rgba(18, 242, 200, 0.25);
}
.group:hover .mint-stripes {
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.12) 0 0px,
      transparent 0px 14px
    ),
    radial-gradient(
      80% 60% at 50% 110%,
      rgba(0, 230, 195, 0.35),
      transparent 60%
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  color: black;
}

.thumb {
  position: absolute;
  inset-inline: 1.25rem;
  top: -30px;
  height: 170px;
  border-radius: 22px 0 22px 22px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.group:hover .thumb-img {
  transform: scale(1.04);
}

/* دکمه‌های سبز با استرایپ */
.mint-btn {
  background: repeating-linear-gradient(
      135deg,
      rgba(18, 242, 200, 0.28) 0px,
      rgba(18, 242, 200, 0.28) 2px,
      transparent 2px,
      transparent 20px
    ),
    linear-gradient(135deg, rgba(18, 242, 200, 0.35), rgba(34, 211, 238, 0.25));
  color: var(--mint-text);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 6px 24px rgba(18, 242, 200, 0.18);
  border: 1px solid rgba(18, 242, 200, 0.45);
  transition: filter 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.mint-btn:hover {
  filter: brightness(1.05) saturate(1.15);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 10px 28px rgba(18, 242, 200, 0.26);
  transform: translateY(-1px);
}

/* ریسپانسیو: ارتفاع تصویر و فاصله‌ها */
@media (max-width: 1024px) {
  .thumb {
    height: 170px;
  }
}
@media (max-width: 640px) {
  .thumb {
    inset-inline: 1rem;
    height: 160px;
    top: -32px;
  }
}

/* footer */
/* ===== پالت ===== */
:root {
  --bg: #0b0e0f;
  --mint: #12f2c8;
  --emerald: #10b981;
  --darkText: #032e26;
}

/* ===== پس‌زمینه سکشن ===== */
.footer-two {
  background: var(--bg);
  overflow-x: hidden;
}
.footer-two .ft-stripes {
  position: absolute;
  inset: 0;
  content: "";
  display: block;
  pointer-events: none;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08) 0 2px,
    transparent 2px 22px
  );
}
.footer-two .ft-halo {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  width: 680px;
  height: 680px;
  left: -140px;
  top: -120px;
  opacity: 0.35;
  border-radius: 9999px;
  background: radial-gradient(
    closest-side,
    rgba(18, 242, 200, 0.35),
    rgba(34, 211, 238, 0.18),
    transparent 70%
  );
  filter: blur(32px);
}

/* ===== کارت شیشه‌ای محتوا ===== */
.glass-card {
  /* background:rgba(255,255,255,.06); */
  /* border:1px solid rgba(18,242,200,.25); */
  /* box-shadow:0 10px 40px rgba(0,0,0,.35); */
  backdrop-filter: blur(8px);
  /* border-radius:32px 0 32px 32px; */
}

/* لینک‌های لیست */
.footer-link {
  display: inline-block;
  padding: 0.2rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-link:hover {
  color: var(--mint);
  transform: translateX(-2px);
}

/* بج آیکن (کنار آدرس/تلفن/ایمیل) */
.icon-badge-footer {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: var(--darkText);
  background: linear-gradient(
    135deg,
    rgba(18, 242, 200, 0.35),
    rgba(34, 211, 238, 0.25)
  );
  box-shadow: inset 0 0 0 1.5px rgba(18, 242, 200, 0.45);
}

/* مجوزها (placeholder) */
.license-badge {
  width: 86px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  background: #1a1f22;
  border: 1px solid #2a3236;
}

/* دکمه سبز شبیه‌نئونی */
.mint-pill {
  background: repeating-linear-gradient(
      135deg,
      rgba(18, 242, 200, 0.28) 0 2px,
      transparent 2px 20px
    ),
    linear-gradient(135deg, rgba(18, 242, 200, 0.35), rgba(34, 211, 238, 0.25));
  color: var(--darkText);
  border: 1px solid rgba(18, 242, 200, 0.45);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(18, 242, 200, 0.2);
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.mint-pill:hover {
  filter: brightness(1.06) saturate(1.1);
  transform: translateY(-1px);
}

/* ===== کارت برند با افکت بک‌گراند ===== */
.brand-card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      130% 120% at 80% 100%,
      rgba(18, 242, 200, 0.22),
      rgba(0, 0, 0, 0) 45%
    ),
    #0f1316;
  border: 1px solid rgba(18, 242, 200, 0.25);
  border-radius: 0px 32px 32px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  isolation: isolate;
}
/* نوار نور مورّب */
.brand-beam {
  position: absolute;
  content: "";
  inset: auto -30% -30% auto;
  width: 120%;
  height: 140%;
  transform: rotate(-22deg);
  background: linear-gradient(
    135deg,
    rgba(18, 242, 200, 0.12),
    rgba(34, 211, 238, 0.08),
    transparent 70%
  );
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
/* استرایپ‌های داخلی کارت برند */
.brand-stripes {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(18, 242, 200, 0.14) 0 2px,
    transparent 2px 20px
  );
}

/* سوشال‌پیل و آیکن‌ها */
.social-pill {
  background: repeating-linear-gradient(
      135deg,
      rgba(18, 242, 200, 0.28) 0 2px,
      transparent 2px 20px
    ),
    linear-gradient(135deg, rgba(18, 242, 200, 0.35), rgba(34, 211, 238, 0.25));
  border: 1px solid rgba(18, 242, 200, 0.45);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 10px 26px rgba(18, 242, 200, 0.22);
}
.soc-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--darkText);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(18, 242, 200, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.soc-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1024px) {
  .brand-card {
    min-height: 380px;
  }
}
@media (max-width: 640px) {
  .brand-card {
    min-height: 360px;
  }
}

/* search */

/* Tabs */
.tab-pill {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #1b2023;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  transition: all 0.2s ease;
}
.tab-pill:hover {
  filter: brightness(1.05);
}
.tab-pill.is-active {
  color: var(--text-dark);
  border-color: rgba(18, 242, 200, 0.45);
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.12) 0 1px,
      transparent 1px 14px
    ),
    radial-gradient(
      80% 60% at 50% 110%,
      rgba(0, 230, 195, 0.35),
      transparent 60%
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  color: black;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(18, 242, 200, 0.2);
}

/* Filter card stripes */
.filter-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  content: "";
  /* background:rgba(255,255,255,.12); */
  /* background-image:repeating-linear-gradient(135deg,
    rgba(18,242,200,.28) 0 2px, transparent 2px 20px); */
}

/* Accordion */
.acc {
  border-radius: 18px;
  background: #0f1316;
  border: 1px solid rgba(18, 242, 200, 0.18);
  overflow: hidden;
}
.acc + .acc {
  margin-top: 0.75rem;
}
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px;
  cursor: pointer;
  background: #12171a;
}
.acc-ico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(18, 242, 200, 0.35),
    rgba(34, 211, 238, 0.25)
  );
  box-shadow: inset 0 0 0 1.5px rgba(18, 242, 200, 0.45);
  position: relative;
  transition: transform 0.25s ease;
}
.acc-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  background: #062e26;
  top: 13px;
  box-shadow: 0 6px 0 #062e26, 0 -6px 0 #062e26;
  transform: rotate(90deg);
}
.acc.open .acc-ico {
  transform: rotate(45deg);
}

.acc-panel {
  display: none;
  padding: 14px 16px 16px;
  background: #0b0f12;
}
.acc.open .acc-panel {
  display: block;
}

/* Checklist and inputs */
.check-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 14px;
  background: #151a1d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}
.check-row input {
  accent-color: var(--mint2);
  width: 16px;
  height: 16px;
}

.price-inp {
  flex: 1;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  background: #151a1d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e5e7eb;
}

/* single section */
/* افکت شیشه‌ای و سایه‌ی نرم کارت‌ها */

/* لیبل‌های ریزِ بالای فیلدها */
.field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem; /* text-sm */
  color: rgba(229, 231, 235, 0.8); /* gray-200/80 */
  margin-bottom: 0.5rem;
}

/* فلش انتخاب‌گرها کمی کم‌رنگ‌تر شود */
select {
  background-position: left 0.75rem center;
}

/* دکمه‌ی سبز با هاله */
.btn-glow {
  box-shadow: 0 0 0 rgba(16, 185, 129, 0);
  transition: box-shadow 0.25s ease, transform 0.08s ease;
}
.btn-glow:hover {
  box-shadow: 0 10px 35px rgba(16, 185, 129, 0.35);
}
.btn-glow:active {
  transform: translateY(1px);
}

/* دکمه‌های استپر */
.step-btn {
  width: 44px;
  height: 44px;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(31, 41, 55, 0.6);
}

/* کارت‌های آمار سمت چپ */
.stat-card {
  min-height: 180px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.stat-card .caption {
  color: rgba(229, 231, 235, 0.95);
  font-size: 1rem;
}
.stat-card-right-top {
  border-radius: 32px 0 32px 32px;
}
.stat-card-right-bottom {
  border-radius: 32px 32px 0 32px;
}
.stat-card-left-bottom {
  border-radius: 32px 32px 32px 0;
}
.stat-card-left-top {
  border-radius: 0 32px 32px 32px;
}

/* تایپو برای درصد/اعداد بزرگ */
.num-hero {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  background: linear-gradient(90deg, #34d399, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* محفظه‌ی لوگوی مرکزی (رو کارت‌ها می‌نشیند) */
.center-badge {
  pointer-events: none;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

/* ===== Hero / Breadcrumb ===== */
.hero-wrap {
  position: relative;
  isolation: isolate;
  padding-top: 2.25rem; /* pt-9 */
  padding-bottom: 1.25rem; /* pb-5 */
  /* padding-right: 2.5rem; pb-5 */
}
.hero-wrap::before {
  /* هاله‌های ملایم پس‌زمینه شبیه طرح */
  content: "";
  /* position:absolute;  */
  inset: -20% -5% auto -5%;
  height: 260px;
  background: radial-gradient(
      60% 90% at 0% 0%,
      rgba(16, 185, 129, 0.18),
      transparent 60%
    ),
    radial-gradient(
      70% 120% at 100% 0%,
      rgba(20, 184, 166, 0.14),
      transparent 60%
    ),
    radial-gradient(
      40% 60% at 50% 100%,
      rgba(15, 23, 42, 0.35),
      transparent 70%
    );
  z-index: -1;
  filter: blur(2px);
}

/* بردکرامب */
.crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(229, 231, 235, 0.7);
}
.crumbs a {
  color: rgba(255, 255, 255, 0.416);
}
.crumbs a:hover {
  color: #34d399;
}
.crumbs .sep {
  opacity: 0.5;
}

/* تیتر بزرگ */
.title-display {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12), 0 0 0 rgba(0, 0, 0, 0); /* برای همخوانی با فونت‌ها */
}

/* های‌لایت سبز-آبی روی بعضی کلمات + زیرخط */
.title-accent {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  opacity: 0.9;
}

/* برند خاکستریِ Youtube کنار تیتر */
.brand-mark {
  font-weight: 800;
  color: rgba(229, 231, 235, 0.5);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
}

/* — لوگوی مرکزی به‌صورت تصویر — */
.badge-wrap {
  position: relative;
  border-radius: 2rem; /* rounded-3xl تقریبی */
  overflow: hidden;
  /* border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03); */
}
.badge-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* تصویر کراپ نشود */
  transform: translateZ(0); /* آنتی الیاس */
}
/* هایلایت دایره‌ای بالای لوگو (مثل طرح) */
.badge-wrap::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 18%;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(18, 242, 200, 0.12) 0%,
    rgba(18, 242, 200, 0.12) 60%,
    transparent 60%
  );
  pointer-events: none;
  mix-blend-mode: screen;
}
.tab-link {
  justify-content: center;
}

.custom_background {
  background: rgba(255, 255, 255, 0.06);
}

/* intro */

/* ===== Intro Section (Spotify) ===== */
.intro-hero {
  position: relative;
  isolation: isolate;
}

/* فریم نئونی کنار تصویر */
.corner-frame {
  position: absolute;
  inset: auto;
  top: 80px;
  left: -60px;
  width: 86%;
  height: 70%;
  border: 2px solid rgba(16, 185, 129, 0.45); /* emerald-500/45 */
  border-radius: 1.75rem; /* ~ rounded-3xl */
  box-shadow: inset 0 0 0 6px rgba(16, 185, 129, 0.05);
  pointer-events: none;
}

/* تیتر با هایلایت و زیرخط گرادیان */
.intro-title {
  font-weight: 900;
  letter-spacing: -0.015em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.6;
  color: #fff;
}
.accent {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  opacity: 0.9;
}

/* زیرتیتر با حالت برجسته (embossed) */
.sub-emboss {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(229, 231, 235, 0.55);
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(255, 255, 255, 0.06);
}

/* باکس توضیح شیشه‌ای + خطوط گوشه‌ای */
.glass-note {
  /* background: rgba(17,24,39,.6);              slate-900/60 */
  /* border: 1px solid rgba(255,255,255,.06); */
  border-radius: 1.25rem;
  /* box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03); */
  position: relative;
}
.glass-note::before,
.glass-note::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 120px;
  height: 84px;
  border-radius: 1rem;
  border: 2px solid #10b981;
  opacity: 0.35;
}
.glass-note::before {
  top: -12px;
  left: -12px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.glass-note::after {
  bottom: -12px;
  right: -12px;
  border-left-color: transparent;
  border-top-color: transparent;
}

/* تصویر گوشی‌ها */
.phones {
  display: block;
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  border-radius: 1rem;
}

/* plans */
.plans-sec {
  position: relative;
  isolation: isolate;
}

/* فریم نئونی تزیینی سمت چپ بالا */
.plans-sec .neon-frame {
  position: absolute;
  inset: auto auto 0 0;
  width: 340px;
  height: 66px;
  transform: translate(16px, -18px);
  border-radius: 999px;
  border: 2px solid rgba(16, 185, 129, 0.45);
  box-shadow: inset 0 0 0 6px rgba(16, 185, 129, 0.05);
  pointer-events: none;
}

/* هدر سکشن */
.plans-h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
  line-height: 1.5;
  color: #fff;
}
.plans-h1 .udl {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.plans-h1 .udl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  opacity: 0.95;
}

/* برچسب انگلیسی */
.pill-en {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.75);
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* کارت‌ها */
.plan {
  background: rgba(255, 255, 255, 0.06);
  /* border:1px solid rgba(255,255,255,.06); */
  border-radius: 32px 0px 32px 0px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.plan .tag {
  color: #34d399;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
}
.plan .title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  text-align: right;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

/* لیست ویژگی‌ها */
.plan .features {
  margin-top: 0.2rem;
}
.plan .features li {
  position: relative;
  padding-right: 1.3rem; /* جای دات سبز */
  color: rgba(229, 231, 235, 0.92);
  line-height: 1.95;
  font-size: 1rem;
}
.plan .features li + li {
  margin-top: 0.35rem;
}
.plan .features li::before {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

/* کلمه‌ی بولدِ ابتدای هر آیتم */
.plan .features b {
  color: #fff;
  font-weight: 800;
}

/* ریسپانسیو کوچک‌تر کردن فاصله‌ها در موبایل */
@media (max-width: 640px) {
  .plan {
    padding: 1rem !important;
  }
  .plan .title {
    margin-bottom: 0.6rem;
  }
}

/* Activation Section  */
.activation-sec {
  position: relative;
  isolation: isolate;
}
.activation-sec .frame-left {
  position: absolute;
  top: -18px;
  left: -18px;
  bottom: 64px;
  width: 30%;
  min-width: 240px;
  border-radius: 1.9rem;
  border: 2px solid rgba(16, 185, 129, 0.45);
  box-shadow: inset 0 0 0 6px rgba(16, 185, 129, 0.05);
  pointer-events: none;
}

/* هدر */
.act-h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.5;
  color: #fff;
}
.act-h1 .accent {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.act-h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  opacity: 0.95;
}
.act-pill {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.75);
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* کارت مراحل */
.steps-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.steps-card .card-head {
  font-weight: 800;
  color: #e5e7eb;
  text-align: right;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

/* لیست مراحل */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr; /* RTL: شماره در سمت راست */
  align-items: start;
  gap: 0.75rem;
  padding: 0.35rem 0;
}
.badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #052e2b;
  background: linear-gradient(135deg, #34d399, #22d3ee);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.step .title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.15rem;
}
.step .desc {
  color: rgba(229, 231, 235, 0.9);
  line-height: 1.9;
}
.compare-head {
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.compare-text {
  color: rgba(229, 231, 235, 0.9);
  line-height: 1.95;
}

/* ===== Tips Section ===== */
.tips-sec {
  position: relative;
  isolation: isolate;
}

/* هدر */
.tips-h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: #fff;
}
.tips-h1 .accent {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.tips-h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  opacity: 0.95;
}

/* لیبل انگلیسی زیر هدر */
.tips-en {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.65);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}

/* کارت نکته */
.tip-card {
  background: rgba(255, 255, 255, 0.06);
  /* border: 1px solid rgba(255,255,255,.06); */
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  padding: 1.15rem 1.25rem;
}
.tip-title {
  position: relative;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  padding-right: 1.1rem; /* جا برای نقطه سبز */
}
.tip-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.tip-desc {
  color: rgba(229, 231, 235, 0.9);
  line-height: 1.95;
  font-size: 1rem;
}

/* ===== FAQ  ===== */
.faq-sec {
  position: relative;
  isolation: isolate;
}
.faq-frame {
  border: 2px solid rgba(16, 185, 129, 0.35);
  border-radius: 2rem;
  padding: 1.25rem;
  box-shadow: inset 0 0 0 6px rgba(16, 185, 129, 0.05);
}

/* هدر */
.faq-h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: #fff;
}
.faq-h1 .accent {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.faq-h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  opacity: 0.95;
}
.faq-en {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.65);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}

/* آکاردئون */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  /* border: 1px solid rgba(255,255,255,.06); */
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.faq-qrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.faq-q {
  color: #fff;
  font-weight: 800;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* دکمه + / − */
.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid #10b981;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 6px 16px rgba(16, 185, 129, 0.25);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: #10b981;
  border-radius: 2px;
  transition: opacity 0.15s ease;
}
.faq-toggle::before {
  width: 18px;
  height: 3px;
} /* خط افقی */
.faq-toggle::after {
  width: 3px;
  height: 18px;
} /* خط عمودی (برای +) */
.faq-item.open .faq-toggle::after {
  opacity: 0;
} /* در حالت باز، منفی می‌شود */

/* پاسخ */
.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  padding: 0 16px;
  margin-bottom: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease,
    padding 0.2s ease, margin 0.2s ease;
}
.faq-item.open .faq-answer {
  max-height: 320px;
  opacity: 1;
  transform: none;
  padding: 0 16px 14px;
  margin-bottom: 12px;
}
.faq-answer .inner {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 32px 0px 32px 32px;
  padding: 14px 16px;
  color: rgba(229, 231, 235, 0.92);
  line-height: 1.95;
}

/* سمت راست تصویر */
.faq-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.faq-hero img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.92) contrast(1.02);
}
.faq-hero::before,
.faq-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(16, 185, 129, 0.45);
  opacity: 0.9;
  border-radius: 1.5rem;
}
.faq-hero::before {
  inset: 16px auto auto 16px;
  width: 140px;
  height: 60px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.faq-hero::after {
  inset: auto 16px 16px auto;
  width: 140px;
  height: 60px;
  border-left-color: transparent;
  border-top-color: transparent;
}

/* ریسپانسیو */
@media (max-width: 1024px) {
  .faq-hero {
    order: -1;
  } /* تصویر بالا در تبلت/موبایل */
}

/* ===== Contact — rebuilt exactly per spec ===== */
.contact2-sec {
  position: relative;
  isolation: isolate;
}
.contact2-sec::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 280px;
  background: radial-gradient(
      60% 90% at 0% 0%,
      rgba(16, 185, 129, 0.14),
      transparent 60%
    ),
    radial-gradient(
      70% 120% at 100% 0%,
      rgba(20, 184, 166, 0.12),
      transparent 60%
    );
  z-index: -1;
  filter: blur(2px);
}

/* تیتر */
.ct-h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
.ct-h1 .accent {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.ct-h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  opacity: 0.9;
}
.ct-sub {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.65);
}

/* کارت شیشه‌ای عمومی */
.ct-glass {
  background: rgba(17, 24, 39, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* ---------- چپ: نقشه (دو بخش) ---------- */
/* 1) بک‌پلیت سبز راه‌راه */
.map-stack {
  position: relative;
}
.map-base {
  height: 108px;
  border-radius: 18px;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.08) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(90deg, #00e6c3, #18ffa6);
  transition: opacity 0.2s ease;
  border: 1.5px solid rgba(0, 230, 195, 0.55);
  box-shadow: inset 0 0 0 6px rgba(16, 185, 129, 0.05);
}
/* 2) کارت نقشه که روی بک‌پلیت می‌نشیند */
.map-photo {
  position: absolute;
  left: 50%;
  top: 18px;
  translate: -50% 0;
  width: calc(100% - 56px);
  height: 176px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.9);
}
/* زبانه‌های سبزِ بیرون‌زده دو طرف */
.map-photo::before,
.map-photo::after {
  content: "";
  position: absolute;
  top: 36px;
  width: 22px;
  height: 84px;
  border-radius: 10px;
  background: #16d39a;
  opacity: 0.95;
}
.map-photo::before {
  right: -10px;
}
.map-photo::after {
  left: -10px;
}
/* سنجاق */
.map-pin {
  position: absolute;
  left: 50%;
  top: 54%;
  translate: -50% -50%;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  border: 2px solid #052e2b;
  background: #10b981;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.18),
    0 10px 20px rgba(16, 185, 129, 0.25);
}
/* CTA زیر نقشه */
.map-cta {
  margin-top: 118px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- وسط: کارت پشتیبان ---------- */
.agent-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.agent-frame {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(16, 185, 129, 0.55);
  border-bottom-color: transparent;
  border-radius: 22px 22px 120px 120px/22px 22px 80px 80px;
  opacity: 0.8;
}
.agent-title {
  font-weight: 900;
  color: #fff;
  margin-top: 8px;
}
.agent-sub {
  margin-top: 2px;
}
.agent-bottom {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 22%;
  height: 34%;
  background: repeating-linear-gradient(
    -30deg,
    rgba(0, 230, 195, 0.22) 0 10px,
    rgba(0, 230, 195, 0.12) 10px 20px
  );
  border-radius: 14px;
  border: 1px solid rgba(0, 230, 195, 0.5);
}
.agent-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 240px;
  max-width: 72%;
  margin: 30px auto 0;
}
.agent-glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  translate: -50% 0;
  width: 72%;
  height: 36%;
  background: radial-gradient(
    60% 70% at 50% 90%,
    rgba(16, 185, 129, 0.45),
    transparent 60%
  );
  filter: blur(1.5px);
}

/* ---------- راست: اطلاعات ---------- */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}
.info-label {
  color: #a7f3d0;
  font-weight: 800;
}
.info-val {
  color: rgba(229, 231, 235, 0.92);
}
.info-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ریسپانسیو: فاصله‌ی نقشه و CTA در موبایل کمی کمتر شود */
@media (max-width: 640px) {
  .map-photo {
    top: 14px;
    height: 160px;
  }
  .map-cta {
    margin-top: 104px;
  }
}

/* ===== Contact Form Section ===== */
.cf-sec {
  position: relative;
  isolation: isolate;
}

.cf-form {
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cf-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: #fff;
}
.cf-title .accent {
  background: linear-gradient(90deg, #10b981, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.cf-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
}

.cf-sub {
  margin-top: 0.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.65);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

/* فیلدها */
.cf-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #d1d5db;
  font-weight: 700;
}
.cf-field {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  border-radius: 9999px; /* بیضی مثل طرح */
  padding: 0.85rem 1rem;
  width: 100%;
}
.cf-field::placeholder {
  color: rgba(229, 231, 235, 0.45);
}
.cf-field:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* تکست‌اریا */
.cf-area {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  width: 100%;
  border-radius: 18px;
  padding: 1rem 1rem;
  resize: vertical;
  min-height: 120px;
}
.cf-area::placeholder {
  color: rgba(229, 231, 235, 0.45);
}
.cf-area:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* دکمه */
.cf-btn {
  background: #10b981;
  color: #0b0f10;
  font-weight: 800;
  padding: 0.8rem 1.4rem;
  border-radius: 9999px;
  box-shadow: 0 14px 34px rgba(16, 185, 129, 0.35);
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cf-btn:hover {
  background: #16d39a;
  box-shadow: 0 18px 44px rgba(16, 185, 129, 0.45);
}
.cf-btn:active {
  transform: translateY(1px);
}

/* ستون تصویر سمت راست (فقط عکس – بدون SVG) */
.cf-img-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 420px;
}
.cf-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* موبایل: تصویر مخفی شود تا فرم تمام‌عرض باشد */
@media (max-width: 1024px) {
  .cf-img-card {
    display: none;
  }
}

.old-price {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: rgba(255, 1, 1, 0.5);
}

.bg-red {
  background-color: rgba(255, 1, 1, 0.5);
}

.bg-yellow {
  background-color: rgba(147, 130, 0, 0.806);
}

.text-danger {
  color: red;
}

.text-warning {
  color: yellowgreen;
}

header.sticky {
  z-index: 100;
}

#dash-aside {
  z-index: 30;
}

@media (max-width: 1023.98px) {
  #dash-aside {
    z-index: 120; /* بالاتر از هدر */
  }

  #dash-aside-overlay {
    display: block;
    z-index: 110; /* زیر منو، بالاتر از هدر */
  }
}

/* بدنه را کمی از پایین بالا بده که منو روی محتوا نیفته */
@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
}

/* حالت active */
#mobile-tabbar .tablink.is-active .icon-wrap {
  background: #16d39a;
  color: #fff;
  border-color: transparent;
}
#mobile-tabbar .tablink.is-active span:last-child {
  color: #16d39a;
  font-weight: 800;
}

.custom_navbar {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: baseline;
}

/* --- Custom Dropdown (RTL) --- */
.tk-dd {
  position: relative;
}
.tk-dd:focus-within .tk-dd__btn {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.tk-dd__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.055);
  color: #e5e7eb;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  padding-left: 3rem; /* جا برای آیکن سمت چپ */
  text-align: right;
}
.tk-dd__caret {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(43, 155, 131, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #e5e7eb;
}

.tk-dd__panel {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 6px);
  background: rgba(43, 155, 131, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  padding: 0.35rem;
  max-height: 220px;
  overflow: auto;
  z-index: 50;
  display: none;
}
.tk-dd.open .tk-dd__panel {
  display: block;
}

.tk-dd__opt {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  color: #e5e7eb;
  user-select: none;
}
.tk-dd__opt:hover,
.tk-dd__opt.is-active {
  background: rgba(255, 255, 255, 0.06);
}
.tk-dd__opt[aria-selected="true"] {
  background: #10b981;
  color: #071713;
  font-weight: 900;
}
.tk-dd__opt[aria-disabled="true"] {
  color: #9ca3af;
  opacity: 0.55;
  pointer-events: none;
}

/* ریست و پوسته‌ی واحد برای همه‌ی سلکت‌ها */
.select-neo {
  position: relative; /* والد مرجع فلش */
  display: block;
  border-radius: 14px;
  background: #1b232a; /* پس‌زمینه‌ی ورودی */
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* خود select */
.select-neo select {
  appearance: none; /* حذف فلش پیش‌فرض */
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  background: transparent;
  color: #fff;
  font: inherit;
  line-height: 1.8;
  padding-block: 12px;
  padding-inline-start: 52px; /* فضا برای فلش سمت شروع خط */
  padding-inline-end: 16px; /* سمت دیگر */
  padding-left: 52px;
  padding-right: 16px;
  /* border: 0; */
  border-radius: 14px;
  outline: none;
}

/* هاله‌ی فوکوس واحد */
.select-neo:focus-within {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.55);
}

/* کپسول زیر فلش (دایره‌ی سبز) */
.select-neo::before {
  content: "";
  position: absolute;
  inset-inline-start: 10px; /* در RTL می‌شود left، در LTR می‌شود right */
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  pointer-events: none; /* کلیک به خود select برسد */
  left: 10px;
  right: auto;
}

/* فلش رو به پایین؛ همیشه وسطِ کپسول */
.select-neo::after {
  content: "";
  position: absolute;
  inset-inline-start: 23px; /* داخل همان کپسول */
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%); /* همیشه وسط؛ بدون 67% */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    center/14px 14px no-repeat;
  pointer-events: none; /* روی آیکن هم کلیک شود چون select زیرش است */
  left: 23px;
  right: auto;
}

/* حالت غیرفعال (اختیاری) */
.select-neo select:disabled {
  color: #9aa6af;
  opacity: 0.7;
  cursor: not-allowed;
}

/* پنل گزینه‌ها (native) را نمی‌توان کامل استایل داد،
   اما می‌توانید رنگ زمینه/متن را تا حد ممکن تنظیم کنید: */
.select-neo select option {
  background: #129b86;
  color: #fff;
}
.select-neo select option:checked {
  background: #0f8b74;
}
body.loading #page-loader {
  opacity: 1;
  visibility: visible;
}
body.loading #site-wrapper {
  opacity: 0;
}

/* بعد از بارگذاری: لودر محو و سایت دیده میشه */
body.loaded #page-loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
body.loaded #site-wrapper {
  opacity: 1;
}
#page-loader {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  animation: fadeOutLoader 1s ease 1s forwards;
}

/* انیمیشن محو شدن بعد از 1 ثانیه */
@keyframes fadeOutLoader {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
