/* ============================================================
   MODELO 3D — Landing Page Styles
   ============================================================ */

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

:root {
  --black:    #000000;
  --dark:     #0a0a0a;
  --dark2:    #111111;
  --dark3:    #1a1a1a;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.15);
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.45);
  --accent:   #0ea5e9;
  --accent2:  #7c3aed;
  --grad:     linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
  --grad2:    linear-gradient(135deg, #38bdf8 0%, #a78bfa 100%);
  --font:     'Space Grotesk', 'Inter', sans-serif;
  --radius:   12px;
  --radius-lg:20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
}

.section-header { margin-bottom: 4rem; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: var(--white);
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14,165,233,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo-img { height: 122px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--grad) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav__cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 0.6; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(14,165,233,0.35);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(14,165,233,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark2);
  padding: 1rem 0;
}

.marquee {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.marquee span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.marquee .dot {
  color: var(--accent);
  opacity: 0.5;
  font-size: 0.5rem;
}

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

/* ============================================================
   CUSTOMER LOGOS STRIP
   ============================================================ */
.logos-strip {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.logos-strip__header {
  text-align: center;
  margin-bottom: 2rem;
}

.logos-strip__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logos-grid__item img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  opacity: 0.88;
  background: rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 12px 20px;
  box-sizing: content-box;
  transition: opacity 0.25s, background 0.25s, transform 0.25s;
}

.logos-grid__item img:hover {
  opacity: 1;
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 8rem 0;
  background: var(--dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}
.service-card:hover { background: var(--dark3); }

.service-card__number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--accent);
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-card__icon { opacity: 1; transform: scale(1.05); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-card__arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.service-card:hover .service-card__arrow {
  color: var(--white);
  transform: translateX(4px);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stats__bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, rgba(124,58,237,0.04) 50%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--dark2);
  transition: border-color 0.3s, transform 0.3s;
}
.stat-item:hover {
  border-color: rgba(14,165,233,0.45);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(14,165,233,0.08);
}

.stat-item__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 8rem 0;
  background: var(--dark);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

.process-step {
  position: relative;
  padding: 0 2rem 0 0;
}

.process-step__line {
  position: absolute;
  top: 20px;
  left: calc(40px + 1rem);
  right: 0;
  height: 1px;
  background: var(--border);
}

.process-step__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .process-step__dot {
  background: var(--grad);
  border-color: var(--accent);
}
.process-step:hover .process-step__dot span { color: var(--white); }

.process-step__dot span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.3s;
}

.process-step__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.process-step__content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  padding-right: 1rem;
}

/* ============================================================
   MATERIALS
   ============================================================ */
.materials {
  padding: 4rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.materials__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.materials__tags span {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: var(--dark2);
  transition: all 0.2s;
  cursor: default;
}
.materials__tags span:hover {
  border-color: rgba(14,165,233,0.45);
  color: var(--accent);
  background: rgba(14,165,233,0.06);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, rgba(124,58,237,0.04) 50%, transparent 65%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.contact__desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__info { display: flex; flex-direction: column; gap: 0.75rem; }

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.contact__detail:hover { color: var(--white); }
.contact__detail svg { flex-shrink: 0; }

/* FORM */
.contact__form { display: flex; flex-direction: column; gap: 1rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(14,165,233,0.5);
  background: #1e1e1e;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ── Instagram section ─────────────────────────────────────────────────────── */
.insta-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.insta-section .section-label { justify-content: center; margin-bottom: 0.5rem; }
.insta-section h2 { margin-bottom: 0.5rem; }
.insta-section .insta-handle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #e1306c; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; margin-bottom: 2.5rem;
  transition: opacity 0.2s;
}
.insta-section .insta-handle:hover { opacity: 0.75; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.insta-tile {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
.insta-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.82;
  transition: opacity 0.25s, transform 0.25s;
}
.insta-tile:hover img { opacity: 1; transform: scale(1.04); }
.insta-tile--placeholder {
  opacity: 0.18;
}
.insta-tile--placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.insta-live { display: none; } /* shown when Behold widget is pasted */
@media (max-width: 480px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
}

.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img { height: 90px; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.footer__social { margin-top: 1rem; }
.footer__social-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--muted); text-decoration: none; font-size: 0.82rem;
  transition: color 0.2s;
}
.footer__social-link:hover { color: #e1306c; }

.footer__links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer__links a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-step__line { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero__subtitle br { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .process__steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 1.25rem 4rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lang-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}
.lang-btn svg { flex-shrink: 0; }
.lang-chevron { transition: transform 0.2s ease; }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15,15,15,0.97);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 0.4rem;
  min-width: 145px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 200;
}
.lang-dropdown.open { display: block; }

.lang-option {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}
.lang-option:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.lang-option.active { color: var(--accent); font-weight: 600; }

/* RTL support */
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lang-option { text-align: right; }
[dir="rtl"] .nav__links { flex-direction: row-reverse; }
[dir="rtl"] .mobile-menu ul { text-align: center; }

/* ============================================================
   SLS COMING SOON WATERMARK
   ============================================================ */
.sls-coming-soon-wrap {
  position: relative;
}

.coming-soon-stamp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.coming-soon-stamp__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.8rem;
  border: 3px solid rgba(239,68,68,0.7);
  border-radius: 8px;
  color: rgba(239,68,68,0.85);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-12deg);
  background: rgba(239,68,68,0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-shadow: 0 0 20px rgba(239,68,68,0.3);
  box-shadow: 0 0 30px rgba(239,68,68,0.08), inset 0 0 30px rgba(239,68,68,0.04);
  white-space: nowrap;
}

.sls-coming-soon-wrap .tech-grid {
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .lang-btn { font-size: 0.75rem; padding: 0.3rem 0.6rem; }
  .coming-soon-stamp__inner { font-size: 1rem; padding: 0.5rem 1.2rem; }
}
