:root {
  --gold: #E2C27D;
  --gold2: #F2D28D;
  --gold3: #8B6520;
  --dark: #050812;
  --dark2: #0A1120;
  --dark3: #0D1629;
  --ivory: #F2EAD8;
  --muted: #A3ADC2;
  --accent: #192542;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--ivory);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 90, 0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .12s ease-out;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* GEOMETRIC BACKGROUND */
.geo-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.geo-bg svg {
  position: absolute;
}

.sparkles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ── HEADER ── */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  height: 90px;
  background: linear-gradient(to bottom, rgba(9, 9, 14, 0.95), transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 164, 90, 0.08);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.central-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.main-logo-img {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(226, 194, 125, 0.3));
  transform: scale(1.15);
  margin-top: 10px;
}

nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--gold2);
}

.nav-cta {
  padding: 9px 22px;
  border: 1px solid rgba(200, 164, 90, 0.4);
  color: var(--gold) !important;
  border-radius: 2px;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: rgba(200, 164, 90, 0.1) !important;
  border-color: var(--gold) !important;
}

/* Custom Lang Selector */
.custom-lang-selector {
  position: relative;
  margin-right: 0;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(200, 164, 90, 0.1) 0%, rgba(139, 101, 32, 0.15) 100%);
  border: 1px solid rgba(226, 194, 125, 0.4);
  border-radius: 100px;
  cursor: pointer;
  color: var(--gold2);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(226, 194, 125, 0.1);
  backdrop-filter: blur(8px);
}

.lang-trigger:hover {
  background: linear-gradient(135deg, rgba(200, 164, 90, 0.2) 0%, rgba(139, 101, 32, 0.25) 100%);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(226, 194, 125, 0.4), inset 0 0 16px rgba(226, 194, 125, 0.2);
}

.lang-flag {
  width: 24px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.lang-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.4s;
  color: var(--gold);
}

.custom-lang-selector.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-options {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  background: rgba(10, 17, 32, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 194, 125, 0.3);
  border-radius: 16px;
  min-width: 200px;
  max-height: 480px;
  overflow-y: auto;
  padding: 12px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(226, 194, 125, 0.1);
  z-index: 1000;
}

[dir="rtl"] .lang-options {
  right: auto;
  left: 0;
  transform-origin: top left;
}

.lang-options::-webkit-scrollbar {
  width: 6px;
}

.lang-options::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin: 12px 0;
}

.lang-options::-webkit-scrollbar-thumb {
  background: rgba(226, 194, 125, 0.3);
  border-radius: 4px;
}

.custom-lang-selector.open .lang-options {
  display: flex;
  animation: fadeUpLang 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUpLang {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lang-option:hover {
  background: linear-gradient(90deg, rgba(226, 194, 125, 0.15) 0%, transparent 100%);
  color: var(--gold2);
  padding-left: 32px;
}

.lang-option img {
  width: 24px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

/* ══════════════════════════════
     HERO
  ══════════════════════════════ */
.hero {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  padding: 100px 64px 60px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 60px;
}

/* ── TEXT SIDE ── */
.hero-left {
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(200, 164, 90, 0.08);
  border: 1px solid rgba(200, 164, 90, 0.25);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7)
  }
}

.hero-title-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero-app-icon {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(226, 194, 125, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(226, 194, 125, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.2rem;
  line-height: 1.0;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0;
  padding-bottom: 10px;
}

h1 strong {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 50%, var(--gold3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 10px;
}

h1 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  color: rgba(242, 234, 216, 0.55);
  margin-top: 4px;
  -webkit-text-fill-color: rgba(242, 234, 216, 0.55);
}

.glow-text {
  text-shadow: 0 0 16px rgba(226, 194, 125, 0.35);
}

.glow-text strong {
  text-shadow: 0 0 32px rgba(226, 194, 125, 0.5);
}

.glow-text-sm {
  text-shadow: 0 0 12px rgba(200, 164, 90, 0.25);
}

.tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold2);
  opacity: 0.9;
  letter-spacing: 1px;
  margin: 16px 0 32px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.desc {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.0;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 44px;
  animation: fadeUp 0.9s ease 0.3s both;
}

/* BUTTONS & STORE BADGES */
.btn-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.4s both;
  align-items: flex-start;
}

.store-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.store-badge {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s;
  cursor: pointer;
}

.store-badge img {
  height: 52px;
  width: auto;
  display: block;
}

.badge-sub-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(226, 194, 125, 0.4);
}

.store-badge:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 8px 16px rgba(226, 194, 125, 0.25));
}

.disabled-badge {
  opacity: 0.5;
  filter: grayscale(1);
  cursor: not-allowed !important;
}

.disabled-badge:hover {
  transform: none;
  filter: grayscale(1);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 60%, var(--gold3) 100%);
  color: #0a0a0a;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  box-shadow: 0 8px 32px rgba(200, 164, 90, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(200, 164, 90, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--ivory);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(242, 234, 216, 0.2);
  cursor: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold2);
  transform: translateY(-2px);
}

/* STATS ROW */
.stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 164, 90, 0.12);
  animation: fadeUp 0.9s ease 0.5s both;
}

.stat {
  flex: 1;
  text-align: center;
  white-space: normal;
  position: relative;
}

.stat+.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(200, 164, 90, 0.15);
}

.stat-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold2);
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ══════════════════════════════
     PHONE  –  HERO RIGHT
  ══════════════════════════════ */
.phone-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s ease 0.2s both;
}

/* floating soft blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.blob-1 {
  width: 380px;
  height: 380px;
  background: rgba(200, 164, 90, 0.08);
  top: -60px;
  right: -40px;
  animation: blobDrift 8s ease-in-out infinite;
}

.blob-2 {
  width: 260px;
  height: 260px;
  background: rgba(42, 31, 16, 0.4);
  bottom: -40px;
  left: 20px;
  animation: blobDrift 11s ease-in-out infinite reverse;
}

@keyframes blobDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(20px, -20px) scale(1.08)
  }
}

/* orbit particles */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 90, 0.1);
  animation: spin linear infinite;
}

.orbit-1 {
  width: 560px;
  height: 560px;
  animation-duration: 40s;
}

.orbit-2 {
  width: 680px;
  height: 680px;
  animation-duration: 60s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 460px;
  height: 460px;
  animation-duration: 28s;
  border-style: dashed;
  opacity: 0.6;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.orbit-dot {
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold2), var(--gold3));
  box-shadow: 0 0 10px rgba(200, 164, 90, 0.8);
}

.orbit-2 .orbit-dot {
  width: 7px;
  height: 7px;
  top: -3.5px;
  left: calc(50% - 3.5px);
}

.orbit-3 .orbit-dot {
  width: 5px;
  height: 5px;
  top: -2.5px;
  left: calc(50% - 2.5px);
  background: var(--gold2);
}

/* ── PHONE CAROUSEL ── */
.phone-carousel {
  position: relative;
  width: 360px;
  height: 740px;
  perspective: 1400px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.phone-carousel:hover .pc-item[data-pos="1"] {
  transform: translateZ(50px) translateX(0) scale(1.08);
  filter: brightness(1.15) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

.pc-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transform-style: preserve-3d;
}

.pc-item[data-pos="1"] {
  transform: translateZ(0) translateX(0) scale(1);
  z-index: 3;
  opacity: 1;
}

.pc-item[data-pos="2"] {
  transform: translateZ(-250px) translateX(220px) translateY(-20px) scale(0.9);
  z-index: 2;
  opacity: 0.85;
  filter: blur(0px) brightness(0.9);
}

.pc-item[data-pos="3"] {
  transform: translateZ(-250px) translateX(-220px) translateY(-20px) scale(0.9);
  z-index: 1;
  opacity: 0.85;
  filter: blur(0px) brightness(0.9);
}

@media(max-width: 1000px) {
  .phone-carousel {
    width: 290px;
    height: 600px;
  }

  .pc-item[data-pos="2"] {
    transform: translateZ(-200px) translateX(120px) scale(0.8);
  }

  .pc-item[data-pos="3"] {
    transform: translateZ(-200px) translateX(-120px) scale(0.8);
  }
}

/* ── PHONE BODY ── */
.phone {
  position: relative;
  z-index: 10;
  width: 360px;
  height: 740px;
  border-radius: 52px;
  background: linear-gradient(160deg, #1e1e32 0%, #0d0d1a 40%, #07070f 100%);
  border: 1.5px solid rgba(226, 194, 125, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.9),
    0 60px 120px rgba(0, 0, 0, 0.9),
    0 0 100px rgba(200, 164, 90, 0.15),
    inset 0 0 60px rgba(200, 164, 90, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: phoneFloat 6s ease-in-out infinite;
  overflow: visible;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-16px) rotate(0.5deg);
  }
}

/* Side buttons */
.phone-btn {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(to bottom, #2a2a40, #18182a);
}

.p-vol1 {
  width: 3px;
  height: 36px;
  top: 120px;
  left: -4px;
}

.p-vol2 {
  width: 3px;
  height: 36px;
  top: 168px;
  left: -4px;
}

.p-pwr {
  width: 3px;
  height: 54px;
  top: 144px;
  right: -4px;
}

/* Notch */
.phone-notch {
  width: 100px;
  height: 26px;
  background: #05050c;
  border-radius: 0 0 18px 18px;
  margin-bottom: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(226, 194, 125, 0.15);
  border-top: none;
}

.n-cam {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #25254a, #050508);
  border: 1px solid rgba(226, 194, 125, 0.25);
}

.n-spk {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
}

/* Screen */
.phone-screen {
  flex: 1;
  width: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 38px;
}

.screen-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04) 0%, transparent 45%);
  border-radius: 38px;
  pointer-events: none;
  z-index: 5;
}

/* Home bar */
.phone-home {
  width: 80px;
  height: 4px;
  background: rgba(226, 194, 125, 0.2);
  border-radius: 4px;
  margin-top: 10px;
  flex-shrink: 0;
}

/* ══════════════════════════════
     FEATURE STRIP
  ══════════════════════════════ */
.strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(200, 164, 90, 0.1);
  border-bottom: 1px solid rgba(200, 164, 90, 0.1);
  background: linear-gradient(to right, transparent, rgba(200, 164, 90, 0.03), transparent);
  padding: 24px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  white-space: nowrap;
  animation: stripMove 45s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.w-svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════
     FEATURES SECTION
  ══════════════════════════════ */
.features-section {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 64px;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold2);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: 80px;
}

.features-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}

.feat {
  background: linear-gradient(to bottom right, rgba(200, 164, 90, 0.04), transparent);
  border: 1px solid rgba(226, 194, 125, 0.1);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  top: 30px;
  opacity: 0;
}

.feat.vis {
  top: 0;
  opacity: 1;
}

.feat:hover {
  border-color: rgba(226, 194, 125, 0.3);
  transform: translateY(-5px);
  background: linear-gradient(to bottom right, rgba(200, 164, 90, 0.08), transparent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.feat-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: rgba(226, 194, 125, 0.15);
  font-weight: 600;
  transition: color 0.4s;
}

.feat:hover .feat-num {
  color: var(--gold);
}

.feat-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(226, 194, 125, 0.08);
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold2);
}

.feat-icon svg {
  width: 26px;
  height: 26px;
}

.feat-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.feat-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.perfect-for {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(to bottom right, rgba(200, 164, 90, 0.06), transparent);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
}

.perfect-for h3 {
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold2);
  margin-bottom: 20px;
}

.perfect-for ul {
  list-style: none;
  padding: 0;
}

.perfect-for li {
  font-size: 1.05rem;
  color: var(--ivory);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.perfect-for li::before {
  content: "•";
  color: var(--gold);
  font-size: 1.5rem;
}

/* ══════════════════════════════
     DOWNLOAD
  ══════════════════════════════ */
.download-section {
  position: relative;
  z-index: 5;
  text-align: center;
  white-space: normal;
  padding: 120px 20px;
  background: linear-gradient(to top, rgba(9, 9, 14, 0.9), transparent);
  border-top: 1px solid rgba(226, 194, 125, 0.08);
}

.download-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.download-section em {
  font-style: italic;
  color: var(--gold2);
}

.download-section p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.dl-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
footer {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 64px;
  border-top: 1px solid rgba(226, 194, 125, 0.1);
  background: var(--dark3);
  font-size: 0.8rem;
}

.footer-brand {
  color: var(--gold);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--ivory);
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    white-space: normal;
    padding-top: 140px;
    gap: 80px;
  }

  .blob-1 {
    top: -200px;
    right: -100px;
  }

  .hero-title-group {
    flex-direction: column;
    justify-content: center;
  }

  .btn-row {
    justify-content: center;
  }

  .desc {
    margin: 0 auto 44px;
  }

  .stats {
    max-width: 800px;
    margin: 52px auto 0;
  }

  .phone-scene {
    grid-row: 1;
  }

  .features-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 0 24px;
    height: 70px;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h1 em {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .features-section {
    padding: 80px 24px;
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .section-sub {
    margin-bottom: 40px;
  }

  .download-section h2 {
    font-size: 3rem;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    white-space: normal;
    padding: 30px 24px;
  }
}

/* RTL Support */
[dir="rtl"] {
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

[dir="rtl"] .feat-num {
  right: auto;
  left: 32px;
}

[dir="rtl"] .perfect-for {
  border-left: none;
  border-right: 3px solid var(--gold);
  border-radius: 16px 0 0 16px;
}

[dir="rtl"] .perfect-for li {
  flex-direction: row;
}

.lang-selector {
  margin-right: 20px;
}

[dir="rtl"] .lang-selector {
  margin-right: 0;
  margin-left: 20px;
}

.lang-selector select {
  background: transparent;
  border: 1px solid rgba(200, 164, 90, 0.4);
  color: var(--gold);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
}

.lang-selector select option {
  background: var(--dark);
  color: var(--ivory);
}



@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.strip-item .w-svg {
  stroke: var(--gold3);
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}

/* ══════════════════════════════
     ELEGANT TEXTURES GALLERY
  ══════════════════════════════ */
.texture-gallery {
  position: relative;
  z-index: 5;
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.texture-header {
  position: relative;
  z-index: 2;
  text-align: center;
  white-space: normal;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.elegant-gallery {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  padding:
    40px 0 160px 0;
  margin-bottom: -120px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.elegant-track {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 24px;
  width: max-content;
  will-change: transform;
}

.elegant-track.motion-left {
  animation: scrollLeft 60s linear infinite;
}

.elegant-track.motion-right {
  animation: scrollRight 65s linear infinite;
}

.elegant-track:hover {
  z-index: 10;
  animation-play-state: paused;
}

.elegant-row {
  display: flex;
  z-index: 10;
  animation-play-state: paused;
}

.elegant-row {
  display: flex;
  gap: 24px;
  padding-left: 24px;
}

.elegant-card {
  position: relative;
  width: 180px;
  height: 200px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

/* The expanding visual background of the card */
.elegant-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 30, 35, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.elegant-card:hover {
  z-index: 100;
}

.elegant-card:hover::before {
  bottom: -120px;
  /* Reduced expansion */
  background: linear-gradient(135deg, rgba(40, 35, 25, 0.98), rgba(15, 15, 20, 1));
  border-color: rgba(226, 194, 125, 0.8);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 1);
  transform: scale(1.08);
}

.elegant-card .bead-sphere {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  scale: 1;
  translate: 0 0;
  box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.6);
  transition: scale 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), translate 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  z-index: 5;
  will-change: transform, scale, translate, box-shadow;
  transform: translateZ(0);
  /* Force GPU acceleration */
}

/* Static lighting mask over the bead, counter-rotates to stay still */
.elegant-card .bead-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  box-shadow:
    inset -10px -15px 30px rgba(0, 0, 0, 0.9),
    inset 10px 10px 20px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.elegant-card:hover .bead-sphere {
  scale: 1.5;
  translate: 0 -20px;
  box-shadow: 0 40px 30px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(200, 164, 90, 0.4);
  animation: justSpin 6s linear infinite;
}

.elegant-card:hover .bead-sphere::after {
  box-shadow:
    inset -10px -15px 30px rgba(0, 0, 0, 0.9),
    inset 10px 10px 20px rgba(255, 255, 255, 0.4);
  animation: counterSpin 6s linear infinite;
}

@keyframes justSpin {
  0% {
    rotate: 0deg;
  }

  100% {
    rotate: 360deg;
  }
}

@keyframes counterSpin {
  0% {
    rotate: 0deg;
  }

  100% {
    rotate: -360deg;
  }
}

.elegant-desc {
  position: absolute;
  top: 175px;
  left: 10%;
  width: 80%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(242, 234, 216, 0.95);
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.4s ease;
  z-index: 5;
  max-height: 130px;
  /* Filling the available expanded space */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* Allowing up to 6 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.elegant-card:hover .elegant-desc {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.elegant-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
  white-space: normal;
  opacity: 0.9;
  z-index: 5;
  transition: transform 0.4s ease, color 0.4s ease;
}

.elegant-card:hover .elegant-name {
  transform: translateY(-5px);
  /* Move name slightly up on hover */
  color: var(--gold);
  font-weight: 600;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ══════════════════════════════
     FEATURES SECTION
  ══════════════════════════════ */
.features-section {
  position: relative;
  z-index: 5;
  padding: 110px 64px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold2);
}

.section-sub {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 60px;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid rgba(200, 164, 90, 0.1);
}

.feat {
  padding: 44px 40px;
  border: 1px solid rgba(200, 164, 90, 0.07);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.012);
  transition: background 0.4s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s;
}

.feat.vis {
  opacity: 1;
  transform: none;
}

.feat:hover {
  background: rgba(200, 164, 90, 0.03);
}

.feat::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 164, 90, 0.2), transparent);
}

.feat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 164, 90, 0.07);
  position: absolute;
  top: 20px;
  right: 28px;
  line-height: 1;
  user-select: none;
  transition: color 0.4s;
}

.feat:hover .feat-num {
  color: rgba(200, 164, 90, 0.14);
}

.feat-icon {
  margin-bottom: 24px;
  display: block;
}

.feat-icon .w-svg {
  width: 48px;
  height: 48px;
  stroke: var(--ivory);
  opacity: 0.85;
}

.feat-title {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 500;
}

.feat-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ══════════════════════════════
     APP PREVIEW SECTION
  ══════════════════════════════ */
.preview-section {
  position: relative;
  z-index: 5;
  padding: 0 64px 120px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.preview-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.preview-badge {
  position: absolute;
  top: 40px;
  left: -20px;
  background: var(--dark3);
  border: 1px solid rgba(200, 164, 90, 0.25);
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: badgeFloat 5s ease-in-out infinite;
  z-index: 20;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.badge-emoji {
  font-size: 1.5rem;
}

.badge-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ivory);
  display: block;
}

.badge-sub {
  font-size: 0.68rem;
  color: var(--gold2);
}

.preview-badge-2 {
  position: absolute;
  bottom: 60px;
  right: -10px;
  background: var(--dark3);
  border: 1px solid rgba(200, 164, 90, 0.2);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: badgeFloat 7s ease-in-out infinite reverse;
  z-index: 20;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.rating-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--ivory);
}

.rating-lbl {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.small-phone {
  width: 220px;
  height: 450px;
  background: linear-gradient(160deg, #1a1a2e, #07070f);
  border-radius: 36px;
  border: 1px solid rgba(226, 194, 125, 0.35);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px 12px;
}

.small-notch {
  width: 70px;
  height: 18px;
  background: #05050c;
  border-radius: 0 0 12px 12px;
  margin-bottom: 6px;
  border: 1px solid rgba(226, 194, 125, 0.12);
  border-top: none;
}

.small-screen {
  flex: 1;
  width: 100%;
  border-radius: 26px;
  background: #000;
  overflow: hidden;
}

.small-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-home {
  width: 50px;
  height: 3px;
  background: rgba(226, 194, 125, 0.2);
  border-radius: 3px;
  margin-top: 8px;
}

/* ══════════════════════════════
     DOWNLOAD SECTION
  ══════════════════════════════ */
.download-section {
  position: relative;
  z-index: 5;
  text-align: center;
  white-space: normal;
  padding: 120px 64px;
  background: linear-gradient(to bottom, transparent, rgba(200, 164, 90, 0.03), transparent);
  border-top: 1px solid rgba(200, 164, 90, 0.08);
}

.download-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1.1;
}

.download-section h2 em {
  font-style: italic;
  color: var(--gold2);
}

.download-section p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.dl-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.25);
  border-radius: 4px;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.dl-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 164, 90, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.dl-btn:hover {
  border-color: rgba(200, 164, 90, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.dl-btn:hover::before {
  opacity: 1;
}

.dl-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
}

.dl-text {
  text-align: left;
}

.dl-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.dl-main {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  display: block;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 5;
  padding: 40px 64px;
  border-top: 1px solid rgba(200, 164, 90, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: normal;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--muted);
}

.footer-brand strong {
  color: var(--gold2);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  margin-left: 24px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

@media(max-width:1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 28px 60px;
    text-align: center;
    white-space: normal;
  }

  h1 {
    font-size: 3.5rem;
  }

  .phone-scene {
    order: -1;
  }

  .phone-border-wrap {
    display: inline-block;
  }

  .phone {
    width: 290px;
    height: 600px;
  }

  .features-section,
  .preview-section,
  .download-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .preview-section {
    grid-template-columns: 1fr;
  }

  .stats {
    justify-content: center;
  }

  .btn-row {
    justify-content: center;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    white-space: normal;
    padding: 28px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}

@media(max-width:768px) {
  .main-header {
    padding: 0 20px;
    height: 70px;
  }

  .lang-trigger {
    padding: 10px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(226, 194, 125, 0.4);
    box-shadow: none;
  }

  /* Hamburger icon style for the trigger */
  .lang-trigger::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--gold2);
    box-shadow: 0 6px 0 var(--gold2), 0 -6px 0 var(--gold2);
    margin: 6px 2px;
  }

  /* Hide original trigger contents on mobile */
  .lang-trigger .lang-flag,
  .lang-trigger #currentLangName,
  .lang-trigger .lang-arrow {
    display: none !important;
  }

  .lang-options {
    min-width: 200px;
    right: 0;
    top: calc(100% + 10px);
    max-height: 380px;
  }

  [dir="rtl"] .lang-options {
    right: auto;
    left: 0;
    transform-origin: top left;
  }

  .lang-option {
    padding: 14px 20px;
    font-size: 0.85rem;
    gap: 14px;
  }

  .lang-option img {
    width: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 40px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h1 em {
    font-size: 1.8rem;
  }

  .hero-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }

  .hero-title-group {
    justify-content: center;
    gap: 16px;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .royal-accordion {
    flex-direction: column;
    height: 100vh;
    padding: 20px;
    margin: 20px auto 60px;
  }

  .acc-vertical-title {
    transform: none;
  }

  .acc-bead {
    margin-bottom: 20px;
    width: 140px;
    height: 140px;
  }

  .acc-info h3 {
    font-size: 2rem;
  }

  .acc-pedestal {
    width: 180px;
    bottom: 80px;
  }
}