:root {
  --ink: #12333a;
  --muted: #61777a;
  --green: #0d8b72;
  --green-dark: #076553;
  --blue: #1768a5;
  --cream: #f4f9f7;
  --line: #dce9e6;
  --white: #fff;
  --shadow: 0 18px 50px rgba(18, 51, 58, .09);
  --radius: 22px;
  --shell: 1160px;
  --header-height: 76px;
  --notice-height: 40px;
}

@font-face {
  font-family: "IRANSansWeb";
  src: url("assets/fonts/IRANSansWeb.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansWeb";
  src: url("assets/fonts/IRANSansWeb.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--notice-height) + var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "IRANSansWeb", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -.01em;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(23, 104, 165, .35);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
strong,
.button,
.main-nav a {
  font-weight: 700;
}

.page-shell {
  width: min(var(--shell), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  padding: 8px 14px;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

/* نوار اطلاع‌رسانی */
.notice-bar {
  color: #e9fffa;
  background: #104f52;
  font-size: .82rem;
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--notice-height);
}

.notice-bar a {
  color: #b9fff0;
  font-weight: 700;
  direction: ltr;
  unicode-bidi: plaintext;
  font-variant-numeric: tabular-nums;
}

/* هدر */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(18, 51, 58, .08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 14px 14px 4px 14px;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.3;
}

.brand strong {
  font-size: 1.15rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .65rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-right: auto;
  font-size: .78rem;
}

.main-nav a {
  color: #416269;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  margin-right: auto;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* دکمه‌ها */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  transition:
    transform .2s,
    background .2s,
    color .2s,
    box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 7px 16px;
  font-size: .8rem;
}

.button--primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(13, 139, 114, .25);
}

.button--primary:hover {
  background: var(--green-dark);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.button--light {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.button--light:hover {
  color: var(--white);
  background: var(--green-dark);
}

/* هیرو */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: #123f4a;
}

.hero__backdrop {
  position: absolute;
  z-index: -2;
  inset: -5%;
  background:
    linear-gradient(90deg, rgba(10, 49, 59, .88), rgba(10, 78, 75, .67)),
    radial-gradient(circle at 75% 35%, #38aa91 0 10%, transparent 11%),
    linear-gradient(135deg, #13566c 20%, #0c8070 100%);
  transform: translateY(var(--parallax, 0));
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(
      135deg,
      transparent 45%,
      rgba(255, 255, 255, .12) 46%,
      transparent 47%
    );
  background-size: 34px 34px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 310px;
  align-items: center;
  gap: 70px;
  padding-block: 90px;
}

.hero__copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.eyebrow--light {
  color: #a9f4df;
}

.hero h1 {
  max-width: 700px;
  margin: 14px 0 20px;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  line-height: 1.45;
  letter-spacing: -.035em;
}

.hero p {
  max-width: 610px;
  color: #d9f1ed;
  font-size: 1rem;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 0;
  margin: 34px 0 0;
  color: #e5fbf5;
  list-style: none;
  font-size: .82rem;
}

.hero__points li::before {
  content: "✓";
  margin-left: 7px;
  color: #85efd5;
  font-weight: 700;
}

.hero__card {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero__card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 15px;
  font-size: 1.4rem;
}

.hero__card span,
.hero__card p {
  color: var(--muted);
  font-size: .82rem;
}

.hero__card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.hero__card a {
  display: block;
  margin-top: 20px;
  color: var(--green-dark);
  direction: ltr;
  text-align: right;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* بخش‌ها */
.section {
  padding-block: 92px;
}

.section--soft {
  background: var(--cream);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.4;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

/* خدمات */
.service-grid,
.coverage-grid,
.fleet-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.coverage-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.coverage-card,
.fleet-card,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(18, 51, 58, .035);
}

.service-card {
  padding: 26px 22px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--green);
  border-radius: 15px;
  font-size: 1.5rem;
}

.service-card h3,
.fleet-card h3 {
  margin: 0 0 9px;
  font-size: 1.1rem;
}

.service-card p,
.fleet-card p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 2;
}

.service-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
}

.service-card a span {
  margin-right: 5px;
}

/* مراحل همکاری */
.process-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbfa 100%);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(100% + 12px);
  width: 60%;
  height: 1px;
  background: var(--line);
}

.process-step > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--green-dark);
  background: #dff5ed;
  border-radius: 50%;
  font-weight: 700;
}

.process-step h3 {
  margin: 17px 0 6px;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 2;
}

/* مزایا */
.advantage-section {
  color: var(--white);
  background: #123f4a;
}

.advantage-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.section-heading--light p {
  color: #c9e2df;
}

.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.advantage-list div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
}

.advantage-list span {
  display: block;
  color: #89e7d0;
  font-size: .75rem;
  font-weight: 700;
}

.advantage-list strong {
  display: block;
  margin-top: 6px;
}

.advantage-list p {
  margin: 5px 0 0;
  color: #c3dcda;
  font-size: .78rem;
  line-height: 2;
}

/* مناطق */
.coverage-card {
  padding: 25px 22px;
}

.coverage-card span,
.coverage-card strong {
  display: block;
}

.coverage-card span {
  color: var(--muted);
  font-size: .88rem;
}

.coverage-card strong {
  margin: 7px 0 18px;
  direction: ltr;
  text-align: right;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}

.coverage-card a {
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 700;
}

/* ناوگان */
.fleet-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fleet-card {
  overflow: hidden;
}

.fleet-card > div:last-child {
  padding: 22px;
}

.fleet-card p {
  margin-bottom: 0;
}

.sample-visual {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 210px;
  overflow: hidden;
  color: var(--white);
  background-color: #3c777a; /* fallback */
}

.fleet-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.sample-visual span {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  padding: 3px 9px;
  color: #eafff9;
  background: rgba(0, 0, 0, .22);
  border-radius: 20px;
  font-size: .65rem;
  pointer-events: none;
}

.sample-visual b {
  position: relative;
  z-index: 1;
  padding: 18px;
  font-size: 1.25rem;
  pointer-events: none;
}

/* گالری تصاویر واقعی */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 210px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #d5e6e1;
  text-align: right;
  cursor: pointer;
  isolation: isolate;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(4, 30, 35, .75));
  pointer-events: none;
}

.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover .gallery-image {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.gallery-item b {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  color: var(--white);
  font-size: .85rem;
  text-shadow: 0 1px 5px #12333a;
}

/* نظرات */
.review-slider {
  max-width: 850px;
  margin-inline: auto;
  overflow: hidden;
}

.review-track {
  display: flex;
  direction: rtl;
  transition: transform .35s ease;
}

.review-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-width: 100%;
  padding: 30px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--green-dark);
  background: #d7f1e8;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
}

.avatar--blue {
  color: #174b7b;
  background: #d9eafb;
}

.avatar--mint {
  color: #23715f;
  background: #dcf5ef;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  color: var(--muted);
  font-size: .72rem;
}

.review-card p {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  color: #45676b;
}

/* سوالات متداول */
.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: right;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-item button span {
  color: var(--green);
  font-size: 1.4rem;
  transition: transform .2s;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 2;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 18px;
}

/* فراخوان نهایی */
.final-cta {
  color: var(--white);
  background: linear-gradient(110deg, #0c806d, #1768a5);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 70px;
}

.final-cta h2 {
  margin: 8px 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.final-cta p {
  margin: 0;
  color: #d9f5f1;
}

/* فوتر */
.site-footer {
  color: #c8dfdc;
  background: #102f38;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-block: 55px;
}

.brand--footer {
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 330px;
  margin-top: 22px;
  font-size: .8rem;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: .9rem;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 8px 0;
  color: #b8d0cd;
  font-size: .78rem;
}

.footer-grid a:hover {
  color: #8de8d1;
}

.footer-grid a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: plaintext;
  font-variant-numeric: tabular-nums;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9cb9b7;
  font-size: .7rem;
}

/* لایت‌باکس */
.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(5, 25, 30, .9);
}

.lightbox.is-visible {
  display: grid;
}

.lightbox__content {
  width: min(760px, 90vw);
}

.lightbox__visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #193d45;
  box-shadow: var(--shadow);
}

.lightbox__visual img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #193d45;
}

.lightbox__content p {
  margin: 12px 0 0;
  color: var(--white);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lightbox__close {
  top: 18px;
  right: 25px;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  font-size: 1.3rem;
}

.lightbox__nav--prev {
  right: 28px;
}

.lightbox__nav--next {
  left: 28px;
}

/* انیمیشن ورود */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* تبلت */
@media (max-width: 1050px) {
  .main-nav {
    gap: 11px;
    font-size: .7rem;
  }

  .service-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* موبایل بزرگ */
@media (max-width: 800px) {
  :root {
    --header-height: 68px;
    --notice-height: 46px;
  }

  .page-shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  .notice-bar__inner {
    min-height: var(--notice-height);
    font-size: .7rem;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: block;
  }

  .header-call {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s, visibility .2s, transform .2s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 12px;
    border-bottom: 1px solid #edf3f1;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 70px;
  }

  .hero__card {
    max-width: 420px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .advantage-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

/* موبایل کوچک */
@media (max-width: 520px) {
  .notice-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 8px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero__points {
    display: block;
  }

  .hero__points li {
    margin: 8px 0;
  }

  .section {
    padding-block: 65px;
  }

  .service-grid,
  .coverage-grid,
  .advantage-list,
  .process-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide {
    grid-column: auto;
  }

  .gallery-item,
  .gallery-image {
    min-height: 230px;
  }

  .final-cta__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox__content {
    width: min(100%, 760px);
  }

  .lightbox__visual img {
    max-height: 65vh;
  }

  .lightbox__nav--prev {
    right: 8px;
  }

  .lightbox__nav--next {
    left: 8px;
  }
}

/* کاهش حرکت برای کاربران حساس به انیمیشن */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__backdrop,
  .gallery-image {
    transform: none !important;
  }
}
/* قیمت */

.pricing-section {
  padding: 60px 20px;
  background: #f7f9fc;
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-title {
  text-align: center;
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
}

.pricing-note-top,
.pricing-note-bottom {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
  color: #475569;
  line-height: 1.9;
  font-size: 15px;
}

.table-wrap {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  margin: 24px auto;
}

.pricing-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  border: 2px solid #94a3b8; /* کادر اصلی جدول */
  background: #ffffff;
  direction: rtl;
  text-align: right;
}

.pricing-table caption {
  caption-side: top;
  padding: 14px 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  background: #eaf2fb;
  border: 2px solid #94a3b8;
  border-bottom: none;
}

.pricing-table thead th {
  background: #dbeafe; /* هدر مشخص */
  color: #0f172a;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 12px;
  border: 1px solid #94a3b8;
  text-align: center;
}

.pricing-table tbody td {
  padding: 13px 12px;
  border: 1px solid #94a3b8; /* بوردر سلول‌ها */
  font-size: 15px;
  color: #334155;
  vertical-align: middle;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f8fbff;
}

.pricing-table tbody td:nth-child(2) {
  font-weight: 800;
  color: #0f4c81;
  white-space: nowrap;
  text-align: center;
}

.pricing-table tbody td:nth-child(1),
.pricing-table tbody td:nth-child(3) {
  text-align: right;
}

.pricing-note-bottom {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 24px;
  }

  .pricing-section {
    padding: 40px 16px;
  }

  .pricing-table {
    min-width: 780px;
  }
}