:root {
  --bg: #04070f;
  --bg-elev: #0b1325;
  --card: rgba(12, 23, 45, 0.72);
  --heading: #9ec8d8;
  --text: #7a9eb2;
  --muted: #628599;
  --cyan: #00f0e8;
  --blue: #0a78ff;
  --grad-start: #2ee8c0;
  --grad-end: #0a78ff;
  --ok: #34f5c5;
  --warn: #ffd45a;
  --border: rgba(0, 200, 240, 0.22);
  --lilac-glow-1: #b388ff;
  --lilac-glow-2: #c77dff;
  --lilac-glow-3: #9d4edd;
  --accent: #b388ff;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.nav-open {
  overflow: hidden;
}

html {
  font-size: 106.25%;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 10% 10%, #0d1d3a, var(--bg) 36%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

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

.container {
  width: min(1320px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding-inline: clamp(1rem, 2.5vw, 2rem);
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -44px;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  z-index: 999;
}

.skip-link:focus-visible {
  top: 8px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
  background: rgba(4, 7, 15, 0.7);
  backdrop-filter: blur(10px);
  border-color: rgba(83, 131, 255, 0.22);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
}

.brand img {
  width: auto;
  height: 42px;
  flex-shrink: 0;
}

.brand span {
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  color: var(--grad-start);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  appearance: none;
  border: 1px solid rgba(0, 224, 232, 0.28);
  background: rgba(7, 20, 44, 0.72);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-toggle:hover,
.lang-option:hover {
  color: var(--cyan);
  border-color: rgba(0, 240, 232, 0.45);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  min-width: 4.5rem;
  background: rgba(7, 16, 36, 0.96);
  border: 1px solid rgba(0, 224, 232, 0.28);
  border-radius: 10px;
  padding: 0.35rem;
  display: none;
  gap: 0.2rem;
  z-index: 40;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.lang-switcher.is-open .lang-menu {
  display: grid;
}

.lang-option {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  text-align: center;
}

.lang-option.is-active,
.lang-option[aria-pressed="true"] {
  color: var(--cyan);
  background: rgba(0, 240, 232, 0.1);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(0, 224, 232, 0.35);
  background: rgba(7, 20, 44, 0.85);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(2, 8, 17, 0.72);
  backdrop-filter: blur(4px);
}

.nav-drawer {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  z-index: 50;
  width: min(320px, 88vw);
  height: 100%;
  background: rgba(7, 16, 36, 0.98);
  border-inline-start: 1px solid rgba(0, 224, 232, 0.28);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
  padding: 1rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 224, 232, 0.18);
}

.nav-drawer-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  color: var(--grad-start);
}

.nav-drawer-close {
  appearance: none;
  border: 1px solid rgba(0, 224, 232, 0.3);
  background: transparent;
  color: var(--cyan);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer-links a {
  display: block;
  padding: 0.75rem 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 1.05rem;
  border-radius: 8px;
}

.nav-drawer-links a:hover,
.nav-drawer-links a:focus-visible {
  color: var(--cyan);
  background: rgba(0, 240, 232, 0.08);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a,
.footer a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--cyan);
}

.btn {
  appearance: none;
  border: 1px solid rgba(0, 224, 232, 0.45);
  background: linear-gradient(135deg, rgba(10, 120, 255, 0.96), rgba(0, 240, 232, 0.9));
  color: #03111d;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-sm {
  padding: 0.52rem 0.95rem;
  font-size: 0.92rem;
}

.btn:hover,
.card:hover,
.metric-card:hover,
.panel:hover,
.node:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 240, 232, 0.35), 0 10px 25px rgba(10, 120, 255, 0.32);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.footer a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.btn-ghost {
  background: rgba(0, 240, 232, 0.08);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 735px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: #020812;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg picture,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: 67% center;
  transform: none;
  filter: saturate(1.04) contrast(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(2, 8, 18, .96) 0%,
      rgba(2, 8, 18, .82) 25%,
      rgba(2, 8, 18, .44) 48%,
      rgba(2, 8, 18, .10) 70%,
      rgba(2, 8, 18, .12) 100%),
    linear-gradient(180deg,
      rgba(1, 7, 15, .28) 0%,
      transparent 26%,
      rgba(1, 7, 15, .10) 72%,
      rgba(1, 7, 15, .70) 100%);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 58vw);
  margin: 0 0 0 clamp(4rem, 10vw, 12rem);
  padding: clamp(2.2rem, 4vh, 3rem) 0 .5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
}

.hero-content .badge {
  margin: 0 0 1.35rem;
  padding: .48rem .95rem;
  border: 1px solid rgba(0, 190, 255, .52);
  background: rgba(2, 14, 30, .72);
  color: #a8c1d2;
  font-size: .82rem;
  letter-spacing: .045em;
  box-shadow: 0 0 24px rgba(0, 132, 255, .10);
}

.hero-content h1 {
  margin: 0 0 .75rem;
  max-width: 100%;
  font-size: clamp(3.35rem, 5.5vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.035em;
  color: #fff;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .35);
}

.hero-content h1 span {
  color: #00a9ff;
  background: linear-gradient(90deg, #008fff, #00d9e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-kicker {
  margin: 0 0 1rem;
  max-width: 680px;
  font-size: clamp(2rem, 3.35vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #dce8f1 !important;
  background: none !important;
  -webkit-text-fill-color: #dce8f1 !important;
  font-weight: 700;
}

.hero-lead {
  max-width: 690px !important;
  margin: 0 0 1rem !important;
  color: #b8cbd7 !important;
  font-size: clamp(1rem, 1.3vw, 1.18rem) !important;
  line-height: 1.55 !important;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: .9rem;
  width: auto;
  margin: 0 0 .65rem;
}

.hero-actions .btn {
  min-height: 56px;
  padding-inline: 1.55rem;
  border-radius: 17px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .24);
}

.hero-actions .btn:not(.btn-secondary) {
  background: linear-gradient(100deg, #087cff, #08d4dd);
  border-color: transparent;
}

.hero-actions .btn-secondary {
  background: rgba(3, 16, 32, .46);
  border-color: rgba(0, 169, 255, .62);
  color: #eef7fb;
  backdrop-filter: blur(8px);
}

.hero-note {
  margin: 0 0 1.15rem !important;
  color: #89a4b7 !important;
  font-size: .92rem !important;
}

/* Fleet Status: static blue-violet perimeter + travelling light segment. */
.hero-stats::before {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(115deg, #00cfff 0%, #2a7dff 34%, #8f72ff 62%, #d47cff 82%, #00cfff 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 14px rgba(0, 196, 255, .58), 0 0 28px rgba(139, 104, 255, .42);
}

.hero-stats::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 4px;
  left: 14px;
  top: -3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 208, 255, .05), #36d8ff 32%, #9d79ff 72%, #e1a2ff 100%);
  box-shadow: 0 0 6px #43d9ff, 0 0 14px rgba(145, 101, 255, .95), 0 0 26px rgba(196, 111, 255, .62);
  pointer-events: none;
  z-index: 5;
  animation: hero-border-travel 6.2s linear infinite;
}

@keyframes hero-border-travel {
  0%, 23% { left: 14px; top: -3px; width: 76px; height: 4px; }
  24%, 49% { left: calc(100% - 3px); top: 14px; width: 4px; height: 76px; }
  50%, 74% { left: calc(100% - 79px); top: calc(100% - 3px); width: 76px; height: 4px; }
  75%, 99% { left: -3px; top: calc(100% - 79px); width: 4px; height: 76px; }
  100% { left: 14px; top: -3px; width: 76px; height: 4px; }
}

.hero-stats > * { position: relative; z-index: 4; }

.hero-stats {
  position: relative;
  z-index: 2;
  width: min(475px, 100%);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: .15rem 0 0;
  padding: .9rem 1.25rem .65rem;
  border: 1px solid rgba(83, 169, 255, .34);
  border-radius: 16px;
  background: rgba(3, 13, 27, .86);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 10px rgba(0, 180, 255, .52), 0 0 26px rgba(137, 103, 255, .28), inset 0 0 22px rgba(0, 175, 255, .10);
  overflow: visible;
}

.hero-stats__title { position: relative; z-index: 2; width: 100%; margin: 0 0 .42rem; color: #00d9ff; font-size: .94rem; font-weight: 700; }
.hero-stats__title span { color: #89a7bb; font-weight: 500; }
.hero-stat { position: relative; z-index: 2; width: 100%; min-width: 0; display: grid; grid-template-columns: 12px minmax(0,1fr) auto; align-items: center; gap: .55rem; padding: .39rem 0; text-align: left; border-bottom: 1px solid rgba(112,160,196,.16); }
.hero-stat:last-child { border-bottom: 0; }
.hero-stat span { margin: 0; font-size: .84rem; color: #d6e1e8; }
.hero-stat strong { font-size: .88rem; color: #edf5fa; font-weight: 700; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; display: block; box-shadow: 0 0 10px currentColor; }
.status-ok { color: #23ef80; background: #23ef80; }
.status-watch { color: #13a8ff; background: #13a8ff; }
.status-lazarus { color: #ffbf2e; background: #ffbf2e; }
.status-down { color: #ff4b55; background: #ff4b55; }
.status-lab { color: #dbe4eb; background: #dbe4eb; }

/* Five-item feature strip from the approved reference. */
/* Approved LC-OS feature strip — fixed five-column desktop geometry. */
.hero-features {
  position: relative;
  z-index: 4;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid rgba(0, 190, 255, .18);
  background: rgba(2, 10, 23, .94);
  backdrop-filter: blur(8px);
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  min-height: 92px;
  max-height: 108px;
  overflow: hidden;
}

.hero-feature {
  min-width: 0;
  min-height: 70px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: .72rem;
  padding: .15rem clamp(.55rem, 1.15vw, 1.1rem);
  border-right: 1px solid rgba(94, 145, 184, .16);
}

.hero-feature:last-child { border-right: 0; }

.hero-feature__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(0, 172, 255, .82);
  border-radius: 50%;
  color: #74dfff;
  background: radial-gradient(circle at 50% 45%, rgba(45, 194, 255, .14), rgba(145, 103, 255, .08) 58%, transparent 76%);
  box-shadow: inset 0 0 14px rgba(0, 125, 255, .12), 0 0 12px rgba(111, 92, 255, .16);
}

.hero-feature__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature strong {
  display: block;
  min-width: 0;
  color: #edf5fa;
  font-size: clamp(.78rem, .72vw, .9rem);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-feature span:not(.hero-feature__icon) {
  display: block;
  margin-top: .24rem;
  color: #87a2b6;
  font-size: clamp(.66rem, .61vw, .76rem);
  line-height: 1.25;
  white-space: nowrap;
}

/* Never let a browser/retina zoom turn the five-item strip into five giant cards. */
@media (min-width: 760px) {
  .hero-features { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 980px) and (min-width: 760px) {
  .hero-features {
    padding-inline: .65rem;
    min-height: 86px;
    max-height: 100px;
  }
  .hero-feature {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: .45rem;
    padding-inline: .45rem;
  }
  .hero-feature__icon { width: 38px; height: 38px; }
  .hero-feature__icon svg { width: 19px; height: 19px; }
  .hero-feature strong { font-size: .72rem; }
  .hero-feature span:not(.hero-feature__icon) { font-size: .61rem; }
}

@media (max-width: 759px) {
  .hero-features {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    padding: .7rem 1rem;
  }
  .hero-feature {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 58px;
    padding: .45rem .25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(94, 145, 184, .16);
  }
  .hero-feature:last-child { border-bottom: 0; }
  .hero-feature__icon { width: 42px; height: 42px; }
  .hero-feature strong { font-size: .82rem; white-space: normal; }
  .hero-feature span:not(.hero-feature__icon) { font-size: .68rem; white-space: normal; }
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(10, 22, 42, 0.72), rgba(4, 9, 17, 0.9));
}

.section-lead {
  max-width: 56rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.cta-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1rem;
  width: 100%;
}

#demo .cta-row {
  margin-top: 1.5rem;
}

#demo .cta-row .btn {
  flex: 0 1 auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.demo-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
  width: 100%;
}

.demo-actions-primary,
.demo-actions-ops {
  display: grid;
  gap: 1rem 1.25rem;
  width: 100%;
}

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

.demo-actions-ops {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 1.15rem;
  border-top: 1px solid rgba(0, 240, 232, 0.14);
}

.demo-actions-primary .btn,
.demo-actions-ops .btn {
  width: 100%;
  min-height: 2.75rem;
  white-space: normal;
  text-align: center;
}

.demo-actions-ops .btn {
  min-height: 2.35rem;
}

.card-grid,
.metrics-grid,
.ops-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.use-case-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.ops-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.card,
.metric-card,
.panel,
.node,
.lead-form {
  position: relative;
  isolation: isolate;
  background: var(--card);
  border: 1px solid rgba(157, 78, 221, 0.2);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card p,
.panel li,
.security-list li {
  font-size: 1.02rem;
  line-height: 1.65;
}

.card::before,
.metric-card::before,
.panel::before,
.node::before,
.lead-form::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    transparent 300deg,
    var(--lilac-glow-2) 320deg,
    var(--lilac-glow-1) 340deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  opacity: 0.48;
  pointer-events: none;
  animation: border-light-travel 3.5s linear infinite;
}

@keyframes border-light-travel {
  to {
    --angle: 360deg;
  }
}

@supports not (background: conic-gradient(from var(--angle), red 0deg)) {
  .card::before,
  .metric-card::before,
  .panel::before,
  .node::before,
  .lead-form::before {
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 300deg,
      var(--lilac-glow-2) 320deg,
      var(--lilac-glow-1) 340deg,
      transparent 360deg
    );
    animation-name: border-light-travel-rotate;
  }
}

@keyframes border-light-travel-rotate {
  to {
    transform: rotate(360deg);
  }
}

.card:hover::before,
.metric-card:hover::before,
.panel:hover::before,
.node:hover::before,
.lead-form:hover::before {
  opacity: 0.64;
}

.node {
  z-index: 1;
}

.metric-card strong {
  display: block;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  margin-top: 0.45rem;
}

.metric-card small {
  color: var(--muted);
}

.panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(147, 186, 255, 0.2);
  padding: 0.55rem 0;
}

.panel li:last-child {
  border-bottom: 0;
}

.ok {
  color: var(--ok);
}

.warn {
  color: var(--warn);
}

.checklist li {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
}

.panel .checklist li {
  border-bottom: 0;
  padding: 0.35rem 0;
}

.status-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 90, 0.3);
  color: var(--warn);
  padding: 0.3rem 0.7rem;
}

.arch-diagram-wrap {
  margin-top: 1.75rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 18px;
  border: 1px solid rgba(157, 78, 221, 0.22);
  background: rgba(7, 20, 44, 0.45);
}

.arch-diagram {
  width: 100%;
  height: auto;
  min-height: 220px;
  display: block;
}

#architecture .section-lead {
  margin-bottom: 0.25rem;
}

.arch-line {
  stroke: url(#arch-line-grad);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  animation: arch-pulse 2.8s ease-in-out infinite;
}

.arch-line-diag {
  stroke-dasharray: 4 8;
}

@keyframes arch-pulse {
  0%,
  100% {
    stroke-opacity: 0.45;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-opacity: 1;
    stroke-dashoffset: 16;
  }
}

.arch-node-rect {
  fill: rgba(12, 23, 45, 0.92);
  stroke: rgba(0, 224, 232, 0.35);
  stroke-width: 1.5;
  transition: stroke 0.2s ease, filter 0.2s ease;
}

.arch-node-core .arch-node-rect {
  stroke: rgba(179, 136, 255, 0.55);
  filter: drop-shadow(0 0 12px rgba(179, 136, 255, 0.35));
}

.arch-node-label {
  fill: var(--heading);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}

.arch-node-group {
  cursor: default;
  outline: none;
}

.arch-node-group:hover .arch-node-rect,
.arch-node-group:focus-visible .arch-node-rect {
  stroke: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(0, 240, 232, 0.4));
}

.arch-node-group:hover .arch-node-label,
.arch-node-group:focus-visible .arch-node-label {
  fill: var(--cyan);
}

.site-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 60;
  max-width: min(420px, 92vw);
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 224, 232, 0.4);
  background: rgba(7, 20, 44, 0.96);
  color: var(--text);
  font-size: 0.92rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.site-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.site-toast-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
  flex-wrap: wrap;
}

.site-toast-actions .btn {
  font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
}

.security-list {
  margin: 0;
  padding-left: 1.1rem;
}

.security-list li {
  margin: 0.45rem 0;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.security-image {
  width: 100%;
  max-height: min(420px, 48vh);
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(7, 20, 44, 0.45);
}

.cta-final {
  text-align: start;
}

#contact > .container > p:not(.section-lead) {
  max-width: 42rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-form-lead {
  margin-top: 1.25rem;
  max-width: 48rem;
  margin-left: 0;
  margin-right: 0;
}

.lead-form {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  text-align: left;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(157, 78, 221, 0.28);
  background: rgba(7, 20, 44, 0.55);
  color: var(--text);
  font: inherit;
}

.lead-form input:focus-visible,
.lead-form select:focus-visible {
  outline: 2px solid var(--lilac-glow-1);
  outline-offset: 2px;
}

.lead-form .btn {
  width: 100%;
}

.form-feedback {
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--lilac-glow-1);
}

.form-feedback.is-error {
  color: #ff8a8a;
}

.footer-meta {
  font-size: 0.875rem;
  margin: 0.35rem 0 0;
  line-height: 1.55;
  opacity: 0.9;
}

.footer-owner,
.footer-trademarks {
  max-width: 36rem;
}

.footer-copyright {
  width: 100%;
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer {
  border-top: 1px solid rgba(109, 166, 255, 0.2);
  padding: 1.5rem 0 2rem;
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-brand > p:first-child {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer-brand strong {
  font-size: inherit;
  font-weight: 700;
  color: var(--heading);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
}

.footer nav a {
  font-size: 0.875rem;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (min-width: 981px) {
  .hero .hero-content {
    max-width: 760px;
    margin-left: clamp(4rem, 10vw, 12rem);
    margin-right: 0;
  }

  .hero-content h1 {
    max-width: 18em;
  }

  .hero-content > p:not(.badge) {
    max-width: 38rem;
    font-size: 1.12rem;
    line-height: 1.7;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-desktop {
    display: none;
  }

  .hero .hero-content {
    text-align: center;
    align-items: center;
    max-width: none;
    margin-inline: auto;
  }

  /* Stats al pie solapaban terminal/CTAs en tablet */
  .hero-stats {
    display: none;
  }

  .hero-terminal {
    margin-inline: auto;
  }

  .hero-actions,
  .cta-row {
    justify-content: center;
  }

  .cta-final {
    text-align: center;
  }

  .contact-form-lead,
  .lead-form {
    margin-inline: auto;
  }

  h1 {
    margin-inline: auto;
  }

  .hero-content h1 {
    max-width: none;
  }

  .card-grid,
  .metrics-grid,
  .use-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .ops-grid {
    grid-template-columns: 1fr;
  }

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

  .demo-actions-ops .btn:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .lang-toggle > span:not([aria-hidden="true"]) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  body:has(.pricing-hero) .nav-actions .btn-secondary {
    display: none;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-actions .btn-sm {
    padding: 0.45rem 0.72rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4rem 0;
  }
  .card-grid,
  .metrics-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .cta-row {
    align-items: stretch;
  }
  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .demo-actions-primary,
  .demo-actions-ops {
    grid-template-columns: 1fr;
  }

  .demo-actions-ops .btn:last-child {
    grid-column: auto;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

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

html[dir="rtl"] .nav-inner {
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

html[dir="rtl"] .nav-actions {
  flex-wrap: wrap;
  gap: 0.5rem;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.75rem;
}

html[dir="rtl"] .nav-links a,
html[dir="rtl"] .lang-toggle,
html[dir="rtl"] .btn {
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  white-space: normal;
  text-align: center;
}

html[dir="rtl"] h1 {
  font-size: clamp(1.35rem, 5vw, 2.15rem);
  line-height: 1.35;
}

html[dir="rtl"] .section-lead,
html[dir="rtl"] .pricing-note {
  font-size: clamp(0.88rem, 2.8vw, 1rem);
}

html[dir="rtl"] .pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(17.5rem, 100%), 1fr));
}

html[dir="rtl"] .pricing-card {
  min-width: 0;
}

html[dir="rtl"] .pricing-features li {
  word-break: break-word;
}

html[dir="rtl"] .checklist li {
  text-align: right;
}

html[dir="rtl"] .nav-drawer {
  transform: translateX(-100%);
}

html[dir="rtl"] .nav-drawer.is-open {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero-terminal-cursor {
    display: none;
  }

  .nav-drawer {
    transition: none;
  }

  .card::before,
  .metric-card::before,
  .panel::before,
  .node::before,
  .lead-form::before {
    transform: none;
    opacity: 0.32;
    background: linear-gradient(
      135deg,
      rgba(179, 136, 255, 0.45),
      rgba(157, 78, 221, 0.28)
    );
  }
}

/* —— Pricing page —— */
.pricing-hero {
  padding-top: clamp(3rem, 8vw, 5rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 2rem;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  min-height: 11.5rem;
}

.pricing-card-featured {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0, 240, 232, 0.14);
  background: linear-gradient(
    165deg,
    rgba(0, 240, 232, 0.06) 0%,
    var(--card) 42%
  );
}

.pricing-card h2,
.pricing-card h3 {
  margin: 0;
  color: var(--heading);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.25rem;
}


.pricing-tier-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(0, 240, 232, 0.03);
  border: 1px solid rgba(0, 240, 232, 0.15);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  margin-bottom: 0.4rem;
  width: 100%;
  box-sizing: border-box;
}

.pricing-phase-row {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-phase-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.phase-badge {
  color: var(--text-muted, #8a99ad);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

.phase-price {
  color: var(--cyan, #00f0e8);
  font-weight: 700;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.25;
  word-break: normal;
  white-space: normal;
}

.pricing-price {
  margin: 0;
  line-height: 1.25;
  min-height: 2.75rem;
}

.price-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.28em;
  white-space: normal;
  max-width: 100%;
}

.price-row-label {
  align-items: flex-start;
}

.price-row-label .pricing-period {
  font-size: clamp(0.78rem, 2.1vw, 0.88rem);
  line-height: 1.3;
  white-space: normal;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
}

.price-row-label .pricing-value {
  font-size: clamp(1.45rem, 4vw, 1.85rem);
}

.price-row-stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  white-space: normal;
}

.price-row-stacked .pricing-period {
  white-space: normal;
}

.pricing-full-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  text-align: center;
}

.pricing-full-link .btn {
  flex: 0 1 auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.pricing-amount {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.28em;
  white-space: nowrap;
  max-width: 100%;
}

.pricing-amount-label .pricing-value {
  font-size: clamp(1.45rem, 4vw, 1.85rem);
}

.pricing-prefix {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}

.pricing-value {
  font-size: clamp(1.45rem, 4.2vw, 2rem);
  font-weight: 700;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  flex-shrink: 0;
}

.pricing-currency {
  font-size: 0.82em;
  font-weight: 600;
  color: var(--cyan);
  line-height: 1;
  flex-shrink: 0;
}

.pricing-period {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
  white-space: normal;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
}

.pricing-range {
  margin: -0.5rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
}

.pricing-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Legal pages */
.legal-page {
  padding: 2.5rem 0 3.5rem;
  min-height: 60vh;
}

.legal-back {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}

.legal-back a {
  color: var(--cyan);
  text-decoration: none;
}

.legal-back a:hover {
  text-decoration: underline;
}

.legal-content {
  max-width: 46rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 0 40px rgba(0, 240, 232, 0.06);
}

.legal-header h1 {
  margin: 0 0 0.5rem;
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--heading);
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-meta {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.legal-notice {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(179, 136, 255, 0.08);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.legal-section {
  margin-bottom: 1.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
}

.legal-section p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.footer nav a[aria-current="page"] {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Hero background video (fallback a imagen si no existe el fichero) —— */
.hero-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* —— Banda de métricas operativas (estilo terminal) —— */
.ops-band {
  border-block: 1px solid rgba(0, 224, 232, 0.22);
  background: rgba(7, 16, 36, 0.72);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
}

.ops-band__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
}

.ops-band__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}

.ops-band__value {
  font-family: "Space Grotesk", ui-monospace, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

.ops-band__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 640px) {
  .ops-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

/* —— Banda PoC destacada (puerta de entrada) —— */
.poc-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 18px;
  border: 1px solid rgba(0, 240, 232, 0.4);
  background: linear-gradient(
    135deg,
    rgba(0, 240, 232, 0.08) 0%,
    rgba(10, 120, 255, 0.06) 100%
  );
  box-shadow: 0 0 32px rgba(0, 240, 232, 0.1);
}

.poc-band__tag {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grad-start);
}

.poc-band h3 {
  margin: 0 0 0.5rem;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--heading);
}

.poc-band p:not(.poc-band__tag) {
  margin: 0;
  max-width: 52rem;
  color: var(--text);
  line-height: 1.65;
}

.poc-band .btn {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .poc-band {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .poc-band .btn {
    width: 100%;
  }
}

/* ==============================================================================
   V10 · Demo comercial en vídeo (1:39)
   ============================================================================== */
.demo-video-section {
    padding-top: clamp(48px, 6vw, 84px);
}

.demo-video-head {
    max-width: 78ch;
    margin: 0 auto 26px;
    text-align: center;
}

.demo-video-head .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.demo-video-frame {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 232, 0.22);
    background: radial-gradient(circle at 50% 0%, #0d1d3a, #04070f 70%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.demo-video-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #04070f;
}

.demo-video-pending {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(4, 7, 15, 0.74),
        rgba(4, 7, 15, 0.93)
    );
}

.demo-video-pending p {
    max-width: 52ch;
    margin: 0;
    color: var(--text);
}

.demo-video-pending[hidden] {
    display: none !important;
}

.demo-video-note {
    max-width: 80ch;
    margin: 16px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.demo-video-chapters {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 18px 0 0;
}

.demo-video-chapters li {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo,
        monospace;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--text);
    background: rgba(11, 19, 37, 0.72);
    border: 1px solid rgba(0, 240, 232, 0.16);
    border-radius: 999px;
    padding: 8px 14px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .demo-video-frame {
        border-radius: 12px;
    }

    .demo-video-chapters li {
        font-size: 0.72rem;
        padding: 7px 11px;
    }
}

/* LC-OS visual hero: Arabic copy remains readable without changing the global layout. */
html[lang="ar"] .hero-content { direction: rtl; text-align: right; }
html[lang="ar"] .hero-actions { justify-content: flex-start; direction: rtl; }
html[lang="ar"] .hero-stats { direction: rtl; }
html[lang="ar"] .hero-stat { text-align: right; }
html[lang="ar"] .hero-feature { direction: rtl; text-align: right; }
