:root {
  --bg: #080a12;
  --bg-2: #10121e;
  --ink: #f8fbff;
  --muted: #a9b2c4;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(16, 18, 30, 0.78);
  --panel-2: rgba(255, 255, 255, 0.07);
  --aqua: #37f5d2;
  --blue: #4aa8ff;
  --violet: #8b5cf6;
  --rose: #ff477e;
  --amber: #ffc857;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(55, 245, 210, 0.18), transparent 30rem),
    radial-gradient(circle at 84% 6%, rgba(139, 92, 246, 0.22), transparent 26rem),
    radial-gradient(circle at 52% 88%, rgba(255, 71, 126, 0.16), transparent 32rem),
    linear-gradient(135deg, #080a12 0%, #111323 54%, #070812 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

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

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

.shell {
  width: min(90%, 1320px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 18, 0.78);
  backdrop-filter: blur(20px);
}

.nav-shell,
.nav-actions,
.main-nav {
  display: flex;
  align-items: center;
}

.nav-shell {
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: 198px;
  height: auto;
}

.main-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.main-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
  gap: 10px;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch button {
  min-width: 58px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lang-switch button.active {
  color: #071018;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
}

.flag {
  width: 20px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(5, 12, 18, 0.22);
}

.flag-en {
  position: relative;
  background: repeating-linear-gradient(
    180deg,
    #b22234 0,
    #b22234 2px,
    #fff 2px,
    #fff 4px
  );
}

.flag-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 8px;
  background: #3c3b6e;
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.flag-ar {
  position: relative;
  background: #c1272d;
}

.flag-ar::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 999px;
  background: #006233;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  color: #071018;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(55, 245, 210, 0.22);
}

.btn-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-card {
  width: 100%;
  margin-top: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  padding: 74px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.62vw, 1.72rem);
  line-height: 1.22;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.library-copy p,
.device-grid p,
.trial p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: var(--panel-2);
}

.hero-metrics strong {
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(55, 245, 210, 0.22), rgba(139, 92, 246, 0.22), rgba(255, 71, 126, 0.12));
  filter: blur(18px);
}

.hero-media img,
.library-art img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 16 / 10;
}

.ticker {
  width: min(90%, 1320px);
  margin-inline: auto;
  overflow: hidden;
  direction: ltr;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.ticker-track {
  width: max-content;
  display: flex;
  direction: ltr;
  flex-direction: row;
  gap: 0;
  align-items: center;
  padding: 16px 0;
  animation: ticker 54s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  direction: ltr;
  flex-direction: row;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}

.ticker-poster-strip {
  width: min(1280px, 88vw);
  height: 178px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.quick-strip,
.section,
.trial {
  padding: 82px 0;
}

.quick-grid,
.feature-grid,
.pricing-grid,
.device-board {
  display: grid;
  gap: 16px;
}

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

.quick-grid article,
.feature-card,
.price-card,
.device-board div,
.trial-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.quick-grid article {
  padding: 22px;
}

.quick-grid span,
.plan-badge,
.feature-icon {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(55, 245, 210, 0.13);
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
}

.quick-grid strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 1.1rem;
}

.quick-grid p,
.feature-card p,
.price-card li,
.faq-list p {
  color: var(--muted);
}

.library-grid,
.device-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: 44px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 30px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

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

.feature-card {
  padding: 24px;
}

.feature-icon {
  margin-bottom: 18px;
}

.devices {
  background: rgba(255, 255, 255, 0.035);
}

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

.device-board div {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.seo-section {
  background: linear-gradient(135deg, rgba(55, 245, 210, 0.055), rgba(255, 71, 126, 0.045));
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 34px;
}

.seo-grid p {
  color: var(--muted);
  max-width: 760px;
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.seo-keywords span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 900;
}

.seo-page-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.seo-content-grid,
.seo-links-grid {
  display: grid;
  gap: 18px;
}

.seo-content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-content-grid article,
.seo-links-grid a {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.seo-content-grid article {
  padding: 24px;
}

.seo-content-grid h2 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.seo-content-grid p {
  color: var(--muted);
}

.seo-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.seo-links-grid a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
}

.seo-links-grid a::after {
  content: ">";
  color: var(--aqua);
}

.device-board div::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--violet));
  opacity: 0.28;
}

.device-board strong,
.device-board span {
  position: relative;
  z-index: 1;
}

.device-board strong {
  font-size: 1.08rem;
}

.device-board span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.price-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(55, 245, 210, 0.66);
  background: linear-gradient(180deg, rgba(55, 245, 210, 0.16), rgba(16, 18, 30, 0.82));
  transform: translateY(-12px);
}

.plan-badge.hot {
  background: rgba(255, 200, 87, 0.18);
  color: var(--amber);
}

.price {
  margin: 14px 0 18px;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 950;
}

.multi-price {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--aqua);
  font-weight: 950;
}

.price-card li.count-item::before {
  content: none;
}

.count-ltr,
.hero-metrics strong,
.channel-stats strong,
.price,
.feature-icon,
.footer-whatsapp span {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.count-ltr {
  font-weight: 950;
  color: rgba(248, 251, 255, 0.95);
}

.trial-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 12px 0 0;
}

.page-hero {
  padding: 86px 0 42px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 42px;
}

.page-hero h2 {
  max-width: 820px;
  font-size: clamp(1.72rem, 2.25vw, 2.45rem);
  line-height: 1.16;
}

.library-copy h2,
.section-heading h2,
.trial h2 {
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  line-height: 1.24;
}

.feature-card h3,
.price-card h3,
.device-board h3,
.reseller-grid h3,
.channel-column h2 {
  font-size: 1rem;
  line-height: 1.25;
}

.channel-column h2 {
  margin-bottom: 8px;
}

.reseller-panel,
.channel-stats,
.reseller-grid,
.channels-layout {
  display: grid;
  gap: 16px;
}

.reseller-panel,
.channel-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reseller-faq .faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.reseller-panel div,
.channel-stats div,
.reseller-grid article,
.channel-column {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.reseller-panel strong,
.channel-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 950;
}

.reseller-panel span,
.channel-stats span,
.reseller-grid p,
.channel-column li {
  color: var(--muted);
}

.channel-stats strong {
  color: var(--aqua);
  font-size: 2rem;
}

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

.reseller-grid span {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(55, 245, 210, 0.13);
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
}

.reseller-grid h3 {
  margin-top: 18px;
}

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

.channel-column ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.channel-column li::before {
  content: "+";
  margin-right: 8px;
  color: var(--aqua);
  font-weight: 950;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-credit {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  direction: ltr;
  unicode-bidi: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 9px 14px;
  background:
    linear-gradient(135deg, rgba(55, 245, 210, 0.1), rgba(58, 166, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 30px rgba(0, 0, 0, 0.12);
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-footer .footer-credit:hover {
  border-color: rgba(55, 245, 210, 0.26);
  background:
    linear-gradient(135deg, rgba(55, 245, 210, 0.13), rgba(58, 166, 255, 0.11)),
    rgba(255, 255, 255, 0.045);
  color: rgba(248, 251, 255, 0.86);
}

.site-footer .footer-credit bdi {
  direction: ltr;
  unicode-bidi: isolate;
  color: #f8fbff;
  font-size: 0.95em;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(55, 245, 210, 0.22);
}

.footer-whatsapp,
.footer-telegram {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  direction: ltr;
  unicode-bidi: isolate;
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  color: #f8fbff;
  font-size: 0.96rem;
  font-weight: 950;
}

.footer-whatsapp {
  border: 1px solid rgba(55, 245, 210, 0.28);
  background: rgba(55, 245, 210, 0.1);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.18);
}

.footer-telegram {
  border: 1px solid rgba(34, 158, 217, 0.34);
  background: rgba(34, 158, 217, 0.12);
  box-shadow: 0 14px 28px rgba(34, 158, 217, 0.18);
}

.footer-whatsapp img,
.footer-telegram img {
  width: 30px;
  height: 30px;
}

.footer-whatsapp span,
.footer-telegram span {
  white-space: nowrap;
}

.footer-telegram span {
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-site-name {
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0;
  background: linear-gradient(135deg, #f8fbff, var(--aqua), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 12px;
}

.telegram-float,
.whatsapp-float {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.telegram-float {
  background: #229ed9;
  box-shadow: 0 18px 42px rgba(34, 158, 217, 0.38);
}

.whatsapp-float {
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.4);
}

.telegram-float img,
.whatsapp-float img {
  width: 58px;
  height: 58px;
}

.telegram-float span,
.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-links {
  justify-items: end;
}

html[dir="rtl"] .social-float {
  right: auto;
  left: 22px;
}

html[dir="rtl"] .price-card li::before {
  margin-right: 0;
  margin-left: 8px;
}

@media (max-width: 1100px) {
  .nav-shell {
    gap: 10px;
  }

  .brand {
    order: 1;
  }

  .nav-actions {
    order: 2;
  }

  .nav-toggle {
    order: 3;
    display: block;
    margin-left: 0;
  }

  .main-nav {
    order: 4;
    position: absolute;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    background: rgba(8, 10, 18, 0.96);
    padding: 16px;
  }

  .main-nav {
    top: 82px;
    border-radius: 20px;
  }

  .nav-actions {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .nav-actions .btn-small {
    display: none;
  }

  .lang-switch button {
    min-width: 48px;
    padding: 0 8px;
  }

  .main-nav a,
  .nav-actions .btn {
    justify-content: center;
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .hero-grid,
  .library-grid,
  .device-grid,
  .faq-grid,
  .seo-grid,
  .seo-content-grid,
  .seo-links-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .seo-keywords {
    justify-content: flex-start;
  }

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

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

@media (max-width: 760px) {
  .shell {
    width: min(92%, 1320px);
  }

  .ticker {
    width: min(92%, 1320px);
    border-radius: 18px;
  }

  h2,
  .library-copy h2,
  .section-heading h2,
  .trial h2 {
    font-size: 1.18rem;
    line-height: 1.26;
  }

  .page-hero h2 {
    font-size: 1.55rem;
  }

  h3,
  .feature-card h3,
  .price-card h3,
  .device-board h3,
  .reseller-grid h3,
  .channel-column h2 {
    font-size: 0.98rem;
  }

  .brand img {
    width: 132px;
  }

  .lang-switch {
    gap: 2px;
    padding: 3px;
  }

  .lang-switch button {
    min-width: 38px;
    min-height: 30px;
    padding: 0 5px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-metrics,
  .quick-grid,
  .feature-grid,
  .pricing-grid,
  .device-board,
  .reseller-panel,
  .channel-stats,
  .reseller-grid,
  .channels-layout {
    grid-template-columns: 1fr;
  }

  .seo-keywords span {
    font-size: 0.78rem;
    padding: 8px 11px;
  }

  .price-card.featured {
    transform: none;
  }

  .trial-box,
  .footer-grid {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-credit {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    font-size: 0.68rem;
    text-align: center;
  }

  .ticker-track {
    animation-duration: 30s;
  }

  .ticker-poster-strip {
    width: 760px;
    height: 112px;
    border-radius: 14px;
  }

  .social-float {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .telegram-float,
  .whatsapp-float {
    width: 54px;
    height: 54px;
  }

  .telegram-float img,
  .whatsapp-float img {
    width: 54px;
    height: 54px;
  }

  html[dir="rtl"] .social-float {
    right: auto;
    left: 14px;
  }
}
