:root {
  --bg: #09071A;
  --bg-alt: #120A2D;
  --surface: #120C25;
  --surface-elevated: #1A1134;
  --accent: #7A06D9;
  --accent-2: #AC49FD;
  --success: #4CAF50;
  --warning: #FFB84D;
  --error: #FF5E7A;
  --text: #FFFFFF;
  --text-secondary: #B7A9D9;
  --text-hint: #786A98;
  --divider: #2C2144;
  --glow: #B270FF;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Background ambience ---------- */

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 40% at 15% 0%, rgba(122, 6, 217, 0.35), transparent 60%),
    radial-gradient(50% 35% at 90% 15%, rgba(172, 73, 253, 0.22), transparent 60%),
    radial-gradient(45% 30% at 50% 100%, rgba(122, 6, 217, 0.18), transparent 60%),
    var(--bg);
}

.bg-dots {
  position: fixed;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  max-width: none;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

/* ---------- Header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 7, 26, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img.mark { height: 24px; width: 24px; border-radius: 7px; }
.brand .lockup { height: 13px; opacity: 0.95; }
.brand .vps-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-2);
  border: 1px solid rgba(172, 73, 253, 0.4);
  border-radius: 5px;
  padding: 1px 5px;
  margin-left: 1px;
}

.online-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}

.online-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- Language switcher ----------
   Built on native <details>/<summary> - the browser handles open/close and
   outside-click-to-close for free, so there's no custom JS state machine
   here to get out of sync. */

.lang-switcher { position: relative; flex-shrink: 0; }

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  list-style: none;
  user-select: none;
}
.lang-switcher-btn::-webkit-details-marker { display: none; }
.lang-switcher-btn:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); }
.lang-switcher-btn .chev { font-size: 9px; transition: transform 0.15s ease; opacity: 0.7; }
.lang-switcher[open] .lang-switcher-btn .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 210px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--surface-elevated);
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 60;

  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) transparent;
}
.lang-menu::-webkit-scrollbar { width: 7px; }
.lang-menu::-webkit-scrollbar-track { background: transparent; margin: 6px 0; }
.lang-menu::-webkit-scrollbar-thumb {
  background: var(--accent-2);
  border-radius: 999px;
  opacity: 0.5;
}
.lang-menu::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.lang-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.lang-menu-item:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.lang-menu-item.active { color: #fff; background: rgba(122, 6, 217, 0.22); }
.lang-menu-item .flag { font-size: 15px; }
.lang-menu-item .check { margin-left: auto; color: var(--accent-2); opacity: 0; font-size: 12px; }
.lang-menu-item.active .check { opacity: 1; }

html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .lang-menu-item .check { margin-left: 0; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 14px 26px;
  box-shadow: 0 8px 30px rgba(122, 6, 217, 0.45);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(172, 73, 253, 0.55); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  padding: 13px 24px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn-block { width: 100%; padding: 16px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

.btn small {
  display: block;
  font-weight: 600;
  font-size: 11px;
  opacity: 0.85;
}

/* ---------- Hero ---------- */

.hero {
  padding: 72px 0 40px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-2), #fff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.marquee {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll-left 32s linear infinite;
}

.marquee span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-hint);
  letter-spacing: 0.3px;
}

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

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
}

.step .num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(122, 6, 217, 0.4);
}

.step h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.step p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ---------- Pricing / order ---------- */

.order-panel {
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface));
  border: 1px solid var(--divider);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.order-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-hint);
  margin-bottom: 14px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 22px 18px 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.plan-card:hover { transform: translateY(-2px); border-color: rgba(172, 73, 253, 0.4); }

.plan-card.active {
  border-color: var(--accent-2);
  background: rgba(122, 6, 217, 0.16);
  box-shadow: 0 0 0 3px rgba(122, 6, 217, 0.22);
}

.plan-card .badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card .tier-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.plan-card .devices-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.plan-card.active .devices-row { color: #fff; }
.plan-card .devices-row svg { color: var(--accent-2); flex-shrink: 0; }

.plan-card .price {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-card .price .per-month { font-size: 12px; font-weight: 600; color: var(--text-hint); }

.plan-card .plan-divider { height: 1px; background: var(--divider); margin: 14px 0 12px; }

.plan-card .plan-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

input[type="email"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--divider);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}
input[type="email"]::placeholder { color: var(--text-hint); }
input[type="email"]:focus { border-color: var(--accent-2); }
input[type="email"].invalid { border-color: var(--error); }

.hint-error {
  font-size: 12.5px;
  color: var(--error);
  margin-top: -8px;
  display: none;
}
.hint-error.show { display: block; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--divider);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.checkbox.checked {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.checkbox svg { opacity: 0; width: 12px; height: 12px; }
.checkbox.checked svg { opacity: 1; }

.consent-row a { color: var(--accent-2); text-decoration: underline; cursor: pointer; }

.order-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 4px;
}

.order-total .strike {
  color: var(--text-hint);
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 8px;
}

.pay-btn { margin-top: 4px; }
.pay-btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-hint);
}
.trust-row span { display: flex; align-items: center; gap: 6px; }

/* ---------- Guarantee stats ---------- */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
}

.stat { text-align: center; }
.stat .value { font-size: 30px; font-weight: 800; background: linear-gradient(135deg, #fff, var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { font-size: 12.5px; color: var(--text-secondary); margin-top: 6px; }

/* ---------- Reviews ---------- */

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 14.5px; }
.review-meta { font-size: 12px; color: var(--text-hint); }
.review-stars { color: var(--warning); font-size: 13px; margin-bottom: 8px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* ---------- Advantages ---------- */

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.adv-card:hover { border-color: rgba(172,73,253,0.35); transform: translateY(-3px); }

.adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(122, 6, 217, 0.18);
  border: 1px solid rgba(172, 73, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-2);
}

.adv-card h3 { font-size: 16.5px; margin: 0 0 8px; font-weight: 700; }
.adv-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  gap: 16px;
}

.faq-q .chev { transition: transform 0.2s ease; flex-shrink: 0; color: var(--accent-2); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a-inner { padding: 0 22px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(122, 6, 217, 0.28), rgba(172, 73, 253, 0.12));
  border: 1px solid rgba(172, 73, 253, 0.3);
  border-radius: 32px;
  padding: 64px 32px;
}

.final-cta h2 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 14px; font-weight: 800; }
.final-cta p { color: var(--text-secondary); max-width: 480px; margin: 0 auto 30px; font-size: 15.5px; }
.final-cta .hero-ctas { margin-bottom: 0; }

/* ---------- Cabinet mock (post-purchase preview) ---------- */

.flow-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.flow-copy .eyebrow { margin-bottom: 12px; }
.flow-copy h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; margin: 0 0 14px; }
.flow-copy p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }

.flow-copy ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.flow-copy li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-secondary); }
.flow-copy li svg { color: var(--success); flex-shrink: 0; }

.mail-mock {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.mail-mock-bar { display: flex; gap: 6px; padding: 14px 16px 10px; }
.mail-mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--divider); }

.mail-mock-body { background: var(--bg); border-radius: 18px; padding: 24px; margin: 0 4px 4px; }
.mail-mock-body .mm-from { font-size: 12px; color: var(--text-hint); margin-bottom: 4px; }
.mail-mock-body .mm-subject { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.mail-mock-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--divider); font-size: 13.5px; }
.mail-mock-row:last-of-type { border-bottom: none; }
.mail-mock-row .k { color: var(--text-hint); }
.mail-mock-row .v { font-weight: 700; font-family: 'Courier New', monospace; }
.mail-mock-cta { margin-top: 18px; text-align: center; padding: 12px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-weight: 700; font-size: 13.5px; }

/* ---------- Footer ---------- */

footer.site {
  border-top: 1px solid var(--divider);
  padding: 48px 0 32px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-hint);
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-elevated);
  border: 1px solid var(--accent-2);
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  max-width: 90vw;
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .flow-preview { grid-template-columns: 1fr; }
  .order-panel { padding: 28px 20px; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 32px; }
  .nav-row .btn-ghost span.full { display: none; }
  .lang-switcher .lang-name { display: none; }
}

/* ---------- RTL (Arabic) ----------
   Text direction and alignment mirror correctly; icon/button positions are
   left as-is (a full mirrored layout is a separate, larger effort) so a
   handful of rows keep their icon on the visually "wrong" side under RTL -
   an accepted simplification for a first pass. */

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .plan-card { text-align: right; }
html[dir="rtl"] .consent-row,
html[dir="rtl"] .devices-row,
html[dir="rtl"] .trust-row span,
html[dir="rtl"] .mail-mock-row,
html[dir="rtl"] .flow-copy li {
  direction: rtl;
}
