:root {
  --ink: #eef8f4;
  --muted: #9fb0aa;
  --bg: #07110f;
  --bg-deep: #030807;
  --panel: #0d1b18;
  --panel-2: #10231e;
  --line: rgba(204, 238, 226, .14);
  --green: #66f2bc;
  --green-dark: #1b9d72;
  --green-soft: rgba(102, 242, 188, .12);
  --radius: 28px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg-deep); color: var(--ink); font-family: "IBM Plex Sans Arabic", sans-serif; font-size: 16px; line-height: 1.7; overflow-x: hidden; }
button, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link { position: absolute; top: -100px; right: 1rem; z-index: 100; padding: .7rem 1rem; background: var(--green); color: #03110c; border-radius: 10px; }
.skip-link:focus { top: 1rem; }

.site-header { width: min(calc(100% - 32px), var(--max)); height: 76px; margin: 16px auto 0; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 20; border: 1px solid var(--line); background: rgba(7, 17, 15, .78); backdrop-filter: blur(18px); border-radius: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; direction: ltr; font-family: Manrope, sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: .16em; }
.brand-mark { width: 34px; height: 23px; border: 1.5px solid var(--green); border-radius: 50% 50% 45% 45%; display: grid; place-items: center; box-shadow: 0 0 18px rgba(102,242,188,.18); }
.brand-mark span { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px var(--green); }
nav { display: flex; align-items: center; gap: 30px; color: var(--muted); }
nav a { font-size: .95rem; transition: color .2s; }
nav a:hover, nav a:focus-visible { color: var(--ink); }
.language-picker { position: relative; margin-inline-start: auto; }
.language-toggle { width: 42px; height: 36px; padding: 0; border: 1px solid rgba(102,242,188,.3); border-radius: 999px; background: var(--green-soft); color: var(--green); font-family: Manrope, sans-serif; font-size: .76rem; font-weight: 700; cursor: pointer; }
.language-menu { min-width: 152px; padding: 7px; position: absolute; z-index: 60; top: calc(100% + 10px); inset-inline-end: 0; border: 1px solid var(--line); border-radius: 14px; background: rgba(7,17,15,.98); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.language-menu button { width: 100%; padding: 9px 10px; display: flex; align-items: center; gap: 10px; border: 0; border-radius: 9px; background: transparent; color: var(--ink); text-align: start; cursor: pointer; }
.language-menu button:hover, .language-menu button.active { background: var(--green-soft); color: var(--green); }
.language-menu span { width: 25px; color: var(--muted); font-family: Manrope, sans-serif; font-size: .7rem; }
.header-cta { border: 0; background: var(--ink); color: #07110f; border-radius: 999px; padding: 10px 20px; font-weight: 700; cursor: pointer; }

.hero { width: min(calc(100% - 32px), var(--max)); min-height: 720px; margin: 24px auto 0; display: grid; grid-template-columns: .92fr 1.25fr; align-items: center; gap: 48px; direction: ltr; position: relative; }
.hero::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(24, 145, 103, .16); filter: blur(100px); left: 20%; top: 10%; pointer-events: none; }
.hero-copy { direction: rtl; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 18px; color: var(--green); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 18px; height: 1px; background: var(--green); margin-left: 8px; vertical-align: middle; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 5.2vw, 5.6rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 600; }
h1 em { font-style: normal; color: var(--green); }
.hero-lede { max-width: 580px; margin-bottom: 30px; color: #becbc7; font-size: 1.2rem; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: #03110c; box-shadow: 0 10px 40px rgba(102, 242, 188, .16); }
.button.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.button.outline { background: transparent; color: var(--ink); border-color: rgba(102,242,188,.38); }
.button.full { width: 100%; }
.hero-stats { margin: 40px 0 0; display: flex; gap: 30px; }
.hero-stats div { padding-left: 30px; border-left: 1px solid var(--line); }
.hero-stats div:last-child { border-left: 0; padding-left: 0; }
.hero-stats dt { color: var(--ink); font-family: Manrope, sans-serif; font-size: 1.18rem; font-weight: 700; }
.hero-stats dd { margin: 2px 0 0; color: var(--muted); font-size: .84rem; }
.hero-visual { margin: 0; position: relative; min-height: 580px; direction: rtl; }
.hero-visual img { width: 100%; height: 580px; object-fit: cover; object-position: center; border-radius: 36px; border: 1px solid var(--line); box-shadow: 0 40px 100px rgba(0,0,0,.38); }
.hero-visual figcaption { position: absolute; right: 22px; bottom: 22px; padding: 12px 16px; background: rgba(3,8,7,.78); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 999px; font-size: .84rem; }
.hud-dot { display: inline-block; width: 7px; height: 7px; margin-left: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }

.trust-strip { min-height: 74px; padding: 16px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); display: flex; justify-content: center; align-items: center; gap: 28px; text-align: center; }
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--green-dark); }
.section { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.compact { margin-bottom: 32px; }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.5vw, 4.25rem); line-height: 1.17; letter-spacing: -.035em; font-weight: 600; }
.section-heading > p:last-child, .privacy-intro > p:last-child { color: var(--muted); font-size: 1.08rem; }
.experience-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 44px; align-items: stretch; direction: ltr; }
.document-visual { margin: 0; position: relative; direction: rtl; }
.document-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; border-radius: var(--radius); }
.document-visual figcaption { position: absolute; right: 20px; bottom: 20px; padding: 10px 15px; border-radius: 999px; background: rgba(3,8,7,.82); border: 1px solid var(--line); font-size: .84rem; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; direction: rtl; }
.steps li { padding: 22px 0; display: grid; grid-template-columns: 56px 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.steps li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(102,242,188,.28); border-radius: 50%; color: var(--green); font-family: Manrope, sans-serif; font-size: .78rem; }
.steps h3 { margin-bottom: 5px; font-size: 1.25rem; }
.steps p { margin-bottom: 0; color: var(--muted); }

.interface { padding-top: 0; }
.interface-card { padding: 64px; border-radius: 36px; background: linear-gradient(135deg, #10231e 0%, #08110f 70%); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 70px; overflow: hidden; position: relative; }
.interface-card::after { content: ""; position: absolute; width: 300px; height: 300px; bottom: -180px; left: 10%; background: var(--green-dark); filter: blur(90px); opacity: .24; }
.interface-copy { position: relative; z-index: 2; }
.interface-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { margin: 10px 0; padding-right: 28px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; right: 0; color: var(--green); }
.hud-preview { position: relative; z-index: 2; min-height: 430px; padding: 24px; direction: rtl; border: 1px solid rgba(102,242,188,.32); border-radius: 24px; background: rgba(0, 18, 12, .72); color: #a2ffd7; box-shadow: inset 0 0 60px rgba(102,242,188,.06), 0 40px 90px rgba(0,0,0,.3); font-family: "IBM Plex Sans Arabic", sans-serif; }
.hud-top { display: flex; justify-content: space-between; direction: ltr; font-family: Manrope, sans-serif; font-size: .75rem; opacity: .72; }
.hud-message { width: 88%; margin-top: 28px; padding: 14px 16px; border: 1px solid rgba(102,242,188,.2); border-radius: 14px; line-height: 1.6; }
.hud-message.user { margin-right: auto; background: rgba(102,242,188,.08); }
.hud-message.ai { margin-left: auto; }
.hud-keyboard { margin-top: 34px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; direction: rtl; }
.hud-keyboard span { aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(102,242,188,.18); border-radius: 7px; font-size: .85rem; }
.hud-keyboard span.active { border-color: var(--green); background: rgba(102,242,188,.18); box-shadow: 0 0 16px rgba(102,242,188,.26); }
.hud-preview > p { margin: 22px 0 0; text-align: center; font-size: .77rem; opacity: .65; }

.styles img { width: 100%; max-height: 690px; object-fit: cover; border-radius: 32px; border: 1px solid var(--line); }
.image-note { margin: 14px 4px 0; color: var(--muted); font-size: .83rem; }
.about { padding-top: 30px; display: grid; grid-template-columns: .36fr 1fr; gap: 70px; border-top: 1px solid var(--line); }
.about > div { max-width: 820px; }
.about p:last-child { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.models { padding-top: 50px; }
.model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.model-card { padding: 38px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.model-card.featured { background: linear-gradient(145deg, rgba(24,78,61,.72), var(--panel) 54%); border-color: rgba(102,242,188,.3); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.model-shot { height: 270px; margin: -38px -38px 28px; position: relative; overflow: hidden; border-radius: 27px 27px 18px 18px; background: #06100e; border-bottom: 1px solid var(--line); }
.model-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.model-shot::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(to top, rgba(3,8,7,.72), transparent); pointer-events: none; }
.model-shot figcaption { position: absolute; z-index: 1; right: 18px; bottom: 14px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(3,8,7,.62); backdrop-filter: blur(8px); color: #dceae5; font-family: Manrope, "IBM Plex Sans Arabic", sans-serif; font-size: .75rem; }
.model-label { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: var(--green); color: #03110c; font-size: .78rem; font-weight: 700; }
.model-label.secondary { background: var(--green-soft); color: var(--green); border: 1px solid rgba(102,242,188,.24); }
.model-platform { margin: 18px 0 6px; color: var(--muted); font-size: .78rem; }
.model-card h3 { margin-bottom: 12px; font-family: Manrope, sans-serif; direction: ltr; text-align: right; font-size: 2rem; }
.model-description { min-height: 84px; color: var(--muted); }
.model-card ul { list-style: none; margin: 24px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.model-card li { padding: 6px 24px 6px 0; position: relative; }
.model-card li::before { content: ""; width: 7px; height: 7px; position: absolute; right: 0; top: 16px; border-radius: 50%; background: var(--green); }
.price { margin: 28px 0 22px; display: flex; align-items: baseline; justify-content: space-between; }
.price span { font-family: Manrope, sans-serif; font-size: 2.8rem; font-weight: 700; direction: ltr; }
.price small { color: var(--muted); }
.model-disclaimer { margin: 18px 4px 0; color: var(--muted); font-size: .83rem; }

.privacy { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: start; }
.privacy-intro { position: sticky; top: 30px; }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.privacy-grid article { min-height: 230px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.privacy-grid span { color: var(--green); font-family: Manrope, sans-serif; font-size: .78rem; }
.privacy-grid h3 { margin-top: auto; margin-bottom: 8px; font-size: 1.35rem; }
.privacy-grid p { margin-bottom: 0; color: var(--muted); }
.language-band { padding: 92px 24px; text-align: center; background: var(--green); color: #05110d; }
.language-band .eyebrow { color: #125b42; }
.language-band h2 { margin-bottom: 15px; font-family: Manrope, "IBM Plex Sans Arabic", sans-serif; font-size: clamp(1.7rem, 4vw, 3.8rem); }
.language-band p:last-child { max-width: 650px; margin: 0 auto; opacity: .72; }
.final-cta { min-height: 500px; text-align: center; display: grid; place-items: center; align-content: center; }
.final-cta h2 { max-width: 800px; }

footer { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding: 42px 0; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
footer p { margin: 0; }
.footer-brand { color: var(--ink); }

dialog { width: min(calc(100% - 28px), 560px); max-height: calc(100vh - 32px); padding: 34px; border: 1px solid rgba(102,242,188,.28); border-radius: 28px; background: #0a1714; color: var(--ink); box-shadow: 0 40px 130px rgba(0,0,0,.72); }
.checkout { width: min(calc(100% - 28px), 980px); overflow-y: auto; }
dialog::backdrop { background: rgba(0, 6, 4, .78); backdrop-filter: blur(8px); }
.dialog-close { width: 38px; height: 38px; position: absolute; top: 18px; left: 18px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.6rem; cursor: pointer; }
.demo-stage { min-height: 280px; margin: 24px 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 20px; background: #050c0a; overflow: hidden; }
.scan-frame { width: 78%; aspect-ratio: 1.45; display: grid; place-items: center; position: relative; border: 1px dashed rgba(102,242,188,.38); color: var(--green); text-align: center; }
.scan-frame span { width: 80%; height: 1px; position: absolute; top: 20%; background: var(--green); box-shadow: 0 0 18px var(--green); animation: scan 2.2s ease-in-out infinite; }
@keyframes scan { 50% { top: 80%; } }
.simulation-badge { margin: -6px 0 22px; padding: 8px 12px; border: 1px solid rgba(255,205,102,.28); border-radius: 10px; background: rgba(255,205,102,.08); color: #ffd77f; text-align: center; font-size: .82rem; }
.choice-intro { margin: -8px 0 24px; color: var(--muted); }
.product-slider { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; direction: ltr; }
.checkout-product { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #0c1c18; direction: rtl; transition: border-color .2s, transform .2s; }
.checkout-product:hover { border-color: rgba(102,242,188,.34); }
.checkout-product figure { height: 230px; margin: 0; position: relative; overflow: hidden; background: #040a08; }
.checkout-product figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgba(3,8,7,.76), transparent); }
.checkout-product figure img { width: 100%; height: 100%; object-fit: cover; }
.checkout-product figcaption { position: absolute; z-index: 1; right: 15px; bottom: 13px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(3,8,7,.7); color: #e3efeb; font-family: Manrope, "IBM Plex Sans Arabic", sans-serif; font-size: .74rem; }
.checkout-product-body { padding: 25px; }
.choice-tag { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: var(--green); color: #03110c; font-weight: 700; font-size: .78rem; }
.choice-tag.secondary { border: 1px solid rgba(102,242,188,.24); background: var(--green-soft); color: var(--green); }
.choice-platform { margin: 16px 0 4px; color: var(--muted); font-size: .78rem; }
.checkout-product h3 { margin-bottom: 8px; font-family: Manrope, sans-serif; direction: ltr; text-align: right; font-size: 1.7rem; }
.choice-description { min-height: 58px; margin-bottom: 18px; color: var(--muted); }
.checkout-product ul { margin: 0 0 20px; padding: 10px 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.checkout-product li { padding: 8px 0; display: flex; justify-content: space-between; gap: 18px; }
.checkout-product li span { color: var(--muted); }
.checkout-product li strong { font-weight: 600; }
.choice-price { margin: 6px 0 18px; display: flex; align-items: baseline; justify-content: space-between; }
.choice-price small { color: var(--muted); }
.choice-price strong { font-family: Manrope, sans-serif; font-size: 2.6rem; direction: ltr; }
.slider-controls { display: none; margin: 16px 0 0; align-items: center; justify-content: center; gap: 8px; }
.slider-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #446159; cursor: pointer; }
.slider-dot.active { width: 24px; border-radius: 999px; background: var(--green); }
.slider-controls span { margin-right: 8px; color: var(--muted); font-size: .78rem; }
.back-to-products { margin: 0 0 18px; padding: 0; border: 0; background: transparent; color: var(--green); cursor: pointer; }
.order-summary { margin: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.order-summary div { padding: 13px 0; display: flex; justify-content: space-between; gap: 20px; }
.order-summary span { color: var(--muted); }
.checkout label { display: block; margin-bottom: 8px; font-weight: 600; }
.checkout select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel-2); color: var(--ink); }
.fake-payments { margin: 20px 0; display: flex; gap: 8px; direction: ltr; }
.fake-payments span { flex: 1; padding: 10px 7px; border: 1px solid var(--line); border-radius: 9px; text-align: center; color: var(--muted); font-family: Manrope, sans-serif; font-size: .76rem; font-weight: 700; }
.simulation-note { color: var(--muted); font-size: .82rem; }
.success-state { padding: 20px 0 4px; text-align: center; }
.success-icon { width: 66px; height: 66px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #03110c; font-size: 2rem; font-weight: 700; }
.mock-order { margin: 24px 0; padding: 14px; border-radius: 12px; background: var(--panel-2); color: var(--muted); }
.mock-order strong { display: block; color: var(--ink); font-family: Manrope, sans-serif; direction: ltr; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { min-height: auto; padding: 70px 0; grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { min-height: 430px; }
  .hero-visual img { height: 430px; }
  .experience-grid, .interface-card, .privacy, .about { grid-template-columns: 1fr; }
  .interface-card { padding: 40px 28px; }
  .privacy-intro { position: static; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  .site-header { height: 66px; padding: 0 13px; }
  .header-cta { padding: 8px 14px; font-size: .86rem; }
  .language-picker { margin-inline-start: auto; }
  .language-toggle { width: 38px; height: 34px; }
  .brand { font-size: .92rem; }
  .brand-mark { width: 29px; height: 20px; }
  .hero { padding: 48px 0 64px; gap: 34px; }
  h1 { font-size: 3.15rem; }
  .hero-lede { font-size: 1.05rem; }
  .hero-visual { min-height: 340px; }
  .hero-visual img { height: 340px; border-radius: 24px; }
  .hero-visual figcaption { right: 12px; left: 12px; bottom: 12px; text-align: center; }
  .hero-stats { gap: 13px; }
  .hero-stats div { padding-left: 13px; }
  .hero-stats dt { font-size: 1rem; }
  .hero-stats dd { font-size: .72rem; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .section { padding: 80px 0; }
  .document-visual img { min-height: 390px; }
  .interface-card { padding: 34px 20px; border-radius: 26px; }
  .hud-preview { min-height: 390px; padding: 18px; }
  .hud-keyboard { grid-template-columns: repeat(4, 1fr); }
  .model-grid, .privacy-grid { grid-template-columns: 1fr; }
  .model-card { padding: 28px 22px; }
  .model-shot { height: 225px; margin: -28px -22px 22px; border-radius: 27px 27px 16px 16px; }
  .model-shot img { object-position: center; }
  .model-description { min-height: auto; }
  .styles img { min-height: 380px; object-fit: cover; }
  dialog { padding: 28px 20px; }
  .checkout { width: calc(100% - 18px); max-height: calc(100vh - 18px); padding: 22px 16px; border-radius: 24px; }
  .checkout .dialog-close { position: sticky; z-index: 10; top: 0; float: left; margin: -4px 0 -38px; background: rgba(10,23,20,.9); backdrop-filter: blur(8px); }
  .checkout .simulation-badge { margin: 0 48px 18px 0; }
  .checkout h2 { font-size: 2.25rem; }
  .choice-intro { font-size: .94rem; }
  .product-slider { display: flex; gap: 12px; margin: 0 -16px; padding: 0 16px 10px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .product-slider::-webkit-scrollbar { display: none; }
  .checkout-product { flex: 0 0 94%; scroll-snap-align: center; scroll-snap-stop: always; }
  .checkout-product figure { height: 225px; }
  .checkout-product-body { padding: 22px; }
  .choice-description { min-height: auto; }
  .slider-controls { display: flex; }
}

[dir="ltr"] .hero-copy, [dir="ltr"] .hero-visual, [dir="ltr"] .steps, [dir="ltr"] .interface-card, [dir="ltr"] .checkout-product { direction: ltr; }
[dir="ltr"] .model-card h3, [dir="ltr"] .checkout-product h3 { text-align: left; }
[dir="ltr"] .model-card li { padding: 6px 0 6px 24px; }
[dir="ltr"] .model-card li::before { left: 0; right: auto; }
[dir="ltr"] .check-list li { padding-left: 28px; padding-right: 0; }
[dir="ltr"] .check-list li::before { left: 0; right: auto; }
[dir="ltr"] .eyebrow > span { margin-right: 8px; margin-left: 0; }
[dir="ltr"] .hero-stats div { padding-right: 30px; padding-left: 0; border-right: 1px solid var(--line); border-left: 0; }
[dir="ltr"] .hero-stats div:last-child { padding-right: 0; border-right: 0; }
[dir="ltr"] .document-visual figcaption, [dir="ltr"] .model-shot figcaption, [dir="ltr"] .checkout-product figcaption { left: 18px; right: auto; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
