:root {
  --paper: #fbfaf6;
  --paper-2: #f1f5f8;
  --ink: #141720;
  --muted: #667386;
  --surface: #ffffff;
  --line: #dce3ea;
  --teal: #07877f;
  --teal-dark: #056963;
  --blue: #2d5bd7;
  --blue-dark: #2145a9;
  --coral: #e65f4e;
  --amber: #c88b16;
  --lime: #d8f56f;
  --charcoal: #111820;
  --shadow: 0 24px 70px rgba(20, 23, 32, 0.16);
  --radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 227, 234, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 23, 32, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.site-header-actions,
.site-nav,
.hero-actions,
.cta-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  color: #0c1420;
  background: var(--lime);
  border: 1px solid rgba(20, 23, 32, 0.1);
  border-radius: 8px;
  font-weight: 950;
}

.site-nav {
  gap: 4px;
}

.site-header-actions {
  gap: 10px;
  min-width: 0;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 8px;
  color: #344052;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a:hover {
  background: #edf3f5;
}

.language-switcher {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #344052;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.lang-button:hover,
.lang-button:focus-visible {
  background: #edf3f5;
  outline: none;
}

.lang-button.is-active {
  color: #0c1420;
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: clamp(660px, 78svh, 820px);
  padding: clamp(128px, 14vw, 166px) 20px clamp(72px, 8vw, 90px);
  color: #ffffff;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background: rgba(6, 10, 17, 0.52);
}

.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 86px;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(3.5rem, 7.2vw, 7.15rem);
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.48);
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: inline;
}

.hero-copy {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero-actions,
.cta-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

.button-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-blue {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.button-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.button-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -48px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats-band div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stats-band strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.intro-section,
.pricing-header,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
}

.section h2,
.pricing-header h2,
.cta-section h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.5rem);
}

.intro-section p:last-child,
.pricing-header p,
.plugin-panel p,
.value-grid p,
.faq-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-head {
  max-width: 810px;
}

.section-head h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.7rem);
}

.plugin-section {
  padding-top: 56px;
}

.plugin-showcase {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.plugin-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 0;
  min-height: 520px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(20, 23, 32, 0.1);
  overflow: hidden;
}

.plugin-panel:nth-child(even) {
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
}

.plugin-panel:nth-child(even) img {
  order: 2;
}

.plugin-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.plugin-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.tag,
.price-badge,
.featured-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag,
.price-badge {
  color: var(--teal-dark);
  background: #e7f5f2;
}

.plugin-panel-blue .tag {
  color: var(--blue-dark);
  background: #e8eefc;
}

.featured-label {
  color: #ffffff;
  background: var(--coral);
}

.plugin-panel h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.plugin-panel p {
  margin-top: 18px;
}

.plugin-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding-left: 20px;
  color: #334153;
}

.plugin-panel li::marker {
  color: var(--teal);
}

.plugin-panel-blue li::marker {
  color: var(--blue);
}

.value-section {
  padding-top: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.value-grid article {
  min-width: 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-grid span {
  color: var(--coral);
  font-weight: 950;
}

.value-grid h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}

.value-grid p {
  margin-top: 12px;
}

.pricing-section {
  color: #ffffff;
  background: var(--charcoal);
  direction: ltr;
}

.pricing-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) 0;
}

.pricing-header {
  align-items: center;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.price-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.price-card.featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(216, 245, 111, 0.28);
}

.price-card .featured-label {
  position: absolute;
  top: 24px;
  right: 24px;
}

.price-card h3 {
  margin-top: 28px;
  font-size: 2rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.price-line:first-of-type {
  margin-top: 26px;
}

.price-line span {
  color: var(--muted);
  font-weight: 850;
}

.price-line div {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

del {
  color: #8b98a7;
  font-weight: 850;
}

.price-line strong,
.pricing-table strong {
  color: var(--teal-dark);
  font-size: 1.16rem;
}

.price-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.price-actions .lifetime-price-line {
  margin-top: 12px;
}

.price-actions form {
  margin: 0;
}

.paypal-subscription-button {
  min-height: 46px;
}

.legacy-annual-paypal-form {
  display: none;
}

.price-actions form:has(input[value="YOUR_BUTTON_ID_STARTER_LIFETIME"]),
.price-actions form:has(input[value="YOUR_BUTTON_ID_BUSINESS_LIFETIME"]),
.price-actions form:has(input[value="YOUR_BUTTON_ID_AGENCY_LIFETIME"]) {
  display: none;
}

.paypal-lifetime-form {
  display: inline-grid;
  justify-items: center;
  align-content: start;
  gap: 0.5rem;
  width: 100%;
}

.paypal-lifetime-form input[type="submit"],
.pp-WC6Y6GJAERRHQ {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 11.625rem;
  max-width: 100%;
  height: 2.625rem;
  padding: 0 2rem;
  border: 0;
  border-radius: 1.5rem;
  background-color: #ffd140;
  color: #000000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
  cursor: pointer;
}

.paypal-card-icons {
  width: auto;
  height: auto;
  max-width: min(100%, 230px);
}

.paypal-powered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1;
}

.paypal-powered img {
  display: inline-block;
  width: auto;
  height: 0.875rem;
  max-width: 4.25rem;
  vertical-align: middle;
}

.button-buy {
  width: 100%;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--charcoal);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button-buy:hover {
  background: #2a3440;
  transform: translateY(-1px);
}

.price-card.featured .button-buy {
  background: var(--teal);
}

.price-card.featured .button-buy:hover {
  background: var(--teal-dark);
}

.pricing-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.pricing-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: var(--ink);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.pricing-table th {
  color: #0f1924;
  background: var(--lime);
  font-size: 0.88rem;
  font-weight: 950;
}

.pricing-table td:first-child,
.pricing-table th:first-child {
  font-weight: 950;
}

.pricing-table td:nth-child(n + 3),
.pricing-table th:nth-child(n + 3) {
  text-align: right;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.cta-section {
  align-items: center;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-visual {
  display: grid;
  place-items: center;
  width: clamp(52px, 6vw, 68px);
  height: clamp(52px, 6vw, 68px);
  border-radius: 50%;
  background: rgba(7, 135, 127, 0.1);
  color: var(--teal);
  flex-shrink: 0;
}

.contact-visual svg {
  width: clamp(20px, 2.4vw, 26px);
  height: clamp(20px, 2.4vw, 26px);
}

.contact-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-top: 4px;
}

.contact-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 660px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.button-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 13px 24px;
}

.button-mail svg {
  flex-shrink: 0;
}

.contact-response {
  color: var(--muted);
  font-size: 0.88rem;
}

html[dir="rtl"] .contact-visual {
  order: 1;
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.faq-grid article {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-grid h3 {
  font-size: 1.18rem;
}

.faq-grid p {
  margin-top: 12px;
}

.site-footer {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: #0b1118;
}

.site-footer span {
  color: #ffffff;
  font-weight: 900;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
  font-family: "Segoe UI", Tahoma, Arial, Helvetica, sans-serif;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .site-header-actions,
html[dir="rtl"] .site-nav,
html[dir="rtl"] .brand,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .cta-actions,
html[dir="rtl"] .site-footer {
  direction: rtl;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .tag,
html[dir="rtl"] .price-badge,
html[dir="rtl"] .featured-label,
html[dir="rtl"] .stats-band span,
html[dir="rtl"] .value-grid span {
  letter-spacing: 0;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .stats-band div {
  border-right: 0;
  border-left: 1px solid var(--line);
}

html[dir="rtl"] .stats-band div:last-child {
  border-left: 0;
}

html[dir="rtl"] .plugin-panel ul {
  padding-right: 20px;
  padding-left: 0;
}

html[dir="rtl"] .price-card .featured-label {
  right: auto;
  left: 24px;
}

html[dir="rtl"] .contact-visual {
  order: 1;
}

html[dir="rtl"] .pricing-section {
  direction: rtl;
}

html[dir="rtl"] .price-line div {
  justify-items: start;
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .pricing-table th,
html[dir="rtl"] .pricing-table td {
  text-align: right;
}

html[dir="rtl"] .pricing-table td:nth-child(n + 3),
html[dir="rtl"] .pricing-table th:nth-child(n + 3) {
  text-align: left;
}

html[dir="rtl"] .pricing-table del,
html[dir="rtl"] .pricing-table strong,
html[dir="rtl"] .price-line del,
html[dir="rtl"] .price-line strong {
  direction: ltr;
  unicode-bidi: isolate;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .intro-section,
  .plugin-panel,
  .plugin-panel:nth-child(even),
  .pricing-header,
  .pricing-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-band {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .stats-band div:nth-child(2n) {
    border-right: 0;
  }

  html[dir="rtl"] .stats-band div:nth-child(2n) {
    border-left: 0;
  }

  .stats-band div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stats-band div {
    border-bottom: 1px solid var(--line);
  }

  .stats-band div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .plugin-panel:nth-child(even) img {
    order: 0;
  }

  .plugin-panel img {
    min-height: 320px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-visual {
    justify-self: center;
  }

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

  .contact-body p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .stats-band,
  .intro-section,
  .plugin-panel,
  .plugin-panel:nth-child(even),
  .value-grid,
  .pricing-header,
  .pricing-grid,
  .cta-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  html[dir="rtl"] .stats-band div {
    border-left: 0;
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .plugin-panel:nth-child(even) img {
    order: 0;
  }

  .plugin-panel img {
    min-height: 320px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .site-header-actions {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .site-nav a {
    padding: 9px 10px;
  }

  .hero {
    padding: 46px 16px 58px;
    min-height: auto;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-overlay {
    background: rgba(6, 10, 17, 0.68);
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 32px);
    padding-top: 0;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
  }

  .hero h1 span {
    display: block;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .hero-actions,
  .cta-actions,
  .hero-actions .button,
  .cta-actions .button,
  .plugin-panel .button {
    width: 100%;
  }

  .section,
  .pricing-inner {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .section,
  .pricing-inner {
    margin-right: auto;
    margin-left: auto;
  }

  .plugin-section {
    padding-top: 48px;
  }

  .plugin-panel {
    min-height: 0;
  }

  .plugin-panel img {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .plugin-panel-copy,
  .price-card,
  .value-grid article,
  .faq-grid article {
    padding: 22px;
  }

  .price-card .featured-label {
    position: static;
    margin-bottom: 12px;
  }

  .price-card h3 {
    margin-top: 20px;
  }

  .price-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price-line div {
    justify-items: start;
    text-align: left;
  }

  .pricing-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table th {
    display: none;
  }

  .pricing-table tbody {
    display: grid;
    gap: 12px;
  }

  .pricing-table tr {
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .pricing-table td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    text-align: right;
    white-space: normal;
  }

  .pricing-table td:last-child {
    border-bottom: 0;
  }

  .pricing-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  html[dir="rtl"] .site-header,
  html[dir="rtl"] .site-header-actions {
    align-items: flex-end;
  }

  html[dir="rtl"] .site-nav {
    justify-content: flex-start;
  }

  html[dir="rtl"] .hero-content,
  html[dir="rtl"] .section,
  html[dir="rtl"] .pricing-inner {
    margin-right: auto;
    margin-left: 0;
  }

  html[dir="rtl"] .hero h1,
  html[dir="rtl"] .hero-copy,
  html[dir="rtl"] .section-head {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  html[dir="rtl"] .hero h1 {
    font-size: clamp(1.72rem, 7.8vw, 2.1rem);
    line-height: 1.16;
  }

  html[dir="rtl"] .price-line div {
    justify-items: start;
    text-align: left;
  }

  html[dir="rtl"] .pricing-table td {
    text-align: left;
  }

  html[dir="rtl"] .pricing-table td::before {
    text-align: right;
  }

  .pricing-table td:first-child,
  .pricing-table td:nth-child(n + 3) {
    text-align: right;
  }

  html[dir="rtl"] .pricing-table td:first-child,
  html[dir="rtl"] .pricing-table td:nth-child(n + 3) {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .hero {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-content {
    max-width: calc(100vw - 24px);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.15rem);
  }

  .section,
  .pricing-inner {
    width: calc(100% - 24px);
  }

  .plugin-panel-copy,
  .price-card,
  .value-grid article,
  .faq-grid article {
    padding: 18px;
  }
}
