/* ========================================
   Adami — Premium Dynamic Landing Page
   ======================================== */

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

:root {
  --navy: #0A1628;
  --navy-light: #0F2140;
  --navy-mid: #152A4A;
  --blue: #3B82F6;
  --indigo: #6366F1;
  --teal: #2DD4A8;
  --teal-dark: #1FA882;
  --green: #10B981;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-300: #94A3B8;
  --gray-400: #64748B;
  --gray-500: #475569;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-on-dark: #E2E8F0;
  --text-muted: #8B9DC3;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);
  --gradient: linear-gradient(135deg, #2DD4A8, #3B82F6);
  --gradient-warm: linear-gradient(135deg, #2DD4A8, #6366F1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Gradient text --- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Glass card base --- */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

/* --- Cursor glow --- */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,168,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}
.cursor-glow.is-active { opacity: 1; }

/* --- Progress bar --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--teal);
  color: var(--navy);
  padding: 12px 24px;
}

.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,212,168,0.35);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

.btn--lg { padding: 16px 32px; font-size: 0.95rem; border-radius: var(--radius-md); }
.btn--xl { padding: 20px 44px; font-size: 1.05rem; border-radius: var(--radius-md); }

.btn--glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity var(--transition);
}
.btn--glow:hover::before { opacity: 0.6; }

.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}

.header.is-scrolled {
  background: rgba(10, 22, 40, 0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}

.header__logo-img:hover { opacity: 0.85; }

.footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
  opacity: 0.75;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-list { display: flex; align-items: center; gap: 4px; }

.header__nav-link {
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: all var(--transition);
  transform: translateX(-50%);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--white);
}

.header__nav-link.is-active::after { width: 20px; }

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.header__menu-btn.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__menu-btn.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__menu-btn.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,212,168,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,168,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__glow--1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: rgba(45,212,168,0.08);
  animation: float-slow 12s ease-in-out infinite;
}
.hero__glow--2 {
  bottom: 0;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(59,130,246,0.06);
  animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45,212,168,0.1);
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero__orb--1 { width: 300px; height: 300px; top: 20%; right: 15%; animation-delay: 0s; }
.hero__orb--2 { width: 200px; height: 200px; top: 50%; right: 25%; animation-delay: 1.5s; border-color: rgba(59,130,246,0.08); }
.hero__orb--3 { width: 150px; height: 150px; bottom: 20%; left: 10%; animation-delay: 3s; border-color: rgba(99,102,241,0.06); }

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.15; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(45,212,168,0.08);
  border: 1px solid rgba(45,212,168,0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(45,212,168,0.5);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(45,212,168,0.5); }
  50% { opacity: 0.4; box-shadow: 0 0 4px rgba(45,212,168,0.2); }
}

.hero__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-line { display: block; }
.hero__title-line--gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.hero__tag:hover {
  border-color: rgba(45,212,168,0.2);
  background: rgba(45,212,168,0.05);
  color: var(--teal);
}

.hero__tag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
}

/* Hero Orbital Viz */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.hero__viz {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero__viz-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45,212,168,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__viz-ring--outer {
  width: 360px;
  height: 360px;
  animation: spin-slow 40s linear infinite;
  border-style: dashed;
  border-color: rgba(45,212,168,0.06);
}

.hero__viz-ring--mid {
  width: 260px;
  height: 260px;
  animation: spin-slow 30s linear infinite reverse;
  border-color: rgba(59,130,246,0.08);
}

.hero__viz-ring--inner {
  width: 160px;
  height: 160px;
  animation: spin-slow 20s linear infinite;
  border-color: rgba(99,102,241,0.1);
}

@keyframes spin-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__viz-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid rgba(45,212,168,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 0 40px rgba(45,212,168,0.15);
  overflow: hidden;
}

.hero__viz-logo {
  width: 60px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.hero__viz-node {
  position: absolute;
  z-index: 2;
}

.hero__viz-node-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1.5px solid rgba(45,212,168,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: default;
  position: relative;
}

.hero__viz-node-inner:hover {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(45,212,168,0.3);
  transform: scale(1.15);
}

.hero__viz-node::after {
  content: attr(data-label);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.7;
}

/* Position nodes in a circle */
.hero__viz-node--1 { top: 8px; left: 50%; transform: translateX(-50%); }
.hero__viz-node--2 { top: 25%; right: 12px; }
.hero__viz-node--3 { bottom: 25%; right: 12px; }
.hero__viz-node--4 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.hero__viz-node--5 { bottom: 25%; left: 12px; }
.hero__viz-node--6 { top: 25%; left: 12px; }

.hero__viz-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30% { transform: scaleY(1); opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ========================================
   SECTIONS (shared)
   ======================================== */
.section { padding: 120px 0; position: relative; }

.section--dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

.section__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(45,212,168,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 16px;
}

.section__label::before,
.section__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
  opacity: 0.3;
}

.section__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section--dark .section__title { color: var(--white); }

.section__title--left { text-align: left; }

.section__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.section--dark .section__desc { color: var(--text-muted); }
.section__desc--left { text-align: left; }

/* ========================================
   ECOSYSTEM — Timeline
   ======================================== */
.ecosystem { background: var(--off-white); }

.ecosystem__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ecosystem__timeline-line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  z-index: 0;
}

.ecosystem__timeline-progress {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 0.8s var(--ease-out);
}

.ecosystem__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ecosystem__step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  position: relative;
}

.ecosystem__step.is-visible .ecosystem__step-marker {
  border-color: var(--teal);
  box-shadow: 0 0 0 6px rgba(45,212,168,0.12);
}

.ecosystem__step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gray-300);
  transition: color var(--transition);
}

.ecosystem__step.is-visible .ecosystem__step-num { color: var(--teal); }

.ecosystem__step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  height: 100%;
}

.ecosystem__step-card:hover {
  border-color: rgba(45,212,168,0.3);
  box-shadow: 0 12px 40px rgba(45,212,168,0.08);
  transform: translateY(-6px);
}

.ecosystem__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(45,212,168,0.1), rgba(59,130,246,0.08));
  color: var(--teal);
  margin-bottom: 16px;
}

.ecosystem__step-card h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.ecosystem__step-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ========================================
   VALUE CARDS — 3D Tilt + Glow
   ======================================== */
.value__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.value__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.value__card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: inherit;
  z-index: 0;
}

.value__card:hover .value__card-glow { opacity: 1; }

.value__card-content {
  position: relative;
  z-index: 1;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: border-color var(--transition);
}

.value__card:hover .value__card-content {
  border-color: rgba(45,212,168,0.15);
}

.value__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.value__card-icon--teal { background: rgba(45,212,168,0.1); color: var(--teal); }
.value__card-icon--blue { background: rgba(59,130,246,0.1); color: var(--blue); }
.value__card-icon--indigo { background: rgba(99,102,241,0.1); color: var(--indigo); }
.value__card-icon--green { background: rgba(16,185,129,0.1); color: var(--green); }

.value__card-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.05em;
}

.value__card-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value__card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.value__card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.value__card:hover .value__card-line { transform: scaleX(1); }

/* ========================================
   IMPACT — Stats
   ======================================== */
.impact { background: var(--white); }

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

.impact__stat {
  text-align: center;
  padding: 44px 20px 36px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.impact__stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.impact__stat:hover::before { transform: scaleX(1); }

.impact__stat:hover {
  border-color: rgba(45,212,168,0.2);
  box-shadow: 0 12px 40px rgba(45,212,168,0.06);
  transform: translateY(-4px);
}

.impact__stat-inner { position: relative; z-index: 1; }

.impact__number {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.impact__bar {
  width: 60%;
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.impact__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 1.5s var(--ease-out);
}

.impact__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================
   SECTORS
   ======================================== */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sectors__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sectors__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sectors__card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,212,168,0.04), rgba(59,130,246,0.04));
  opacity: 0;
  transition: opacity var(--transition);
}

.sectors__card:hover .sectors__card-bg { opacity: 1; }

.sectors__card-content {
  position: relative;
  z-index: 1;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: border-color var(--transition);
}

.sectors__card:hover .sectors__card-content {
  border-color: rgba(45,212,168,0.15);
}

.sectors__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(45,212,168,0.1), rgba(59,130,246,0.06));
  color: var(--teal);
  margin-bottom: 24px;
}

.sectors__card-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.sectors__card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sectors__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45,212,168,0.08);
  color: var(--teal);
  transition: all var(--transition);
}

.sectors__card:hover .sectors__card-arrow {
  background: var(--teal);
  color: var(--navy);
  transform: translate(2px, -2px);
}

/* ========================================
   STANDARDS
   ======================================== */
.standards { background: var(--off-white); }

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

.standards__card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.standards__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.standards__card:hover {
  border-color: rgba(45,212,168,0.25);
  box-shadow: 0 16px 48px rgba(45,212,168,0.08);
  transform: translateY(-6px);
}

.standards__card:hover::after { transform: scaleX(1); }

.standards__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.standards__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
}

.standards__card-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(45,212,168,0.1);
  color: var(--teal);
}

.standards__card-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.standards__card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ========================================
   SAUDI ADVANTAGE — Split layout
   ======================================== */
.saudi__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.saudi__text { padding-top: 20px; }

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

.saudi__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.saudi__card:hover {
  border-color: rgba(45,212,168,0.15);
  background: rgba(15,33,64,0.8);
  transform: translateX(8px);
  box-shadow: -4px 0 0 0 var(--teal), 0 8px 30px rgba(0,0,0,0.2);
}

.saudi__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(45,212,168,0.08);
  color: var(--teal);
  flex-shrink: 0;
}

.saudi__card-body h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.saudi__card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ========================================
   BENEFITS
   ======================================== */
.benefits { background: var(--white); }

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

.benefits__category {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.benefits__category:hover {
  border-color: rgba(45,212,168,0.2);
  box-shadow: 0 12px 40px rgba(45,212,168,0.06);
  transform: translateY(-4px);
}

.benefits__category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.benefits__category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.benefits__category-icon--teal { background: rgba(45,212,168,0.1); color: var(--teal); }
.benefits__category-icon--blue { background: rgba(59,130,246,0.1); color: var(--blue); }
.benefits__category-icon--green { background: rgba(16,185,129,0.1); color: var(--green); }

.benefits__category-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.benefits__list { display: flex; flex-direction: column; gap: 18px; }

.benefits__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefits__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  margin-top: 7px;
}

.benefits__item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.benefits__item span {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ========================================
   CTA
   ======================================== */
.cta {
  position: relative;
  background: var(--navy);
  padding: 140px 0;
  overflow: hidden;
}

.cta__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta__bg { position: absolute; inset: 0; pointer-events: none; }

.cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta__glow--1 {
  top: 20%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: rgba(45,212,168,0.1);
  animation: float-slow 10s ease-in-out infinite;
}
.cta__glow--2 {
  bottom: 10%;
  right: 25%;
  width: 300px;
  height: 300px;
  background: rgba(59,130,246,0.08);
  animation: float-slow 14s ease-in-out infinite reverse;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(45,212,168,0.08);
  border: 1px solid rgba(45,212,168,0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
}

.cta__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 18px;
}

.cta__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta__actions { display: flex; justify-content: center; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact-heading {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.footer__contact-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.footer__contact-link {
  color: var(--teal);
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer__contact-link:hover { opacity: 0.75; }

.footer__contact-address {
  font-style: normal;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ========================================
   MOBILE OVERLAY
   ======================================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 40px 24px;
}

.mobile-overlay.is-active { display: flex; flex-direction: column; }

.mobile-overlay .header__nav-list { flex-direction: column; gap: 4px; }

.mobile-overlay .header__nav-link {
  display: block;
  font-size: 1.15rem;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.mobile-overlay .header__nav-link:hover { background: rgba(255,255,255,0.04); }

.mobile-overlay .btn {
  display: flex;
  text-align: center;
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__visual { order: -1; }
  .hero__scanner { width: 340px; height: 340px; }
  .hero__scanner-wrapper { align-items: center; }

  .ecosystem__timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ecosystem__timeline-line { display: none; }

  .value__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .saudi__layout { grid-template-columns: 1fr; gap: 40px; }
  .saudi__text { text-align: center; }
  .section__title--left { text-align: center; }
  .section__desc--left { text-align: center; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__menu-btn { display: flex; }
  .cursor-glow { display: none; }

  .section { padding: 80px 0; }

  .hero__scroll { display: none; }

  .ecosystem__timeline { grid-template-columns: 1fr; gap: 24px; }
  .value__grid { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sectors__grid { grid-template-columns: 1fr; }
  .standards__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }

  .impact__stat { padding: 32px 16px 28px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__contact { align-items: center; }

  .cta { padding: 100px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__scanner { width: 290px; height: 290px; }
  .scanner__hud-pct { font-size: 1.1rem; }
}

/* ========================================
   HERO SCANNER WRAPPER
   ======================================== */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero__scanner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  max-width: 440px;
}

/* ========================================
   SCAN RESULT PANEL
   ======================================== */
.scan-panel {
  width: 100%;
  background: rgba(10, 22, 40, 0.92);
  border: 1px solid rgba(45, 212, 168, 0.22);
  border-radius: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease 0.1s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(45, 212, 168, 0.06);
}

.scan-panel.is-visible {
  max-height: 280px;
  opacity: 1;
  pointer-events: auto;
}

.scan-panel__header {
  padding: 14px 16px 10px;
}

.scan-panel__top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.scan-panel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(45, 212, 168, 0.7);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.scan-panel__title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scan-panel__badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(45, 212, 168, 0.1);
  border: 1px solid rgba(45, 212, 168, 0.25);
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.scan-panel__msg {
  font-size: 0.73rem;
  color: var(--text-on-dark);
  line-height: 1.4;
  opacity: 0.85;
}

.scan-panel__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.scan-panel__specs {
  list-style: none;
  padding: 10px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.scan-panel__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
}

.scan-panel__specs li > span:first-child {
  color: var(--text-muted);
  font-weight: 400;
}

.scan-panel__specs li > span:last-child {
  color: var(--text-on-dark);
  font-weight: 500;
}

.scan-panel__chip {
  background: rgba(45, 212, 168, 0.1);
  border: 1px solid rgba(45, 212, 168, 0.25);
  color: var(--teal) !important;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* ========================================
   3D SCANNER VIEWPORT
   ======================================== */
.hero__scanner {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(15, 33, 64, 0.95) 0%, rgba(10, 22, 40, 0.98) 100%);
  border: 1px solid rgba(59, 130, 246, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(45, 212, 168, 0.04),
    inset 0 0 80px rgba(10, 22, 40, 0.6);
  cursor: crosshair;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero__scanner.is-scanning {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(59, 130, 246, 0.12),
    inset 0 0 80px rgba(10, 22, 40, 0.6);
}

.hero__scanner.is-complete {
  border-color: rgba(45, 212, 168, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(45, 212, 168, 0.1),
    inset 0 0 80px rgba(10, 22, 40, 0.6);
}

#impellerCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---- Scan overlay (grid + beam) ---- */
.scanner__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.hero__scanner.is-scanning .scanner__overlay {
  opacity: 1;
}

.scanner__grid-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scanner__beam {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.6) 15%,
    rgba(45, 212, 168, 1) 50%,
    rgba(59, 130, 246, 0.6) 85%,
    transparent 100%
  );
  box-shadow:
    0 0 12px 2px rgba(45, 212, 168, 0.7),
    0 0 30px 4px rgba(59, 130, 246, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__scanner.is-scanning .scanner__beam {
  opacity: 1;
  animation: scanBeamSweep 1.1s ease-in-out infinite alternate;
}

@keyframes scanBeamSweep {
  0%   { top: 4%; }
  100% { top: 96%; }
}

/* ---- Corner targeting brackets ---- */
.scanner__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-style: solid;
  border-color: rgba(45, 212, 168, 0.5);
  border-width: 0;
  z-index: 5;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.scanner__corner--tl { top: 14px; left: 14px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 3px; }
.scanner__corner--tr { top: 14px; right: 14px; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 3px; }
.scanner__corner--bl { bottom: 46px; left: 14px; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 3px; }
.scanner__corner--br { bottom: 46px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 3px; }

.hero__scanner.is-scanning .scanner__corner {
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  width: 22px;
  height: 22px;
}

.hero__scanner.is-complete .scanner__corner {
  border-color: rgba(45, 212, 168, 0.9);
  box-shadow: 0 0 10px rgba(45, 212, 168, 0.5);
}

/* ---- HUD bottom bar ---- */
.scanner__hud {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 6;
}

.scanner__hud-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.scanner__hud-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
}

.scanner__hud-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.scanner__hud-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s ease;
}

.hero__scanner.is-complete .scanner__hud-pct {
  color: var(--teal);
}

/* ---- Progress bar strip ---- */
.scanner__progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
  z-index: 7;
}

.scanner__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);
  box-shadow: 0 0 10px rgba(45, 212, 168, 0.8);
  transition: width 0.08s linear;
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 3px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(45, 212, 168, 0.35);
}

.lang-toggle__option {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
  color: var(--text-muted);
  line-height: 1;
  user-select: none;
}

.lang-toggle__option.is-active {
  background: var(--teal);
  color: var(--navy);
}

/* ========================================
   RTL / ARABIC OVERRIDES
   ======================================== */
[dir="rtl"] body {
  font-family: 'Cairo', 'Inter', sans-serif;
}

[dir="rtl"] .header__nav-link::after {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

[dir="rtl"] .hero__title-line--gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[dir="rtl"] .section__title br { display: block; }

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

[dir="rtl"] .value__card-num {
  display: block;
  text-align: right;
}

[dir="rtl"] .scan-panel__specs li {
  flex-direction: row-reverse;
}

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

[dir="rtl"] .footer__contact {
  align-items: flex-end;
}

@media (max-width: 768px) {
  [dir="rtl"] .footer__contact { align-items: center; }
}
