/* ============================================================
   DeskBeam — Landing Page Styles
   https://deskbeam.net
   ============================================================ */

/* ----- Design Tokens ----- */
:root {
  --bg:        #08091A;
  --surface:   #111827;
  --border:    #1E2A3A;
  --primary:   #00D4FF;
  --secondary: #6366F1;
  --success:   #10B981;
  --danger:    #EF4444;
  --text:      #F1F5F9;
  --muted:     #64748B;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --container:  1200px;
  --nav-h:      72px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Reset ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--border) var(--bg);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--primary);
  color: var(--bg);
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Section Titles ----- */
.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  line-height: 1.4;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
}
.btn--primary:hover {
  background: #33dfff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 212, 255, 0.05);
}

.btn--sm {
  padding: 7px 16px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ----- Badges ----- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge--available {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge--soon {
  background: rgba(100, 116, 139, 0.12);
  color: var(--muted);
  border: 1px solid rgba(100, 116, 139, 0.2);
}

/* ----- Scroll Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.navbar.is-scrolled {
  background: rgba(8, 9, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar__logo-icon {
  flex-shrink: 0;
}

.navbar__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.navbar__logo-accent {
  color: var(--primary);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar__link {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.navbar__link:hover {
  color: var(--text);
}

/* Language switcher */
.navbar__lang {
  position: relative;
}

.navbar__lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.navbar__lang-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.navbar__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar__lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__lang-dropdown li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.navbar__lang-dropdown li a:hover {
  background: rgba(0, 212, 255, 0.08);
  color: var(--text);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.navbar__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 20px 80px;
  overflow: hidden;
}

/* Gradient orbs */
.hero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -10%;
  left: -10%;
  animation: orbPulse1 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -5%;
  right: -5%;
  animation: orbPulse2 10s ease-in-out infinite;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--success);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbPulse3 12s ease-in-out infinite;
  opacity: 0.15;
}

@keyframes orbPulse1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50%      { transform: translate(60px, 40px) scale(1.15); opacity: 0.25; }
}

@keyframes orbPulse2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50%      { transform: translate(-50px, -30px) scale(1.1); opacity: 0.2; }
}

@keyframes orbPulse3 {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.15; }
  50%      { transform: translateX(-50%) scale(1.2); opacity: 0.1; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__note {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.7;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 100px 0;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.08);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card__text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.4), transparent);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
}

.step__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.tech {
  padding: 100px 0;
}

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

.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.tech-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

.tech-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: var(--radius-md);
}

.tech-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.tech-card__text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.3), transparent);
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Make last 2 items center in a 4-col grid */
.platforms__grid .platform-card:nth-child(5),
.platforms__grid .platform-card:nth-child(6) {
  grid-column: span 1;
}

/* Center the last row */
.platforms__grid .platform-card:nth-child(5) {
  grid-column: 2;
}

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.06);
}

.platform-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.platform-card__icon svg {
  opacity: 0.8;
}

.platform-card__name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ============================================================
   ACCOUNT CTA
   ============================================================ */
.account-cta {
  padding: 100px 0;
}

.account-cta__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
}

.account-cta__content {
  flex: 1;
}

.account-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.account-cta__subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 480px;
}

.account-cta__features {
  margin-bottom: 28px;
}

.account-cta__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding: 6px 0;
  color: var(--text);
}

.account-cta__features li svg {
  flex-shrink: 0;
}

.account-cta__visual {
  flex-shrink: 0;
  position: relative;
  width: 200px;
  height: 160px;
}

.account-cta__device {
  position: absolute;
  top: 0;
  left: 0;
}

.account-cta__device--offset {
  top: 30px;
  left: auto;
  right: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  padding: 60px 0;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.stats__item {
  flex: 1;
  text-align: center;
  min-width: 120px;
  padding: 8px 16px;
}

.stats__value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stats__label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stats__sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 100px 0;
}

.final-cta__inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(99, 102, 241, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
}

.final-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.final-cta__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.final-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  max-width: 280px;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__link:hover {
  color: var(--primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.footer__lang-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.82rem;
  padding: 4px 8px;
  cursor: pointer;
}

.footer__lang-select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE — TABLET (768px)
   ============================================================ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platforms__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .platforms__grid .platform-card:nth-child(5) {
    grid-column: auto;
  }
  .account-cta__visual {
    display: none;
  }
  .account-cta__inner {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .container {
    padding: 0 16px;
  }

  /* Navbar mobile */
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease-out);
  }

  .navbar__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar__link {
    font-size: 1.1rem;
  }

  .navbar__lang-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 8px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 60px) 16px 60px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Grids */
  .features__grid,
  .tech__grid,
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platforms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .platforms__grid .platform-card:nth-child(5) {
    grid-column: auto;
  }

  /* Stats */
  .stats__inner {
    flex-direction: column;
    gap: 0;
  }

  .stats__sep {
    width: 60%;
    height: 1px;
    margin: 4px auto;
  }

  .stats__item {
    padding: 12px 16px;
  }

  /* Account CTA */
  .account-cta__inner {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .account-cta__visual {
    display: none;
  }

  /* Final CTA */
  .final-cta__inner {
    padding: 48px 24px;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .final-cta__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer__links {
    flex-direction: column;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .platforms__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 1.8rem;
  }
}

/* ============================================================
   1440px+ — wider container
   ============================================================ */
@media (min-width: 1440px) {
  :root {
    --container: 1280px;
  }
}

/* ============================================================
   RTL SUPPORT
   ============================================================ */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .section__title,
[dir="rtl"] .section__subtitle,
[dir="rtl"] .step,
[dir="rtl"] .tech-card,
[dir="rtl"] .platform-card,
[dir="rtl"] .stats__item,
[dir="rtl"] .final-cta__inner {
  text-align: center;
}

[dir="rtl"] .hero {
  text-align: center;
}

[dir="rtl"] .navbar__lang-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .account-cta__features li {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

[dir="rtl"] .footer__links {
  direction: rtl;
}

[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__orb {
    animation: none !important;
    opacity: 0.2;
  }

  .hero__badge-dot {
    animation: none !important;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  body {
    background: white;
    color: black;
  }

  .navbar,
  .hero__orbs,
  .hero__badge-dot,
  .footer__lang,
  .navbar__toggle {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .hero__title {
    background: none;
    -webkit-text-fill-color: black;
    color: black;
  }

  .card, .tech-card, .platform-card, .stats__inner,
  .final-cta__inner, .account-cta__inner {
    border: 1px solid #ccc;
    background: white;
    box-shadow: none;
  }

  .stats__value {
    background: none;
    -webkit-text-fill-color: black;
    color: black;
  }

  .btn {
    border: 1px solid #333;
    background: transparent !important;
    color: black !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    color: #666;
  }

  .navbar__link[href]::after,
  .footer__link[href]::after {
    content: none;
  }

  .section__title, .hero__title, .final-cta__title,
  .account-cta__title {
    page-break-after: avoid;
  }

  .card, .tech-card, .platform-card, .step {
    page-break-inside: avoid;
  }
}

/* ============================================================
   FOCUS STYLES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}