:root {
  --arashpro-shell: min(1180px, calc(100% - 2rem));
}

.arashpro-menu {
  display: flex;
  align-items: center;
}

.arashpro-menu-list,
.arashpro-footer-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.arashpro-page-shell {
  position: relative;
  z-index: 1;
  width: var(--arashpro-shell);
  margin: 0 auto;
  padding: 8rem 0 5rem;
}

.arashpro-archive-hero,
.arashpro-single-hero,
.arashpro-empty-state {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(6, 8, 16, 0.9));
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.arashpro-eyebrow,
.arashpro-single-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: var(--c-accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.arashpro-archive-hero h1,
.arashpro-single-hero h1,
.arashpro-empty-state h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.arashpro-archive-hero p,
.arashpro-empty-state p,
.arashpro-single-excerpt {
  color: rgba(226, 232, 240, 0.78);
  margin-top: 1rem;
  max-width: 760px;
  line-height: 1.95;
}

.arashpro-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.arashpro-post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.arashpro-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.arashpro-post-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(124, 58, 237, 0.18));
}

.arashpro-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arashpro-post-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.arashpro-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem;
}

.arashpro-post-card__meta,
.arashpro-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  color: rgba(148, 163, 184, 0.94);
  font-size: 0.78rem;
}

.arashpro-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.22);
  color: var(--c-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.arashpro-post-card__title {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 800;
}

.arashpro-post-card__title a:hover {
  color: var(--c-accent);
}

.arashpro-post-card__excerpt {
  color: rgba(203, 213, 225, 0.74);
  margin-top: 0.75rem;
  line-height: 1.9;
  font-size: 0.92rem;
}

.arashpro-post-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: rgba(148, 163, 184, 0.94);
  font-size: 0.8rem;
}

.arashpro-post-card__footer a {
  color: var(--c-accent);
  font-weight: 700;
}

.arashpro-pagination {
  margin-top: 2.2rem;
}

.arashpro-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.arashpro-pagination .page-numbers a,
.arashpro-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.7rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: rgba(241, 245, 249, 0.92);
}

.arashpro-pagination .page-numbers .current {
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-accent);
}

.arashpro-single-shell {
  padding-top: 7rem;
}

.arashpro-single-thumbnail {
  margin-top: 1.8rem;
  overflow: hidden;
  border-radius: 26px;
}

.arashpro-single-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.arashpro-single-content-wrap {
  min-width: 0;
}

.arashpro-single-content {
  background: rgba(10, 14, 25, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  padding: 2rem;
}

.arashpro-single-content h2,
.arashpro-single-content h3 {
  scroll-margin-top: 6rem;
  letter-spacing: -0.03em;
  margin: 2rem 0 1rem;
  line-height: 1.5;
  font-weight: 800;
}

.arashpro-single-content h2 {
  font-size: 1.6rem;
}

.arashpro-single-content h3 {
  font-size: 1.28rem;
  color: rgba(241, 245, 249, 0.92);
}

.arashpro-single-content p,
.arashpro-single-content li,
.arashpro-single-content blockquote {
  color: rgba(226, 232, 240, 0.8);
  line-height: 2.1;
  font-size: 1rem;
}

.arashpro-single-content p + p,
.arashpro-single-content ul,
.arashpro-single-content ol,
.arashpro-single-content blockquote {
  margin-top: 1rem;
}

.arashpro-single-content ul,
.arashpro-single-content ol {
  padding-right: 1.2rem;
}

.arashpro-single-content ul {
  list-style: disc;
}

.arashpro-single-content ol {
  list-style: decimal;
}

.arashpro-single-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.arashpro-single-content :not(pre) > code {
  display: inline-block;
  direction: ltr;
  unicode-bidi: embed;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  padding: 0.15rem 0.5rem;
  color: #93c5fd;
  font-size: 0.92em;
  line-height: 1.7;
}

.arashpro-single-content pre {
  direction: ltr;
  unicode-bidi: embed;
  overflow-x: auto;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  padding: 1.25rem 1.35rem;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.94rem;
  line-height: 1.95;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.arashpro-single-content pre code {
  display: block;
  min-width: max-content;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.arashpro-single-content .code-block-wrapper {
  margin-top: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 13, 24, 0.98), rgba(5, 8, 15, 0.98));
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

.arashpro-single-content .code-block-wrapper > p {
  margin: 0;
}

.arashpro-single-content .code-block-wrapper pre {
  margin: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(8, 12, 22, 0.94));
}

.arashpro-single-content .code-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 6.5rem;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.08);
  color: rgba(226, 232, 240, 0.94);
  padding: 0.65rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.arashpro-single-content .code-copy-button:hover {
  transform: translateY(-1px);
  background: rgba(0, 229, 255, 0.14);
  border-color: rgba(0, 229, 255, 0.36);
  color: #fff;
}

.arashpro-single-content .code-copy-button:focus-visible {
  outline: 2px solid rgba(0, 229, 255, 0.65);
  outline-offset: 3px;
}

.arashpro-single-content .code-copy-button.is-copied {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.35);
  color: #d1fae5;
}

.arashpro-single-content .code-copy-button.is-error {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(248, 113, 113, 0.34);
  color: #fecaca;
}

.arashpro-single-content blockquote {
  border-right: 3px solid rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.06);
  border-radius: 18px;
  padding: 1rem 1.2rem;
}

/* Article tables — pricing, comparison, specs */
.arashpro-table-wrap {
  position: relative;
  margin: 1.75rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 22px;
  border: 1px solid rgba(0, 229, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(8, 12, 22, 0.94));
  box-shadow:
    0 22px 50px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.35) rgba(15, 23, 42, 0.5);
}

.arashpro-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.arashpro-table-wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.35);
}

.arashpro-table-wrap::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
}

.arashpro-article-table,
.arashpro-single-content table,
.arashpro-static-content table {
  width: 100%;
  min-width: 36rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.94rem;
  line-height: 1.75;
}

.arashpro-article-table caption,
.arashpro-single-content table caption,
.arashpro-static-content table caption {
  caption-side: top;
  padding: 1rem 1.25rem 0.35rem;
  text-align: right;
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(226, 232, 240, 0.88);
}

.arashpro-article-table thead,
.arashpro-single-content table thead,
.arashpro-static-content table thead {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.16),
    rgba(124, 58, 237, 0.12)
  );
}

.arashpro-article-table th,
.arashpro-single-content table th,
.arashpro-static-content table th {
  padding: 1rem 1.15rem;
  text-align: right;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: rgba(241, 245, 249, 0.96);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  white-space: nowrap;
}

.arashpro-article-table th:first-child,
.arashpro-single-content table th:first-child,
.arashpro-static-content table th:first-child {
  border-top-right-radius: 21px;
}

.arashpro-article-table th:last-child,
.arashpro-single-content table th:last-child,
.arashpro-static-content table th:last-child {
  border-top-left-radius: 21px;
}

.arashpro-article-table td,
.arashpro-single-content table td,
.arashpro-static-content table td {
  padding: 1rem 1.15rem;
  text-align: right;
  vertical-align: top;
  color: rgba(226, 232, 240, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.arashpro-article-table tbody tr:last-child td,
.arashpro-single-content table tbody tr:last-child td,
.arashpro-static-content table tbody tr:last-child td {
  border-bottom: 0;
}

.arashpro-article-table tbody tr:last-child td:first-child,
.arashpro-single-content table tbody tr:last-child td:first-child,
.arashpro-static-content table tbody tr:last-child td:first-child {
  border-bottom-right-radius: 21px;
}

.arashpro-article-table tbody tr:last-child td:last-child,
.arashpro-single-content table tbody tr:last-child td:last-child,
.arashpro-static-content table tbody tr:last-child td:last-child {
  border-bottom-left-radius: 21px;
}

.arashpro-article-table tbody tr:nth-child(even),
.arashpro-single-content table tbody tr:nth-child(even),
.arashpro-static-content table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.arashpro-article-table tbody tr:hover,
.arashpro-single-content table tbody tr:hover,
.arashpro-static-content table tbody tr:hover {
  background: rgba(0, 229, 255, 0.05);
}

.arashpro-article-table tbody tr td:first-child,
.arashpro-single-content table tbody tr td:first-child,
.arashpro-static-content table tbody tr td:first-child {
  font-weight: 800;
  color: rgba(241, 245, 249, 0.94);
}

.arashpro-article-table tbody tr td:nth-child(2),
.arashpro-single-content table tbody tr td:nth-child(2),
.arashpro-static-content table tbody tr td:nth-child(2) {
  font-variant-numeric: tabular-nums;
  color: var(--c-accent);
  font-weight: 700;
  white-space: nowrap;
}

.arashpro-single-content .arashpro-embed,
.arashpro-single-content .h_iframe-aparat_embed_frame,
.arashpro-single-content .wp-block-embed,
.arashpro-single-content .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.45);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.18);
}

.arashpro-single-content .arashpro-embed--aparat {
  aspect-ratio: 16 / 9;
}

.arashpro-single-content .h_iframe-aparat_embed_frame .ratio {
  display: block;
  width: 100%;
  height: auto;
}

.arashpro-single-content .arashpro-embed iframe,
.arashpro-single-content .h_iframe-aparat_embed_frame iframe,
.arashpro-single-content .wp-block-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.arashpro-single-content .h_iframe-aparat_embed_frame iframe {
  position: absolute;
  inset: 0;
}

.arashpro-toc {
  position: relative;
  order: -1;
}

.arashpro-toc__inner {
  position: sticky;
  top: 6rem;
  background: rgba(10, 14, 25, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  padding: 1.35rem 1.2rem;
}

.arashpro-toc__title {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.arashpro-toc__list {
  display: grid;
  gap: 0.65rem;
}

.arashpro-toc__list li.is-child {
  padding-right: 0.9rem;
}

.arashpro-toc__list a {
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.86rem;
  line-height: 1.9;
  transition: color 0.2s ease;
}

.arashpro-toc__list a.is-active,
.arashpro-toc__list a:hover {
  color: var(--c-accent);
}

.arashpro-single-cta {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 24px;
  padding: 1.5rem;
}

.arashpro-single-cta h2 {
  font-size: 1.3rem;
  font-weight: 800;
}

.arashpro-single-cta p {
  color: rgba(226, 232, 240, 0.78);
  margin-top: 0.7rem;
  line-height: 1.95;
}

.arashpro-single-cta .btn-primary {
  margin-top: 1rem;
}

.arashpro-related-posts {
  margin-top: 3rem;
}

.arashpro-reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
}

.arashpro-lead-popup .popup-box {
  max-width: 430px;
}

.arashpro-lead-form .btn-submit {
  margin-top: 0.5rem;
}

.arashpro-footer-menu {
  justify-content: center;
  margin-top: 1rem;
}

@media (max-width: 960px) {
  .arashpro-single-layout {
    grid-template-columns: 1fr;
  }

  .arashpro-toc {
    order: 0;
  }

  .arashpro-toc__inner {
    position: static;
  }

  .arashpro-single-content .code-block-wrapper {
    border-radius: 20px;
  }

  .arashpro-table-wrap {
    border-radius: 18px;
  }

  .arashpro-article-table,
  .arashpro-single-content table,
  .arashpro-static-content table {
    min-width: 32rem;
    font-size: 0.88rem;
  }

  .arashpro-article-table th,
  .arashpro-article-table td,
  .arashpro-single-content table th,
  .arashpro-single-content table td,
  .arashpro-static-content table th,
  .arashpro-static-content table td {
    padding: 0.85rem 0.9rem;
  }

  .arashpro-article-table th,
  .arashpro-single-content table th,
  .arashpro-static-content table th {
    white-space: normal;
  }
}

@media (max-width: 780px) {
  .arashpro-menu {
    display: none;
  }

  .arashpro-page-shell {
    width: min(100% - 1.2rem, 100%);
    padding-top: 7rem;
  }

  .arashpro-archive-hero,
  .arashpro-single-hero,
  .arashpro-empty-state,
  .arashpro-single-content {
    padding: 1.5rem;
    border-radius: 24px;
  }
}

[data-theme="light"] .arashpro-single-content,
[data-theme="light"] .arashpro-toc__inner,
[data-theme="light"] .arashpro-single-cta,
[data-theme="light"] .arashpro-post-card,
[data-theme="light"] .arashpro-archive-hero,
[data-theme="light"] .arashpro-single-hero,
[data-theme="light"] .arashpro-pagination .page-numbers a,
[data-theme="light"] .arashpro-pagination .page-numbers span,
[data-theme="light"] .arashpro-empty-state {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.12);
}

[data-theme="light"] .arashpro-pagination .page-numbers a,
[data-theme="light"] .arashpro-pagination .page-numbers span {
  color: rgba(15, 23, 42, 0.92);
}

[data-theme="light"] .arashpro-pagination .page-numbers .current {
  color: #ffffff;
}

[data-theme="light"] .arashpro-single-content p,
[data-theme="light"] .arashpro-single-content li,
[data-theme="light"] .arashpro-single-content blockquote,
[data-theme="light"] .arashpro-toc__list a,
[data-theme="light"] .arashpro-archive-hero p,
[data-theme="light"] .arashpro-post-card__excerpt,
[data-theme="light"] .arashpro-post-card__meta,
[data-theme="light"] .arashpro-post-card__footer,
[data-theme="light"] .arashpro-single-excerpt,
[data-theme="light"] .arashpro-single-meta,
[data-theme="light"] .arashpro-single-cta p {
  color: rgba(71, 85, 105, 0.92);
}

[data-theme="light"] .arashpro-post-card__title a,
[data-theme="light"] .arashpro-archive-hero h1,
[data-theme="light"] .arashpro-single-hero h1,
[data-theme="light"] .arashpro-empty-state h1 {
  color: rgba(15, 23, 42, 0.96);
}

[data-theme="light"] .arashpro-single-breadcrumbs {
  color: rgba(14, 165, 233, 0.92);
}

[data-theme="light"] .arashpro-post-card__footer {
  border-top-color: rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .arashpro-single-content h3,
[data-theme="light"] .arashpro-toc__title {
  color: rgba(15, 23, 42, 0.92);
}

[data-theme="light"] .arashpro-single-content :not(pre) > code {
  background: rgba(241, 245, 249, 0.92);
  border-color: rgba(148, 163, 184, 0.18);
  color: #0369a1;
}

[data-theme="light"] .arashpro-single-content pre,
[data-theme="light"] .arashpro-single-content .code-block-wrapper pre {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.98), rgba(226, 232, 240, 0.98));
  color: rgba(15, 23, 42, 0.94);
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .arashpro-single-content .code-block-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.98));
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 54px rgba(148, 163, 184, 0.16);
}

[data-theme="light"] .arashpro-single-content blockquote {
  background: rgba(14, 165, 233, 0.08);
  border-right-color: rgba(14, 165, 233, 0.32);
}

[data-theme="light"] .arashpro-table-wrap {
  border-color: rgba(14, 165, 233, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.98));
  box-shadow: 0 20px 44px rgba(148, 163, 184, 0.14);
  scrollbar-color: rgba(14, 165, 233, 0.35) rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .arashpro-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(14, 165, 233, 0.35);
}

[data-theme="light"] .arashpro-table-wrap::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .arashpro-article-table caption,
[data-theme="light"] .arashpro-single-content table caption,
[data-theme="light"] .arashpro-static-content table caption {
  color: rgba(15, 23, 42, 0.88);
}

[data-theme="light"] .arashpro-article-table thead,
[data-theme="light"] .arashpro-single-content table thead,
[data-theme="light"] .arashpro-static-content table thead {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.12),
    rgba(99, 102, 241, 0.08)
  );
}

[data-theme="light"] .arashpro-article-table th,
[data-theme="light"] .arashpro-single-content table th,
[data-theme="light"] .arashpro-static-content table th {
  color: rgba(15, 23, 42, 0.94);
  border-bottom-color: rgba(14, 165, 233, 0.2);
}

[data-theme="light"] .arashpro-article-table td,
[data-theme="light"] .arashpro-single-content table td,
[data-theme="light"] .arashpro-static-content table td {
  color: rgba(51, 65, 85, 0.92);
  border-bottom-color: rgba(148, 163, 184, 0.16);
}

[data-theme="light"] .arashpro-article-table tbody tr:nth-child(even),
[data-theme="light"] .arashpro-single-content table tbody tr:nth-child(even),
[data-theme="light"] .arashpro-static-content table tbody tr:nth-child(even) {
  background: rgba(241, 245, 249, 0.72);
}

[data-theme="light"] .arashpro-article-table tbody tr:hover,
[data-theme="light"] .arashpro-single-content table tbody tr:hover,
[data-theme="light"] .arashpro-static-content table tbody tr:hover {
  background: rgba(14, 165, 233, 0.06);
}

[data-theme="light"] .arashpro-article-table tbody tr td:first-child,
[data-theme="light"] .arashpro-single-content table tbody tr td:first-child,
[data-theme="light"] .arashpro-static-content table tbody tr td:first-child {
  color: rgba(15, 23, 42, 0.96);
}

[data-theme="light"] .arashpro-article-table tbody tr td:nth-child(2),
[data-theme="light"] .arashpro-single-content table tbody tr td:nth-child(2),
[data-theme="light"] .arashpro-static-content table tbody tr td:nth-child(2) {
  color: #0284c7;
}

[data-theme="light"] .arashpro-single-content .arashpro-embed,
[data-theme="light"] .arashpro-single-content .h_iframe-aparat_embed_frame,
[data-theme="light"] .arashpro-single-content .wp-block-embed,
[data-theme="light"] .arashpro-single-content .wp-block-embed__wrapper {
  background: rgba(241, 245, 249, 0.96);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.12);
}

/* Static marketing pages */
.arashpro-static-content {
  margin-top: 2rem;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.95;
}

.arashpro-static-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.03em;
}

.arashpro-static-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.arashpro-static-content p {
  margin-bottom: 1rem;
}

.arashpro-static-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.arashpro-checklist,
.arashpro-steps-list {
  margin: 1rem 0 1.5rem;
  padding-right: 1.25rem;
}

.arashpro-checklist li,
.arashpro-steps-list li {
  margin-bottom: 0.65rem;
}

.arashpro-about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.arashpro-about-photo {
  max-width: 320px;
  margin: 0 auto;
}

.arashpro-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.arashpro-about-card {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 1.25rem;
}

.arashpro-pricing-inline {
  display: grid;
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.arashpro-pricing-inline--dual {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 900px;
  margin-inline: auto;
}

.arashpro-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.arashpro-faq-item {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.arashpro-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.arashpro-faq-item p {
  margin-top: 0.75rem;
  color: var(--c-muted);
}

.arashpro-inline-cta {
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .arashpro-about-layout {
    grid-template-columns: 1fr;
  }
}

[data-theme="light"] .arashpro-static-content {
  color: rgba(51, 65, 85, 0.95);
}

[data-theme="light"] .arashpro-static-content h2,
[data-theme="light"] .arashpro-about-card h3 {
  color: rgba(15, 23, 42, 0.96);
}

[data-theme="light"] .arashpro-about-card,
[data-theme="light"] .arashpro-faq-item {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(148, 163, 184, 0.18);
}
