/* ===== Reset & base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* همه کنترل‌ها فونت بدنه را بگیرند */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 0% 0%, #4f46e5, #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.16);
}

.logo-svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.logo-sub {
  font-size: 0.72rem;
  color: #6b7280;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.88rem;
}

.nav a {
  text-decoration: none;
  color: #6b7280;
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.15s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(to left, #22c55e, #4f46e5);
  transition: transform 0.18s ease;
}

.nav a:hover {
  color: #111827;
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.1s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(to left, #22c55e, #4f46e5);
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.btn-outline:hover {
  border-color: #4f46e5;
  color: #111827;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.btn-full {
  width: 100%;
}

.btn-header-cta {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 32px;
  height: 28px;
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  cursor: pointer;
  padding: 4px 5px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-toggle.nav-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.nav-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== Hero (صفحه اصلی) ===== */
.hero {
  padding: 3.2rem 0 3rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: #6366f1;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: #111827;
}

.hero-main-line {
  display: block;
}

.hero-main-line-small {
  display: block;
  font-size: 0.9em;
}

.hero-subtitle {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

.hero-badges span {
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  background: #f3f4ff;
  color: #4338ca;
  border: 1px solid #e0e7ff;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.hero-note {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Hero card */
.hero-card {
  border-radius: 1.3rem;
  background: linear-gradient(135deg, #eef2ff, #ecfdf5);
  border: 1px solid #e0e7ff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  padding: 1.3rem 1.2rem;
}

.hero-card-title {
  margin: 0 0 0.7rem;
  font-size: 0.98rem;
  color: #111827;
}

.hero-steps {
  margin: 0 0 0.8rem;
  padding-right: 1.2rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.hero-steps li {
  margin-bottom: 0.35rem;
}

.hero-card-foot {
  margin: 0;
  font-size: 0.8rem;
  color: #4b5563;
}

/* ===== Sections ===== */
.section {
  padding: 2.8rem 0;
}

.section-alt {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.section-title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: #111827;
  text-align: center;
}

.section-subtitle {
  margin: 0 auto 1.8rem;
  max-width: 32rem;
  font-size: 0.9rem;
  color: #4b5563;
  text-align: center;
}

/* ===== فرم‌ها (خرید + پشتیبانی) ===== */

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
  color: #111827;
}

/* فیلدهای مشترک: ایمیل، تکست، پسورد، textarea، select */
.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

/* فوکِس */
.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.18);
  background: #ffffff;
}

/* textarea (پیام در پشتیبانی) */
.form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* select نوع تیکت و ... */
.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Checkout form */
.checkout-form {
  margin-top: 2rem;
  max-width: 430px;
  margin-inline: auto;
}

/* Gateways (قدیمی – برای فرم‌های ساده) */
.gateway-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.84rem;
}

.gateway-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
}

.gateway-options input[type="radio"] {
  accent-color: #4f46e5;
}

/* Promo hidden field */
.promo-group {
  margin-top: 0.8rem;
}

.promo-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.82rem;
  color: #4f46e5;
  cursor: pointer;
  text-decoration: underline;
}

.promo-field {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
  margin-top: 0.4rem;
}

.promo-field-open {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.checkout-message {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  min-height: 1.1rem;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.pricing-card {
  position: relative;
  cursor: pointer;
}

.pricing-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-card-inner {
  border-radius: 1.1rem;
  padding: 1.1rem 1rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease,
    background 0.15s ease;
}

.pricing-card .tag {
  display: inline-flex;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.74rem;
}

.pricing-card.pricing-card-popular .tag {
  background: linear-gradient(to left, #22c55e, #4f46e5);
  color: #f9fafb;
}

.pricing-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: #111827;
}

/* قیمت با کنتراست بالا */
.price {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

/* عدد اصلی قیمت – سبز تیره پرکنتراست */
.price-amount {
  color: #14532d; /* سبز خیلی تیره، روی پس‌زمینه سفید کنتراست بالا دارد */
  font-weight: 700;
}

.price-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.plan-features {
  margin: 0;
  padding-right: 1.1rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.plan-features li {
  margin-bottom: 0.25rem;
}

/* Selected state */
.pricing-card input[type="radio"]:checked + .pricing-card-inner {
  border-color: #4f46e5;
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.19);
  transform: translateY(-3px);
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 1rem 0.9rem;
  font-size: 0.86rem;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.96rem;
  color: #111827;
}

.feature-card p {
  margin: 0;
  color: #4b5563;
}

/* ===== Steps ===== */
.steps-section {
  background: transparent;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.step-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.step-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #4f46e5;
  margin-bottom: 0.25rem;
}

.step-label span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #eef2ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.step-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

/* ===== Locations ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.location-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 0.9rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 0.85rem;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}

.location-flag {
  width: 26px;
  height: 18px;
  border-radius: 0.3rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.flag-body {
  position: absolute;
  inset: 0;
}

/* Flags */
.flag-nl {
  background: linear-gradient(to bottom, #ef4444 33%, #ffffff 33%, #ffffff 66%, #1d4ed8 66%);
}
.flag-de {
  background: linear-gradient(to bottom, #111827 33%, #ef4444 33%, #ef4444 66%, #facc15 66%);
}
.flag-gb {
  background: linear-gradient(135deg, #1d4ed8, #ef4444);
}
.flag-uae {
  background: linear-gradient(to bottom, #16a34a 33%, #ffffff 33%, #ffffff 66%, #111827 66%);
}
.flag-fr {
  background: linear-gradient(to right, #1d4ed8 33%, #ffffff 33%, #ffffff 66%, #ef4444 66%);
}
.flag-tr {
  background: linear-gradient(to right, #ef4444, #b91c1c);
}

.location-name {
  font-weight: 600;
  color: #111827;
}

.location-note {
  margin: 0;
  color: #6b7280;
}

.location-tags {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.location-tags span {
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.75rem;
  color: #4b5563;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 650px;
  margin: 1.8rem auto 0;
}

.faq-list details {
  background: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.6rem;
}

.faq-list summary {
  cursor: pointer;
  font-size: 0.9rem;
  color: #111827;
}

.faq-list p {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: #4b5563;
}

/* ===== Notice / Important box ===== */
.notice-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.14), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(248, 113, 113, 0.55);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.notice-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b1120;
  background: radial-gradient(circle at 30% 0, #f97316, #ef4444);
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.9),
    0 10px 25px rgba(248, 113, 113, 0.6);
}

.notice-content {
  flex: 1 1 auto;
}

.notice-title {
  margin: 0 0 0.3rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fecaca;
}

.notice-text {
  margin: 0;
  font-size: 0.85rem;
  color: #e5e7eb;
  line-height: 1.8;
}

/* موبایل: کمی فشرده‌تر */
@media (max-width: 640px) {
  .notice-box {
    padding: 0.9rem 0.8rem;
    gap: 0.7rem;
  }

  .notice-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .notice-title {
    font-size: 0.9rem;
  }

  .notice-text {
    font-size: 0.82rem;
  }
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
  font-size: 0.87rem;
}

.contact-grid h3 {
  margin: 0 0 0.25rem;
  font-size: 0.94rem;
  color: #111827;
}

.contact-grid p {
  margin: 0;
  color: #4b5563;
}

.contact-grid a {
  color: #4f46e5;
  text-decoration: none;
}

.contact-grid a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

.footer-links a {
  text-decoration: none;
  color: #6b7280;
}

.footer-links a:hover {
  color: #111827;
}

/* ===== Internal pages (checkout, support, guide ...) ===== */

.internal-hero {
  padding: 2.3rem 0 1.4rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.internal-title {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  color: #111827;
}

.internal-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
  max-width: 32rem;
}

.internal-box {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 1.3rem 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  max-width: 640px;
  margin: 1.8rem auto 0;
  font-size: 0.9rem;
}

.error-box h2 {
  color: #b91c1c;
}

.order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem 1.6rem;
  margin: 0 0 1rem;
}

.order-summary dt {
  font-size: 0.78rem;
  color: #6b7280;
}

.order-summary dd {
  margin: 0;
  font-size: 0.9rem;
  color: #111827;
}

.internal-note {
  margin: 0.4rem 0 0.8rem;
  font-size: 0.84rem;
  color: #4b5563;
}

.internal-help {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: #6b7280;
}

.internal-help a {
  color: #4f46e5;
  text-decoration: none;
}

.internal-help a:hover {
  text-decoration: underline;
}

.internal-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===== RTL ===== */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .plan-features,
html[dir="rtl"] .hero-steps {
  padding-right: 1.1rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 1.1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    padding: 0.7rem 1.25rem 0.9rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    gap: 0.6rem;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn-header-cta {
    display: none;
  }

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

  .hero-card {
    order: -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-block: 0.6rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.86rem;
  }

  .section {
    padding: 2.3rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ===== درگاه‌های پرداخت (pill) – زمینه روشن، متن تیره ===== */
.gateway-options-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gateway-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;           /* خط ملایم روشن */
  background: #f3f4f6;                  /* پس‌زمینه روشن */
  font-size: 0.8rem;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.gateway-pill input {
  accent-color: #22c55e;
}

/* متن تیره و کاملاً خوانا */
.gateway-pill span {
  color: #020617;                       /* تقریباً مشکی */
  font-weight: 600;
}

/* hover روی همهٔ درگاه‌ها */
.gateway-pill:hover {
  border-color: #22c55e;
  background: #e5e7eb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

/* حالت انتخاب‌شده: کمی برجسته‌تر، هنوز روشن */
.gateway-pill-active {
  border-color: #22c55e;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.35),
    0 8px 22px rgba(15, 23, 42, 0.16);
}

/* متن در حالت انتخاب‌شده: همان رنگ، فقط کمی قوی‌تر */
.gateway-pill-active span {
  color: #020617;
  font-weight: 700;
}

/* موبایل */
@media (max-width: 768px) {
  .gateway-options-pills {
    gap: 0.4rem;
  }

  .gateway-pill {
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
  }
}
