/* ─────────────────────────────── */
/*   ریست پایه                     */
/* ─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "IRANSans", sans-serif;
  direction: rtl;
  background: #020617;
  color: #e5e7eb;
  min-height: 100vh;
}

/* لینک‌ها بدون آندرلاین پیش‌فرض */
a {
  color: inherit;
}

/* ─────────────────────────────── */
/*   بک‌گراند زمستانی متحرک        */
/* ─────────────────────────────── */
.cosmic-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 5% 10%, rgba(220, 38, 38, 0.24), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(22, 163, 74, 0.24), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(250, 204, 21, 0.18), transparent 55%),
    #020617;
  overflow: hidden;
}

.cosmic-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.7;
  animation: snowDrift 22s linear infinite;
}


/* ─────────────────────────────── */
/*   دکمه‌های شناور پایین صفحه    */
/* ─────────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: space-between; /* یکی چپ، یکی راست */
  padding: 0 20px;
  z-index: 9999;
}

.fab {
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  display: inline-block;
}

/* دکمه سمت چپ = سبز */
.fab-green {
  background-color: #4CAF50; /* سبز */
}

/* دکمه سمت راست = قرمز */
.fab-red {
  background-color: #F44336; /* قرمز */
}

.fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* انیمیشن برف ریز */
@keyframes snowDrift {
  0% {
    transform: translate3d(0, -10px, 0);
  }
  50% {
    transform: translate3d(-26px, 10px, 0);
  }
  100% {
    transform: translate3d(0, -10px, 0);
  }
}

/* ─────────────────────────────── */
/*   کانتینر اصلی                  */
/* ─────────────────────────────── */
.shell {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

/* ─────────────────────────────── */
/*   هدر کریسمسی                   */
/* ─────────────────────────────── */
.galaxy-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    90deg,
    rgba(8, 47, 35, 0.98),
    rgba(127, 21, 21, 0.98)
  );
  border-bottom: 1px solid rgba(248, 250, 252, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.galaxy-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

/* برند */
.brand-core {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-orb {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background:
    conic-gradient(from 180deg, #22c55e, #f97316, #ef4444, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-shadow:
    0 0 26px rgba(248, 250, 252, 0.9),
    0 0 40px rgba(185, 28, 28, 0.8);
  animation: orbSpin 7s linear infinite;
}

@keyframes orbSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.brand-orb-icon {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 40% 30%, #0f172a, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #f9fafb;
}

.brand-subline {
  font-size: 0.7rem;
  color: #bfdbfe;
}

/* منو */
.stellar-nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.stellar-nav a {
  color: #f9fafb;
  text-decoration: none;
  position: relative;
  opacity: 0.9;
  padding-bottom: 0.12rem;
  transition: opacity 0.2s ease;
}

.stellar-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #facc15, #22c55e, #ef4444);
  transition: width 0.2s ease;
}

.stellar-nav a:hover::after {
  width: 100%;
}

.stellar-nav a:hover {
  opacity: 1;
}

/* ─────────────────────────────── */
/*   بنر آژانس + لینک‌های سریع     */
/* ─────────────────────────────── */
.agency-strip {
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(
      135deg,
      rgba(8, 47, 35, 0.98),
      rgba(15, 23, 42, 0.98),
      rgba(127, 29, 29, 0.98)
    );
  position: relative;
  overflow: hidden;
}

.agency-strip::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.25), transparent 55%),
    radial-gradient(circle at 100% 10%, rgba(250, 204, 21, 0.25), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
  animation: agencyGlow 18s ease-in-out infinite;
}

@keyframes agencyGlow {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-24px, 12px, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

.agency-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 1.3rem;
  padding: 1.4rem 0 1.6rem;
  align-items: flex-start;
}

.agency-badge-main {
  font-size: 1rem;
  font-weight: 800;
  color: #fef9c3;
  margin-bottom: 0.3rem;
}

.agency-badge-sub {
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* لینک‌های سریع – گلس مورف + نبض نئونی قرمز/سبز */
.agency-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-self: stretch;
}

.chip-link {
  position: relative;
  padding: 0.85rem 1rem;
  min-height: 70px;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 0.95rem;

  background: rgba(15, 23, 42, 0.9);
  background-image: linear-gradient(
      140deg,
      rgba(248, 250, 252, 0.12),
      rgba(15, 23, 42, 0.9)
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.6);

  color: #f9fafb;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.25s ease;
}

/* رگه نور داخل دکمه */
.chip-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.35), transparent 60%);
  opacity: 0;
  transform: translate3d(-40%, -40%, 0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* نبض نئونی کریسمسی */
.agency-links .chip-link {
  animation: neonPulse 2.8s ease-in-out infinite;
}

.agency-links .chip-link:hover {
  animation-duration: 2s;
}

@keyframes neonPulse {
  0% {
    border-color: rgba(148, 163, 184, 0.6);
    box-shadow:
      0 0 0 rgba(185, 28, 28, 0),
      0 0 0 rgba(22, 163, 74, 0);
    transform: translateY(0) scale(1);
  }
  50% {
    border-color: rgba(248, 250, 252, 0.9);
    box-shadow:
      0 0 18px rgba(220, 38, 38, 0.9),
      0 0 28px rgba(22, 163, 74, 0.85);
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    border-color: rgba(148, 163, 184, 0.6);
    box-shadow:
      0 0 0 rgba(185, 28, 28, 0),
      0 0 0 rgba(22, 163, 74, 0);
    transform: translateY(0) scale(1);
  }
}

/* هاور گلوبال روی چیپ */
.chip-link:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.chip-link:hover {
  background: rgba(15, 23, 42, 0.97);
  border-color: rgba(248, 250, 252, 0.95);
  box-shadow:
    0 14px 38px rgba(15, 23, 42, 0.96),
    0 0 22px rgba(250, 250, 249, 0.95);
}

/* دکمه‌های راه‌های ارتباطی (پیل‌دار) */
.agency-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agency-contacts-title {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.agency-contacts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-link--outline {
  min-height: 44px;
  padding: 0.45rem 1.1rem;
  font-size: 0.84rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chip-link--outline::before {
  display: none;
}

.chip-link--outline:hover {
  transform: translateY(-2px);
  background: rgba(127, 29, 29, 0.98);
  border-color: rgba(248, 250, 252, 1);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.98),
    0 0 18px rgba(248, 250, 252, 0.95);
}

/* ─────────────────────────────── */
/*   هیرو                          */
/* ─────────────────────────────── */
.hero-orbit {
  padding: 3.3rem 0 2.8rem;
}

.orbit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.7rem;
  align-items: center;
}

.orbit-text h1 {
  font-size: 2.1rem;
  margin: 1rem 0 0.9rem;
  color: #f9fafb;
}

.orbit-text p {
  font-size: 0.98rem;
  line-height: 1.95;
  color: #e5e7eb;
}

.orbit-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(248, 250, 252, 0.8);
  color: #fef9c3;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
}

.orbit-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #facc15, #f97316);
}

/* دکمه‌های هیرو */
.orbit-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-neon {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #ef4444, #f97316, #22c55e);
  color: #020617;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow:
    0 20px 45px rgba(185, 28, 28, 0.75),
    0 0 40px rgba(250, 204, 21, 0.9);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
}

.btn-neon:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 25px 70px rgba(185, 28, 28, 0.9),
    0 0 55px rgba(250, 204, 21, 1);
  filter: brightness(1.06);
}

.btn-ghost-neon {
  display: inline-block;
  padding: 0.86rem 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  color: #f9fafb;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.98);
  transition:
    background 0.15s ease,
    box-shadow 0.12s ease,
    transform 0.12s ease;
}

.btn-ghost-neon:hover {
  background: rgba(15, 23, 42, 1);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-large {
  padding-inline: 2.8rem;
  font-size: 1rem;
}

/* برچسب‌های هیرو */
.orbit-badges {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.orbit-badges span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
}

/* پنل هیرو */
.orbit-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.holo-card {
  background:
    radial-gradient(circle at top left, rgba(250, 250, 249, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(248, 250, 252, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border-radius: 1.6rem;
  border: 1px solid rgba(248, 250, 252, 0.7);
  padding: 1.3rem 1.3rem;
  box-shadow:
    0 28px 75px rgba(15, 23, 42, 0.98),
    0 0 30px rgba(15, 23, 42, 0.8);
  animation: cardFloat 10s ease-in-out infinite;
}

@keyframes cardFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.holo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.holo-status {
  font-size: 0.78rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.6);
}

.holo-body {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.holo-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.holo-row strong {
  font-size: 1.5rem;
  color: #facc15;
}

.holo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.82rem;
}

.holo-button {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  text-decoration: none;
  color: #f9fafb;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.12s ease;
}

.holo-button:hover {
  background: rgba(15, 23, 42, 0.98);
  transform: translateY(-1px);
}

.orbit-note {
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* ─────────────────────────────── */
/*   سکشن عمومی                     */
/* ─────────────────────────────── */
.section {
  padding: 2.8rem 0;
}

.galaxy-section {
  background: transparent;
}

.galaxy-section--dark {
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.galaxy-section--bordered {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.section-head h2 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  color: #f9fafb;
}

.section-head p {
  font-size: 0.94rem;
  color: #e5e7eb;
  line-height: 1.9;
  max-width: 640px;
}

/* ─────────────────────────────── */
/*   پکیج‌ها                        */
/* ─────────────────────────────── */
.constellation-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.pack-card {
  position: relative;
  background: rgba(30, 41, 59, 0.98);
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.5rem 1.3rem;
  font-size: 0.9rem;
  line-height: 1.9;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.96);
  overflow: hidden;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.pack-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.22), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(250, 204, 21, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.pack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 250, 252, 0.95);
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 1),
    0 0 30px rgba(250, 250, 249, 0.85);
}

.pack-card:hover::before {
  opacity: 1;
}

.pack-card--highlight {
  border-color: rgba(250, 204, 21, 0.98);
  box-shadow:
    0 28px 80px rgba(185, 28, 28, 0.7),
    0 0 40px rgba(250, 204, 21, 0.95);
  transform: translateY(-3px);
}

.pack-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #fef9c3;
}

.pack-desc {
  font-size: 0.88rem;
  color: #e5e7eb;
}

.pack-list {
  margin: 1rem 0 1.2rem;
  padding-right: 1.1rem;
  font-size: 0.83rem;
  color: #cbd5e1;
}

.pack-list li {
  margin-bottom: 0.25rem;
}

.pack-chip {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  font-size: 0.72rem;
  padding: 0.27rem 0.8rem;
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.98);
  color: #fee2e2;
  border: 1px solid rgba(254, 202, 202, 0.9);
}

.pack-chip--hot {
  background: rgba(185, 28, 28, 0.98);
  color: #fef2f2;
  border-color: rgba(250, 204, 21, 0.9);
}

/* ─────────────────────────────── */
/*   بخش توضیح                     */
/* ─────────────────────────────── */
.lore-box {
  margin-top: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border-radius: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 2rem 1.6rem;
  font-size: 0.95rem;
  line-height: 2;
}

/* ─────────────────────────────── */
/*   چرا ما                        */
/* ─────────────────────────────── */
.reasons-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.reason-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.2rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.9;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 250, 249, 0.9);
  box-shadow:
    0 20px 52px rgba(15, 23, 42, 0.98),
    0 0 24px rgba(250, 204, 21, 0.7);
}

.reason-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  color: #fef9c3;
}

/* ─────────────────────────────── */
/*   مراحل / فلو                   */
/* ─────────────────────────────── */
.flow-line {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.flow-step {
  position: relative;
  flex: 1 1 220px;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.2rem 1.2rem 1rem;
  font-size: 0.88rem;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 250, 249, 0.9);
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.98),
    0 0 18px rgba(250, 250, 249, 0.7);
}

.flow-badge {
  position: absolute;
  top: -0.8rem;
  right: 1rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #facc15, #ef4444);
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.9);
}

.flow-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #f9fafb;
}

.flow-step p {
  font-size: 0.88rem;
  color: #e5e7eb;
  line-height: 1.9;
}

/* ─────────────────────────────── */
/*   FAQ                           */
/* ─────────────────────────────── */
.faq-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  background: rgba(15, 23, 42, 0.99);
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.95rem 1.1rem;
  font-size: 0.9rem;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.faq-item[open] {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(250, 250, 249, 0.95);
  box-shadow:
    0 16px 44px rgba(15, 23, 42, 0.98),
    0 0 16px rgba(250, 204, 21, 0.7);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: #f9fafb;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "＋";
  float: left;
  font-weight: 700;
  color: #facc15;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  line-height: 1.9;
  color: #e5e7eb;
}

/* ─────────────────────────────── */
/*   CTA نهایی                     */
/* ─────────────────────────────── */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
  color: #f9fafb;
}

.final-cta p {
  font-size: 0.96rem;
  color: #e5e7eb;
  line-height: 1.9;
  max-width: 650px;
  margin: 0.3rem auto 1.5rem;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────── */
/*   فوتر                          */
/* ─────────────────────────────── */
.cosmic-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.7rem 0 2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.99), rgba(15, 23, 42, 1));
  color: #e5e7eb;
  font-size: 0.84rem;
}

.footer-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.4rem;
}

.footer-title {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: #f9fafb;
}

.footer-text {
  margin: 0 0 0.6rem;
  color: #cbd5e1;
}

.footer-copy {
  margin: 0;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(-2px);
  text-decoration: underline;
}

/* ─────────────────────────────── */
/*   ریسپانسیو                     */
/* ─────────────────────────────── */
@media (max-width: 980px) {
  .orbit-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .orbit-text {
    order: -1;
  }

  .orbit-actions {
    justify-content: center;
  }

  .holo-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .holo-button {
    align-self: flex-end;
  }

  .constellation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-line {
    flex-direction: column;
  }

  .agency-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
    grid-template-rows: auto auto;
  }

  .agency-contacts {
    grid-column: 1 / -1;
  }

  .agency-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .galaxy-header .shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .stellar-nav {
    display: none; /* اگر منوی همبرگری خواستی بعداً اضافه کن */
  }

  .hero-orbit {
    padding-top: 2.2rem;
  }

  .orbit-text h1 {
    font-size: 1.7rem;
  }

  .constellation-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-layout {
    flex-direction: column;
  }

  .agency-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .agency-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .chip-link {
    min-height: 62px;
    font-size: 0.83rem;
    padding: 0.75rem 0.8rem;
  }

  .agency-contacts-row {
    gap: 0.4rem;
  }
}