/* =========================================================
   MEDIA POWER — v4 Cinematic Premium
   Gold + Black · Arabic RTL · Magnetic · Mesh · Kinetic
   ========================================================= */

:root{
  --bg:           #06060a;
  --bg-2:         #0a0a10;
  --bg-3:         #0d0d14;
  --surface:      #12121a;
  --surface-2:    #181822;
  --surface-3:    #1f1f2c;
  --line:         rgba(212, 160, 23, 0.14);
  --line-2:       rgba(255, 255, 255, 0.06);

  --gold:         #D4A017;
  --gold-light:   #F0C13F;
  --gold-soft:    #E5B945;
  --gold-bright:  #FFD86F;
  --gold-dark:    #A87C10;
  --gold-deep:    #7A5A0C;

  --text:         #ffffff;
  --text-2:       #e7e7ee;
  --text-3:       #b8b8c5;
  --text-4:       #888894;
  --text-muted:   #55555f;

  --grad-gold:    linear-gradient(135deg, #FFD86F 0%, #D4A017 50%, #A87C10 100%);
  --grad-gold-2:  linear-gradient(135deg, #F0C13F 0%, #D4A017 100%);
  --grad-text:    linear-gradient(135deg, #FFD86F 0%, #D4A017 60%, #FFD86F 100%);
  --grad-mesh:    linear-gradient(135deg, #FFD86F 0%, #D4A017 30%, #7A5A0C 60%, #1a1a24 100%);

  --shadow-gold:  0 18px 60px -12px rgba(212, 160, 23, 0.45);
  --shadow-card:  0 30px 80px -30px rgba(0, 0, 0, 0.7);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease:  cubic-bezier(.65, 0, .076, 1);
  --ease-2: cubic-bezier(.16, 1, .3, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);

  --container: 1320px;

  --font:    'Cairo','Tajawal','Inter',system-ui,sans-serif;
  --font-en: 'Inter','Cairo',sans-serif;
  --font-display: 'Playfair Display','Georgia',serif;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; background:none; border:0; color:inherit; cursor:pointer; }
input,textarea,select{ font:inherit; color:inherit; outline:none; border:0; background:transparent; }
ul{ list-style:none; }

::selection{ background: var(--gold); color: #0d0d12; }
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: #0a0a10; }
::-webkit-scrollbar-thumb{ background: linear-gradient(180deg, var(--gold-dark), var(--gold)); border-radius:10px; }
::-webkit-scrollbar-thumb:hover{ background: var(--gold); }

.container{ width:100%; max-width: var(--container); margin:0 auto; padding: 0 28px; position:relative; }

/* ========== CURSOR ========== */
.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0;
  pointer-events:none;
  z-index: 9999;
  border-radius:50%;
  transform: translate(-50%, -50%);
}
.cursor-dot{
  width:6px; height:6px;
  background: var(--gold-bright);
  mix-blend-mode: difference;
  transition: width .25s, height .25s;
}
.cursor-ring{
  width:38px; height:38px;
  border:1.5px solid rgba(212,160,23,.6);
  mix-blend-mode: difference;
  transition: width .35s var(--ease-2), height .35s var(--ease-2), border-color .3s, background .3s;
}
body.cursor-hover .cursor-ring{ width:60px; height:60px; border-color: var(--gold-bright); }
body.cursor-hover .cursor-dot{ width:0; height:0; }
body.cursor-label-on .cursor-ring{
  width: 80px; height: 80px;
  background: var(--gold);
  border-color: var(--gold);
  mix-blend-mode: normal;
}
body.cursor-label-on .cursor-dot{ width:0; height:0; }

.cursor-label{
  position: fixed; top:0; left:0;
  pointer-events:none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .3s var(--ease-2);
  color: #0d0d12;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: var(--font);
  white-space: nowrap;
}
body.cursor-label-on .cursor-label{ transform: translate(-50%, -50%) scale(1); }

@media (max-width: 900px), (hover: none){
  body{ cursor:auto; }
  .cursor-dot, .cursor-ring, .cursor-label{ display:none; }
}

/* ========== CINEMATIC LOADER — Curtain Reveal ========== */
.loader{
  position: fixed; inset:0;
  z-index: 10000;
  pointer-events: auto;
}

/* Curtain panels — split open after load */
.curtain{
  position: absolute; left: 0; right: 0;
  height: 50%;
  background: #06060a;
  z-index: 1;
  transition: transform 1.4s cubic-bezier(.86,0,.07,1);
  will-change: transform;
}
.curtain-top{
  top: 0;
  border-bottom: 1px solid rgba(212,160,23,.18);
}
.curtain-bottom{
  bottom: 0;
  border-top: 1px solid rgba(212,160,23,.18);
}
body.curtain-open .curtain-top{    transform: translateY(-100%); }
body.curtain-open .curtain-bottom{ transform: translateY(100%);  }
body.loaded .loader{ pointer-events: none; visibility: hidden; transition-delay: 1.4s; }

/* Stage content (sits above curtains while loading) */
.loader-stage{
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 40px 48px 36px;
  color: #fff;
  transition: opacity .8s var(--ease-2);
}
body.curtain-open .loader-stage{ opacity: 0; transition-delay: .1s; }

/* === Greeting cycle === */
.loader-greet{
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-3);
  text-transform: uppercase;
  font-weight: 600;
}
.ldg-num{
  color: var(--gold);
  font-size: 12px;
  animation: ldgPulse 1.5s ease-in-out infinite;
}
@keyframes ldgPulse{ 0%,100%{ opacity:1;} 50%{ opacity:.3;} }
.ldg-words{
  position: relative;
  height: 22px;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  font-family: var(--font);
  text-transform: none;
  font-weight: 600;
  min-width: 140px;
}
.ldg-word{
  display: block;
  height: 22px; line-height: 22px;
  animation: ldgCycle 8s steps(7) infinite;
}
@keyframes ldgCycle{
  0%   { transform: translateY(0);     }
  14%  { transform: translateY(-22px); }
  28%  { transform: translateY(-44px); }
  42%  { transform: translateY(-66px); }
  56%  { transform: translateY(-88px); }
  70%  { transform: translateY(-110px);}
  84%  { transform: translateY(-132px);}
  100% { transform: translateY(-154px);}
}

/* === Editorial brand title === */
.loader-brand{
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.lb-pre, .lb-post{
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp .8s var(--ease-2) .3s forwards;
}
.lb-pre{ margin-bottom: 30px; }
.lb-post{ margin-top: 30px; animation-delay: 1.5s; }

.lb-title{
  font-family: var(--font-en);
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -8px;
  text-transform: uppercase;
}
.lb-line{ display: block; overflow: hidden; }
.lb-line:nth-child(2){ padding-inline-start: clamp(40px, 8vw, 120px); }
.lb-word{
  display: inline-block;
  transform: translateY(110%);
  animation: maskUp 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.lb-line:nth-child(1) .lb-word{ animation-delay: .5s; }
.lb-line:nth-child(2) .lb-word{ animation-delay: .75s; }
.lb-italic{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -4px;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* === Bottom: bar + counter === */
.loader-foot{
  display: flex; flex-direction: column; gap: 12px;
}
.lf-bar{
  width: 100%; height: 2px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.lf-fill{
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--grad-gold);
  transition: width .15s linear;
  box-shadow: 0 0 10px var(--gold);
}
.lf-meta{
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-3);
  font-weight: 700;
  text-transform: uppercase;
}
.lf-percent{ color: var(--gold); }
.lf-percent span{
  font-size: 16px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

@media (max-width: 768px){
  .loader-stage{ padding: 24px; }
  .lb-title{ letter-spacing: -4px; }
}

/* ========== TOPBAR ========== */
.topbar{
  position: relative;
  background: linear-gradient(90deg, #0a0a10 0%, #15151f 50%, #0a0a10 100%);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  height: 38px;
  display:flex; align-items:center;
}
.topbar-marquee{ width:100%; overflow:hidden; }
.topbar-track{
  display:flex; gap:50px;
  white-space: nowrap;
  animation: marqueeTopbar 35s linear infinite;
}
.tb-item{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .3px;
}
.dot-gold{
  width:6px; height:6px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
@keyframes marqueeTopbar{ from{ transform: translateX(0);} to{ transform: translateX(50%);} }
[dir="rtl"] .topbar-track{ animation-direction: reverse; }

/* ========== NAVBAR ========== */
.navbar{
  position: sticky; top:0;
  z-index: 100;
  background: rgba(10,10,16,.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom:1px solid var(--line-2);
  transition: all .4s var(--ease-2);
}
.navbar.scrolled{
  background: rgba(7,7,11,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,.6);
}
.nav-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display:flex; align-items:center; gap:24px;
}
.nav-logo{
  display:flex; align-items:center; gap:12px;
  position: relative;
  flex-shrink: 0;
}
.nav-logo-glow{
  position:absolute; inset:-8px;
  background: radial-gradient(circle, rgba(212,160,23,.25), transparent 70%);
  border-radius:50%;
  opacity:0;
  transition: opacity .4s;
  filter: blur(8px);
}
.nav-logo:hover .nav-logo-glow{ opacity:1; }
.nav-logo-svg{
  width:48px; height:48px;
  filter: drop-shadow(0 4px 12px rgba(212,160,23,.4));
  transition: transform .5s var(--ease-2);
}
.nav-logo:hover .nav-logo-svg{ transform: rotate(-8deg) scale(1.05); }
.logo-text{ display:flex; flex-direction:column; line-height:1.1; }
.logo-name{ font-family: var(--font-en); font-size:18px; font-weight:600; letter-spacing:.5px; }
.logo-name strong{ font-weight:900; background: var(--grad-text); -webkit-background-clip:text; background-clip:text; color:transparent; }
.logo-sub{ font-size:9.5px; color: var(--gold); letter-spacing:1.5px; font-weight:600; text-transform: uppercase; margin-top:2px; }

.nav-links{
  display:flex; gap:6px;
  margin-inline-start: auto;
}
.nav-link{
  display:flex; align-items:center; gap:6px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  position: relative;
  transition: all .3s var(--ease-2);
}
.nav-link:hover{ color: var(--gold-bright); background: rgba(212,160,23,.08); }
.nav-link.active{ color: var(--gold-bright); background: rgba(212,160,23,.1); }
.nl-num{
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--gold);
  opacity:.6;
  font-weight: 700;
}

.btn-quote-nav{
  display:inline-flex; align-items:center; gap:8px;
  padding: 11px 20px;
  background: var(--grad-gold);
  color: #15151f;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease-2);
  box-shadow: 0 8px 24px -6px rgba(212,160,23,.5);
}
.btn-quote-nav:hover{ box-shadow: 0 14px 30px -6px rgba(212,160,23,.7); }
.btn-quote-nav::before{
  content:''; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4), transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-2);
}
.btn-quote-nav:hover::before{ transform: translateX(100%); }

.hamburger{
  display:none;
  width:42px; height:42px;
  border:1px solid var(--line);
  border-radius:12px;
  background: rgba(255,255,255,.03);
  flex-direction:column; align-items:center; justify-content:center;
  gap:5px;
}
.hamburger span{
  display:block; width:18px; height:2px;
  background: var(--gold);
  border-radius:2px;
  transition: all .3s var(--ease-2);
}
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-progress{
  position:absolute; bottom:-1px; left:0; right:0;
  height: 2px;
  background: rgba(255,255,255,.04);
}
.nav-progress-bar{
  height:100%;
  width: 0%;
  background: var(--grad-gold);
  box-shadow: 0 0 8px var(--gold);
  transition: width .15s linear;
}

@media (max-width: 1100px){
  .nav-links{
    position: fixed; inset: 70px 0 0;
    flex-direction: column;
    background: rgba(7,7,11,.98);
    backdrop-filter: blur(20px);
    padding: 40px 24px;
    transform: translateX(-100%);
    transition: transform .5s var(--ease-2);
    align-items:stretch;
    gap: 8px;
  }
  [dir="rtl"] .nav-links{ transform: translateX(100%); }
  .nav-links.active{ transform: translateX(0); }
  .nav-link{ font-size:18px; padding:14px 16px; }
  .hamburger{ display:flex; margin-inline-start:auto; }
  .btn-quote-nav{ display:none; }
}

/* ========== BUTTONS ========== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-2), box-shadow .3s, background .3s, color .3s, border-color .3s;
  white-space: nowrap;
  cursor: none;
  isolation: isolate;
}
.btn-lg{ padding: 18px 34px; font-size:15px; }
.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn-full{ width:100%; }

.btn-gold{
  background: var(--grad-gold);
  color: #15151f;
  box-shadow: 0 10px 30px -8px rgba(212,160,23,.55);
}
.btn-gold:hover{ box-shadow: 0 18px 40px -8px rgba(212,160,23,.75); }
.btn-gold .btn-content{ position:relative; z-index:2; display:inline-flex; align-items:center; gap:8px; }
.btn-shine{
  position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5), transparent 70%);
  transform: translateX(-150%);
  transition: transform .8s var(--ease-2);
  z-index:1;
}
.btn:hover .btn-shine{ transform: translateX(150%); }

.btn-ghost{
  background: rgba(255,255,255,.03);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover{
  background: rgba(212,160,23,.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}
[dir="rtl"] .btn svg, [dir="rtl"] .btn-quote-nav svg{ transform: scaleX(-1); }

/* ========== HERO — World-class with Video Background ========== */
.hero{
  position: relative;
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #06060a;
}

/* === VIDEO BG === */
.hero-video{
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video video{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Subtle — the CSS light layers are the real background */
  filter: contrast(1.15) saturate(1.1) brightness(.5);
  opacity: .55;
  mix-blend-mode: screen;
  transform: scale(1.06);
}

/* === LAYER 1: Animated Mesh Blobs (HUGE + SATURATED) === */
.hero-mesh{
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-mesh-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.hmb-1{
  top: -25%; left: -15%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(255,216,111,.55), transparent 65%);
  animation: meshFloat1 20s ease-in-out infinite;
}
.hmb-2{
  bottom: -30%; right: -20%;
  width: 75%; height: 75%;
  background: radial-gradient(circle, rgba(212,160,23,.55), transparent 65%);
  animation: meshFloat2 24s ease-in-out infinite;
}
.hmb-3{
  top: 35%; left: 50%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(255,200,80,.4), transparent 65%);
  animation: meshFloat3 18s ease-in-out infinite;
}
.hmb-4{
  top: 50%; left: 5%;
  width: 45%; height: 45%;
  background: radial-gradient(circle, rgba(168,124,16,.6), transparent 65%);
  animation: meshFloat4 22s ease-in-out infinite;
}
@keyframes meshFloat1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%   { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes meshFloat2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%   { transform: translate(-100px, -80px) scale(1.2); }
}
@keyframes meshFloat3{
  0%,100%{ transform: translate(-50%, 0) scale(1); }
  50%   { transform: translate(-30%, -40px) scale(1.1); }
}
@keyframes meshFloat4{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%   { transform: translate(60px, -60px) scale(1.18); }
}

/* === LAYER 2: Massive sun-like glow === */
.hero-sun{
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -30%);
  background:
    radial-gradient(circle, rgba(255,216,111,.35) 0%, rgba(212,160,23,.2) 25%, transparent 60%);
  filter: blur(40px);
  z-index: 2;
  pointer-events: none;
  animation: sunPulse 6s ease-in-out infinite;
}
@keyframes sunPulse{
  0%,100%{ opacity: .9; transform: translate(-50%, -30%) scale(1);}
  50%   { opacity: 1;  transform: translate(-50%, -30%) scale(1.08);}
}

/* === LAYER 3: Aurora light beams (top) === */
.hero-aurora{
  position: absolute;
  top: -50%;
  left: 50%;
  width: 140%;
  height: 150%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  filter: blur(40px);
  opacity: .6;
}
.hero-aurora-1{
  background: conic-gradient(from 220deg at 50% 0%,
    transparent 0deg,
    rgba(255,216,111,.5) 25deg,
    transparent 50deg,
    rgba(212,160,23,.4) 90deg,
    transparent 130deg);
  animation: auroraSpin 18s linear infinite;
}
.hero-aurora-2{
  background: conic-gradient(from 130deg at 50% 0%,
    transparent 0deg,
    rgba(255,255,255,.25) 20deg,
    transparent 50deg,
    rgba(255,216,111,.35) 100deg,
    transparent 140deg);
  animation: auroraSpin 26s linear infinite reverse;
  opacity: .4;
}
@keyframes auroraSpin{
  from{ transform: translateX(-50%) rotate(0deg); }
  to  { transform: translateX(-50%) rotate(360deg); }
}

/* === LAYER 4: Diagonal light streak (sweeps periodically) === */
.hero-streak{
  position: absolute;
  top: -60%; left: -50%;
  width: 250%; height: 250%;
  background: linear-gradient(115deg,
    transparent 42%,
    rgba(255,216,111,.18) 48%,
    rgba(255,255,255,.45) 50%,
    rgba(255,216,111,.18) 52%,
    transparent 58%);
  mix-blend-mode: screen;
  z-index: 4;
  pointer-events: none;
  filter: blur(2px);
  animation: streakSweep 8s ease-in-out infinite;
}
@keyframes streakSweep{
  0%   { transform: translate(-30%, -30%); opacity: 0; }
  20%  { opacity: 1; }
  60%  { transform: translate(0%, 0%); opacity: 1; }
  100% { transform: translate(20%, 20%); opacity: 0; }
}

/* === LAYER 5: Bottom spotlight === */
.hero-spotlight{
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 90%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(212,160,23,.45), rgba(168,124,16,.2) 35%, transparent 65%);
  filter: blur(50px);
  z-index: 4;
  pointer-events: none;
  animation: spotlightBreathe 5s ease-in-out infinite;
}
@keyframes spotlightBreathe{
  0%,100%{ opacity: .7; }
  50%   { opacity: 1; }
}

/* === LAYER 6: Tint (lighter so video shows + adds gold tone) === */
.hero-tint{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,11,.25) 0%, rgba(7,7,11,.05) 35%, rgba(7,7,11,.85) 100%),
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(7,7,11,.3) 80%);
  z-index: 5;
  pointer-events: none;
}

/* === LAYER 7: Tech grid lines (subtle, on top) === */
.hero-grid-lines{
  position: absolute; inset: 0;
  z-index: 6;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212,160,23,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black, transparent);
  opacity: .7;
}

/* === LAYER 8: Vignette (dark edges) === */
.hero-vignette{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 95% 100% at center, transparent 40%, rgba(0,0,0,.65) 100%);
  z-index: 7;
  pointer-events: none;
}

/* Particles — above all bg layers */
.hero-particles{ position: absolute; inset: 0; pointer-events: none; z-index: 8; }

/* Corner markers */
.hero-marker{
  position: absolute;
  z-index: 5;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(212,160,23,.18);
  border-radius: 100px;
  backdrop-filter: blur(12px);
}
.hm-tl{ top: 28px; inset-inline-start: 28px; }
.hm-tr{ top: 28px; inset-inline-end: 28px; }
.hm-dot{
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: livePulse 1.4s infinite;
}
.hm-sep{
  width: 1px; height: 12px;
  background: rgba(212,160,23,.3);
  display: inline-block;
}

/* === Editorial center stage === */
.hero-stage{
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
}
.hero-stage .hero-badge{
  margin: 0 auto 26px;
}

/* === Hero title — high specificity overrides legacy === */
.hero-title.hero-title-center{
  text-align: center;
  font-size: clamp(26px, 3.4vw, 50px) !important;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 28px;
}
.hero-title.hero-title-center .ht-line{
  display: block;
  padding: 0 !important;
  margin-bottom: 4px;
}
.hero-title.hero-title-center .ht-mask{
  display: inline-block;
  overflow: visible;          /* never clip Arabic letters/diacritics */
  margin: 0 0.14em;
  vertical-align: baseline;
}
.hero-title.hero-title-center .ht-text{
  display: inline-block;
  transform: translateY(24px);
  opacity: 0;
  animation: htRise .9s var(--ease-2) forwards;
}
@keyframes htRise{ to{ transform: translateY(0); opacity: 1; } }

/* staggered reveal */
.hero-title.hero-title-center .ht-line:nth-child(1) .ht-mask:nth-child(1) .ht-text{ animation-delay:.15s; }
.hero-title.hero-title-center .ht-line:nth-child(1) .ht-mask:nth-child(2) .ht-text{ animation-delay:.28s; }
.hero-title.hero-title-center .ht-line:nth-child(2) .ht-mask:nth-child(1) .ht-text{ animation-delay:.42s; }
.hero-title.hero-title-center .ht-line:nth-child(2) .ht-mask:nth-child(2) .ht-text{ animation-delay:.54s; }
.hero-title.hero-title-center .ht-line:nth-child(2) .ht-mask:nth-child(3) .ht-text{ animation-delay:.66s; }

.hero-title.hero-title-center .ht-italic{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
/* Gold word — solid bright gold, fully readable, no clip-box */
.hero-title.hero-title-center .ht-gold{
  -webkit-text-stroke: 0;
  background: none !important;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--gold-bright) !important;
  text-shadow: 0 2px 24px rgba(212,160,23,.45);
  animation: htRise .9s var(--ease-2) .54s forwards;
}

.hero-stage .hero-desc{
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.hero-stage .hero-actions{
  justify-content: center;
}

/* === Bottom row === */
.hero-bottom{
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - 56px);
  display: flex; justify-content: space-between; align-items: end;
  pointer-events: none;
}
.hero-bottom > *{ pointer-events: auto; }

.hb-stats{
  display: flex; align-items: center; gap: 18px;
  padding: 14px 24px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(212,160,23,.18);
  border-radius: 100px;
  backdrop-filter: blur(16px);
}
.hb-stat{ text-align: center; }
.hb-stat strong{
  display: block;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -.5px;
  line-height: 1;
}
.hb-stat span{
  display: block;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 600;
}
.hb-divider{
  width: 1px; height: 22px;
  background: rgba(212,160,23,.25);
}

/* Scroll hint as bottom-right */
.hero .scroll-hint{
  position: static;
  transform: none;
}

/* Mute button */
.hero-mute{
  position: absolute;
  bottom: 28px; inset-inline-end: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(212,160,23,.2);
  color: #fff;
  z-index: 10;
  display: none; /* shown on larger screens via media query */
  align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  transition: all .3s;
}
.hero-mute:hover{ background: var(--gold); color: #0d0d12; border-color: transparent; }
.hero-mute svg{ width: 20px; }
.hero-mute.muted .mute-on{ opacity: .5; }

@media (max-width: 1024px){
  .hero{ height: auto; min-height: 100vh; padding: 80px 0 40px; }
  .hm-tl, .hm-tr{ top: 14px; padding: 8px 12px; font-size: 10px; }
  .hero-bottom{ position: relative; bottom: auto; left: auto; transform: none; flex-direction: column; gap: 24px; align-items: center; padding: 40px 0 0; }
}
@media (max-width: 600px){
  .hb-stats{ flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .hb-divider{ display: none; }
}

/* === LEGACY mesh-gradient (kept hidden, was old hero) === */
.mesh-gradient{
  display: none;
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.mesh-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  animation: meshFloat 18s ease-in-out infinite;
  will-change: transform;
}
.mb-1{ top: -10%; left: -8%;  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(212,160,23,.45), transparent 65%);
  animation-delay: 0s; }
.mb-2{ bottom: -15%; right: -10%; width: 55%; height: 55%;
  background: radial-gradient(circle, rgba(255,216,111,.35), transparent 65%);
  animation-delay: -5s; }
.mb-3{ top: 30%; left: 40%; width: 40%; height: 40%;
  background: radial-gradient(circle, rgba(168,124,16,.3), transparent 60%);
  animation-delay: -10s; }
.mb-4{ top: 60%; left: 10%; width: 35%; height: 35%;
  background: radial-gradient(circle, rgba(122,90,12,.4), transparent 60%);
  animation-delay: -14s; }
@keyframes meshFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  33%   { transform: translate(40px, -30px) scale(1.08); }
  66%   { transform: translate(-30px, 40px) scale(.95); }
}

.hero-bg-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(212,160,23,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  opacity:.6;
  z-index: 1;
}
.hero-particles{ position:absolute; inset:0; pointer-events:none; z-index: 1; }
.particle{
  position:absolute;
  width: 3px; height:3px;
  background: var(--gold-bright);
  border-radius:50%;
  box-shadow: 0 0 10px var(--gold);
  opacity:.6;
  animation: particleRise linear infinite;
}
@keyframes particleRise{
  from{ transform: translateY(100vh); opacity: 0; }
  10%{ opacity: .8; }
  90%{ opacity: .8; }
  to  { transform: translateY(-20vh); opacity: 0; }
}

/* Massive watermark */
.hero-watermark{
  position:absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(140px, 26vw, 380px);
  letter-spacing: -12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,160,23,.05);
  pointer-events:none;
  white-space: nowrap;
  display:flex; gap:40px;
  z-index: 1;
  line-height: 1;
}
.wm-line{ display:inline-block; }
.wm-power{ -webkit-text-stroke-color: rgba(212,160,23,.09); }

/* Rotating brand ring (right side) */
.hero-ring{
  position: absolute;
  top: 50%;
  inset-inline-end: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  z-index: 1;
  opacity: .85;
  pointer-events: none;
}
.hero-ring svg{ width:100%; height:100%; animation: spinSlow 40s linear infinite; }
.ring-text{
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  fill: var(--gold);
}
.ring-center{
  position:absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 30px rgba(212,160,23,.5));
}
@keyframes spinSlow{ to{ transform: rotate(360deg); } }

.hero-inner{
  position: relative;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  z-index: 4;
}

.hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 18px;
  background: rgba(212,160,23,.08);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInUp .8s var(--ease-2) .3s forwards;
}
@keyframes fadeInUp{ from{ opacity:0; transform: translateY(20px);} to{opacity:1; transform:none;} }
.badge-pulse{
  width:7px; height:7px; border-radius:50%;
  background: var(--gold-bright);
  position: relative;
}
.badge-pulse::before{
  content:''; position:absolute; inset:0; border-radius:50%;
  background: var(--gold-bright);
  animation: badgePulse 2s ease-out infinite;
}
@keyframes badgePulse{ 0%{ transform:scale(1); opacity:.7;} 100%{ transform:scale(3); opacity:0;} }

/* === Cinematic title === */
.hero-title{
  font-size: clamp(44px, 6.8vw, 110px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 36px;
}
.ht-line{ display: block; }
.ht-line-2{ padding-inline-start: 60px; }
.ht-line-3{ padding-inline-start: 120px; }

.ht-mask{
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-inline-end: 0.18em;
}
.ht-text{
  display: inline-block;
  transform: translateY(110%);
  animation: maskUp 1.1s var(--ease-2) forwards;
}
@keyframes maskUp{ to{ transform: translateY(0); } }

.ht-line-1 .ht-mask:nth-child(1) .ht-text{ animation-delay:.1s; }
.ht-line-1 .ht-mask:nth-child(2) .ht-text{ animation-delay:.2s; }
.ht-line-2 .ht-mask:nth-child(1) .ht-text{ animation-delay:.35s; }
.ht-line-2 .ht-mask:nth-child(2) .ht-text{ animation-delay:.45s; }
.ht-line-3 .ht-mask:nth-child(1) .ht-text{ animation-delay:.6s; }
.ht-line-3 .ht-mask:nth-child(2) .ht-text{ animation-delay:.7s; }

.ht-italic{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--text-2);
}
.ht-gold{
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: maskUp 1.1s var(--ease-2) .45s forwards, goldShimmer 3s linear infinite;
}
@keyframes goldShimmer{ to{ background-position: 200% center; } }
.ht-outline{
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  font-weight: 900;
}

/* Meta bar — stats line under title */
.hero-meta-bar{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(28,28,40,.7), rgba(15,15,21,.7));
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 32px;
  opacity:0;
  animation: fadeInUp .8s var(--ease-2) .9s forwards;
}
.hmb-cell{ text-align: start; }
.hmb-label{
  display:block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-3);
  margin-bottom: 4px;
  font-weight: 700;
}
.hmb-val{
  display:block;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -.5px;
}

.hero-desc{
  font-size: 17px;
  color: var(--text-3);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.85;
  opacity:0;
  animation: fadeInUp .8s var(--ease-2) 1.1s forwards;
}
.hero-desc strong{ color: var(--gold); font-weight: 700; }

.hero-actions{
  display:flex; gap: 14px; flex-wrap:wrap;
  opacity:0;
  animation: fadeInUp .8s var(--ease-2) 1.25s forwards;
}

/* Hero right sidebar */
.hero-right{ position: relative; z-index: 2; }
.hero-sidebar{
  display: flex; flex-direction: column; gap: 18px;
  max-width: 380px;
  margin-inline-start: auto;
  opacity:0;
  animation: fadeInUp 1s var(--ease-2) .8s forwards;
}
.sidebar-card{
  background: linear-gradient(135deg, rgba(28,28,40,.85), rgba(15,15,21,.85));
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.sb-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.sb-live{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-en);
  font-size: 10px; font-weight: 800;
  color: #4ade80;
  letter-spacing: 2px;
  padding: 4px 10px;
  background: rgba(74,222,128,.1);
  border-radius: 20px;
}
.sb-live i{
  width:6px; height:6px; border-radius:50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse{ 0%,100%{ opacity:1;} 50%{ opacity:.4;} }
.sb-time{ font-family: var(--font-en); font-size: 11px; color: var(--text-3); letter-spacing: 1.5px; }
.sb-trust{ display:flex; gap:14px; align-items:center; }

.trust-avatars{ display:flex; align-items:center; }
.trust-avatars img{
  width: 36px; height:36px;
  border-radius: 50%;
  border: 2.5px solid #0d0d14;
  margin-inline-end: -10px;
  object-fit: cover;
}
.trust-more{
  width: 36px; height:36px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #15151f;
  font-family: var(--font-en);
  font-size: 10px; font-weight: 800;
  display: flex; align-items:center; justify-content:center;
  border: 2.5px solid #0d0d14;
}
.trust-text{ display:flex; flex-direction:column; gap:2px; }
.trust-stars{ color: var(--gold); font-size:13px; letter-spacing:2px; }
.trust-text span{ font-size: 12px; color: var(--text-3); }
.trust-text strong{ color: var(--gold-bright); font-weight: 800; }

.sidebar-slider{ padding: 24px; }
.card-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(212,160,23,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events:none;
}
.card-slider{ position:relative; min-height: 200px; }
.card-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-2), transform .6s var(--ease-2);
  pointer-events:none;
}
.card-slide.active{ opacity:1; transform: translateY(0); pointer-events:auto; }
.cs-icon{
  font-size: 32px;
  margin-bottom: 12px;
  display:inline-block;
  filter: drop-shadow(0 4px 14px rgba(212,160,23,.4));
}
.cs-num{
  position:absolute; top:0; inset-inline-end:0;
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
}
.card-slide h3{ font-size:20px; font-weight:800; margin-bottom:8px; }
.card-slide p{ color: var(--text-3); font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.cs-tags{ display:flex; flex-wrap:wrap; gap:6px; }
.cs-tags span{
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(212,160,23,.08);
  color: var(--gold-bright);
  border:1px solid rgba(212,160,23,.2);
  border-radius: 100px;
}
.card-controls{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 16px;
  margin-top: 16px;
  border-top:1px solid var(--line-2);
}
.card-dots-nav{ display:flex; gap:6px; }
.cd-dot{
  width: 22px; height:3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  transition: all .3s;
}
.cd-dot.active{ background: var(--gold); width: 32px; box-shadow: 0 0 6px var(--gold); }
.card-arrows{ display:flex; gap:6px; }
.cd-arrow{
  width: 32px; height:32px;
  border-radius: 50%;
  background: rgba(212,160,23,.08);
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  transition: all .3s;
}
.cd-arrow:hover{ background: var(--gold); color: #0d0d12; }
.cd-arrow svg{ width: 14px; }
[dir="rtl"] .cd-arrow svg{ transform: scaleX(-1); }

.scroll-hint{
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 2px;
  z-index: 3;
  text-transform: uppercase;
}
.scroll-wheel{
  width: 22px; height:34px;
  border:1.5px solid var(--gold);
  border-radius:14px;
  display:flex; justify-content:center;
  padding: 5px 0;
}
.scroll-dot{
  width:3px; height:6px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot{ 0%{ transform: translateY(0); opacity:1;} 80%{ transform: translateY(14px); opacity:0;} 100%{ opacity:0;} }

/* ========== KINETIC TEXT (huge running) ========== */
.kinetic{
  padding: 40px 0;
  overflow: hidden;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  position: relative;
}
.kinetic-2{ background: var(--bg); border-block-color: var(--line-2); }
.kinetic-track{
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.kinetic-row{
  display: inline-flex; align-items: center; gap: 40px;
  font-family: var(--font-en);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  line-height: 1;
  animation: kineticScroll 22s linear infinite;
  padding-inline-end: 40px;
}
.kinetic-row span{ display:inline-block; }
.kinetic-row > span:not(.ki-star):not(.ki-outline):not(.ki-italic){
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ki-outline{
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.ki-italic{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-2);
  letter-spacing: -2px;
}
.ki-star{
  font-size: .6em;
  color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold));
}
@keyframes kineticScroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
[dir="rtl"] .kinetic-row{ animation-direction: reverse; }
.kinetic-2 .kinetic-row{ animation-duration: 28s; }

/* ========== BRANDS ========== */
.brands-strip{
  padding: 50px 0;
  border-block: 1px solid var(--line-2);
  background: linear-gradient(90deg, var(--bg-2), var(--bg-3), var(--bg-2));
  position: relative;
  overflow: hidden;
}
.brands-strip::before, .brands-strip::after{
  content:''; position:absolute; top:0; bottom:0; width: 120px;
  z-index: 2; pointer-events: none;
}
.brands-strip::before{ left:0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.brands-strip::after{ right:0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.bs-label{
  text-align:center;
  font-size: 12px;
  color: var(--text-4);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
}
.bs-marquee{ overflow:hidden; }
.bs-track{
  display:flex; gap:50px; align-items:center;
  animation: brandsScroll 30s linear infinite;
  white-space: nowrap;
}
.bs-item{
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,.4);
  letter-spacing: 1px;
  transition: color .3s, transform .3s;
}
.bs-item:hover{ color: var(--gold-bright); transform: scale(1.08); }
.bs-sep{
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity:.6;
}
@keyframes brandsScroll{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
[dir="rtl"] .bs-track{ animation-direction: reverse; }

/* ========== STATS RINGS ========== */
.stats{ position: relative; padding: 110px 0; }
.stats-header{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 70px;
}
.sh-right{
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.85;
  max-width: 480px;
  justify-self: end;
}
.sh-right strong{ color: var(--gold); font-weight: 800; }

.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-ring{
  text-align:center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(28,28,40,.4), rgba(15,15,21,.4));
  border:1px solid var(--line-2);
  transition: all .4s var(--ease-2);
}
.stat-ring:hover{
  border-color: var(--gold);
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(28,28,40,.7), rgba(15,15,21,.7));
}
.ring-wrap{
  position: relative;
  width: 130px; height: 130px;
  margin: 0 auto 20px;
}
.ring-wrap svg{
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.ring-track, .ring-fill{
  fill: none;
  stroke-width: 4;
}
.ring-track{ stroke: rgba(255,255,255,.06); }
.ring-fill{
  stroke: url(#ringGrad);
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  filter: drop-shadow(0 0 6px var(--gold));
  transition: stroke-dashoffset 1.8s var(--ease-2);
}
/* Use solid gold via hack since svg defs reusable */
.stat-ring svg circle.ring-fill{ stroke: var(--gold); }

.ring-center-num{
  position: absolute;
  inset: 0;
  display:flex; align-items:center; justify-content:center;
}
.ring-center-num strong{
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip:text; background-clip:text;
  color: transparent;
  letter-spacing: -1.5px;
}
.ring-center-num sup{
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-inline-start: 2px;
}
.stat-ring p{ font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.stat-detail{ font-size: 12px; color: var(--text-4); letter-spacing: 1px; }

@media (max-width: 1024px){
  .stats-header{ grid-template-columns: 1fr; gap: 24px; }
  .sh-right{ justify-self: start; }
}
@media (max-width: 768px){ .stats-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ========== SECTIONS ========== */
.section{ padding: 130px 0; position: relative; }
.section-glow{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height:700px;
  background: radial-gradient(circle, rgba(212,160,23,.08), transparent 60%);
  pointer-events:none;
  filter: blur(60px);
  z-index: 0;
}

/* Big decorative section number */
.about-deco-num{
  position: absolute;
  top: 50px;
  inset-inline-end: 60px;
  font-family: var(--font-en);
  font-size: clamp(150px, 22vw, 320px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,160,23,.07);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -8px;
  z-index: 0;
}

.section-header{ text-align:center; max-width: 760px; margin: 0 auto 70px; position: relative; z-index: 2; }
.section-tag{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.tag-line{
  width: 30px; height: 1.5px;
  background: var(--gold);
  display:inline-block;
}
.section-title{
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.section-sub{
  color: var(--text-3);
  font-size: 17px;
  line-height: 1.8;
}
.gold-text{
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip:text;
  color: transparent;
  animation: goldShimmer 4s linear infinite;
}

/* ========== ABOUT ========== */
.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items:center;
  position: relative; z-index: 2;
}

.about-orbit{
  position: relative;
  width: 100%; aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.orbit-ring{
  position:absolute; inset:0;
  border:1.5px dashed rgba(212,160,23,.18);
  border-radius:50%;
}
.orbit-r1{ animation: spin 30s linear infinite; }
.orbit-r2{ inset:10%; border-style: solid; border-color: rgba(212,160,23,.08); animation: spinReverse 22s linear infinite; }
.orbit-r3{ inset:20%; border-style:dashed; border-color: rgba(212,160,23,.12); animation: spin 18s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg);} }
@keyframes spinReverse{ to{ transform: rotate(-360deg);} }

.orbit-dot{
  position: absolute;
  width: 56px; height:56px;
  background: linear-gradient(135deg, #1f1f2c, #15151f);
  border:1px solid var(--line);
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  font-size: 24px;
  box-shadow: var(--shadow-card);
  animation: orbitFloat 4s ease-in-out infinite;
}
.orbit-d1{ top: 5%; left: 50%; transform: translateX(-50%); }
.orbit-d2{ top: 50%; right: 0; transform: translateY(-50%); animation-delay:-1s; }
.orbit-d3{ bottom: 5%; left: 50%; transform: translateX(-50%); animation-delay:-2s; }
.orbit-d4{ top: 50%; left: 0; transform: translateY(-50%); animation-delay:-3s; }
@keyframes orbitFloat{ 0%,100%{ filter: drop-shadow(0 0 0 transparent);} 50%{ filter: drop-shadow(0 8px 20px rgba(212,160,23,.4));} }

.orbit-center{
  position:absolute; inset: 28%;
  display:flex; align-items:center; justify-content:center;
  filter: drop-shadow(0 0 40px rgba(212,160,23,.4));
}
.orbit-center svg{ width:100%; height:100%; }

.about-lead{
  font-size: 19px;
  color: var(--text-2);
  margin-bottom: 30px;
  line-height: 1.85;
}
.about-features{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}
.af-item{
  display:flex; gap:14px; align-items:flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  border:1px solid var(--line-2);
  transition: all .35s var(--ease-2);
}
.af-item:hover{
  border-color: var(--gold);
  background: rgba(212,160,23,.05);
  transform: translateY(-4px);
}
.af-icon{
  width: 44px; height:44px;
  flex-shrink:0;
  background: linear-gradient(135deg, rgba(212,160,23,.18), rgba(212,160,23,.04));
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-size: 20px;
  border:1px solid var(--line);
}
.af-item strong{ display:block; font-weight: 800; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.af-item p{ font-size:13.5px; color: var(--text-3); line-height:1.6; }

.about-cta-row{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.about-play{
  display:inline-flex; align-items:center; gap:14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: color .3s;
}
.play-circle{
  width: 44px; height:44px;
  border-radius: 50%;
  background: rgba(212,160,23,.1);
  border:1px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  position: relative;
}
.play-circle::after{
  content:''; position:absolute; inset:-3px;
  border:1px solid var(--gold);
  border-radius:50%;
  animation: playPulse 2s ease-out infinite;
}
@keyframes playPulse{ 0%{ transform:scale(1); opacity:.7;} 100%{ transform:scale(1.4); opacity:0;} }
.play-circle svg{ width: 14px; margin-inline-start: 2px; }
[dir="rtl"] .play-circle svg{ transform: scaleX(-1); }
.about-play:hover{ color: var(--gold-bright); }

/* ========== SERVICES BENTO ========== */
.bento-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 22px;
  position: relative; z-index: 2;
}
.bento-card{
  position: relative;
  padding: 32px;
  background: linear-gradient(160deg, rgba(28,28,40,.6), rgba(15,15,21,.6));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease-2);
  isolation: isolate;
}
.bento-card::before{
  content:''; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, -100px) var(--my, -100px), rgba(212,160,23,.18), transparent 40%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events:none;
  z-index:-1;
}
.bento-card:hover::before{ opacity:1; }
.bento-card:hover{
  border-color: var(--gold);
  transform: translateY(-6px);
  background: linear-gradient(160deg, rgba(28,28,40,.8), rgba(15,15,21,.8));
}
.b-glow{
  position:absolute; top:-50%; left:-50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 90deg, transparent 0deg, transparent 340deg, var(--gold) 360deg);
  opacity: 0;
  animation: glowSpin 3s linear infinite;
  z-index:-2;
  filter: blur(20px);
}
.bento-card:hover .b-glow{ opacity:.3; }
@keyframes glowSpin{ to{ transform: rotate(360deg);} }
.b-pattern{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,160,23,.1), transparent 50%),
    linear-gradient(rgba(212,160,23,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.04) 1px, transparent 1px);
  background-size: cover, 24px 24px, 24px 24px;
  opacity:.6;
  pointer-events:none;
}
.b-num{
  position: absolute;
  top: 22px; inset-inline-end: 24px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  opacity: .5;
  letter-spacing: 3px;
}
.b-icon{
  font-size: 36px;
  margin-bottom: 18px;
  display:inline-block;
  filter: drop-shadow(0 4px 14px rgba(212,160,23,.4));
  transition: transform .4s var(--ease-bounce);
}
.bento-card:hover .b-icon{ transform: translateY(-4px) scale(1.1) rotate(-5deg); }
.b-icon-lg{ font-size: 56px; margin-bottom: 22px; display:inline-block; filter: drop-shadow(0 4px 14px rgba(212,160,23,.4)); }
.bento-card h3{ font-size: 22px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.bento-feature h3{ font-size: 30px; }
.bento-card p{ color: var(--text-3); font-size: 14.5px; line-height: 1.75; margin-bottom: 18px; }
.bento-feature p{ font-size: 15.5px; }
.b-list{ margin-bottom: 24px; }
.b-list li{
  position: relative;
  padding-inline-start: 22px;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.b-list li::before{
  content: '';
  position: absolute;
  inset-inline-start: 0; top:8px;
  width: 12px; height:12px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='black' stroke-width='3'><polyline points='3 8 7 12 13 4'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='black' stroke-width='3'><polyline points='3 8 7 12 13 4'/></svg>") center/contain no-repeat;
}
.b-cta{
  display: inline-flex; align-items:center; gap:6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  transition: all .3s;
}
[dir="rtl"] .b-cta svg{ transform: scaleX(-1); }
.b-cta:hover{ gap:10px; color: var(--gold); }

.bento-feature{ grid-column: span 2; grid-row: span 2; }
.bento-wide{ grid-column: span 2; }
.bento-cta{
  grid-column: span 2;
  background: var(--grad-gold);
  color: #15151f;
  text-align:center;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  position: relative;
  overflow:hidden;
}
.bento-cta::before{ display:none; }
.bcta-bg{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.15), transparent 50%);
  pointer-events:none;
}
.bento-cta .b-icon{ filter:none; }
.bento-cta h3{ color: #15151f; }
.bento-cta p{ color: rgba(0,0,0,.7); }
.bento-cta .btn-gold{
  background: #15151f;
  color: var(--gold-bright);
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.5);
}

@media (max-width: 1024px){
  .bento-grid{ grid-template-columns: repeat(2, 1fr); }
  .bento-feature, .bento-wide, .bento-cta{ grid-column: span 2; grid-row: auto; }
}
@media (max-width: 600px){
  .bento-grid{ grid-template-columns: 1fr; }
  .bento-feature, .bento-wide, .bento-cta{ grid-column: span 1; }
}

/* ========== PROCESS ========== */
.process-timeline{
  position: relative;
  display:grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-top: 50px;
  z-index: 2;
}
.pt-line{
  position: absolute;
  top: 50px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pt-step{ text-align: center; position: relative; }
.pt-num{
  width: 56px; height:56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: #15151f;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 18px;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 26px;
  position: relative;
  box-shadow: 0 8px 24px -4px rgba(212,160,23,.5);
  z-index: 2;
}
.pt-num::before{
  content:''; position:absolute; inset:-6px;
  border: 1.5px dashed var(--gold);
  border-radius:50%;
  opacity: 0;
  transition: opacity .3s;
}
.pt-step:hover .pt-num::before{ opacity:1; animation: spin 8s linear infinite; }
.pt-card{
  padding: 26px 20px;
  background: linear-gradient(180deg, rgba(28,28,40,.4), rgba(15,15,21,.4));
  border:1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all .35s var(--ease-2);
}
.pt-card:hover{
  border-color: var(--gold);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(28,28,40,.6), rgba(15,15,21,.6));
}
.pt-icon{ font-size: 28px; margin-bottom: 10px; }
.pt-card h4{ font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.pt-card p{ font-size: 13.5px; color: var(--text-3); line-height: 1.7; }

@media (max-width: 1024px){
  .process-timeline{ grid-template-columns: repeat(2, 1fr); }
  .pt-line{ display:none; }
}
@media (max-width: 600px){ .process-timeline{ grid-template-columns: 1fr; } }

/* ========== PORTFOLIO ========== */
.portfolio-filters{
  display:flex; gap:10px; justify-content:center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.pf-filter{
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line-2);
  color: var(--text-3);
  font-size: 13.5px;
  font-weight: 600;
  transition: all .3s;
}
.pf-filter:hover{ color: var(--gold-bright); border-color: var(--gold); }
.pf-filter.active{
  background: var(--grad-gold);
  color: #15151f;
  border-color: transparent;
  box-shadow: 0 6px 20px -4px rgba(212,160,23,.5);
}

.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
  position: relative; z-index: 2;
}
.pf-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border:1px solid var(--line-2);
  transition: all .5s var(--ease-2);
}
.pf-large{ grid-column: span 2; grid-row: span 2; }
.pf-card.hidden-cat{ display:none; }

.pf-img{ position:absolute; inset:0; }
.pf-img img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .8s var(--ease-2), filter .5s;
  filter: grayscale(.4) brightness(.7);
}
.pf-card:hover .pf-img img{
  transform: scale(1.08);
  filter: grayscale(0) brightness(1);
}
.pf-overlay{
  position:absolute; inset:0;
  padding: 24px;
  display:flex; flex-direction:column; justify-content:flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.95));
  transition: all .5s var(--ease-2);
}
.pf-cat{
  display:inline-block;
  padding: 4px 12px;
  background: rgba(212,160,23,.18);
  border:1px solid var(--gold);
  color: var(--gold-bright);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  width: max-content;
}
.pf-overlay h4{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}
.pf-large .pf-overlay h4{ font-size: 30px; }
.pf-overlay p{
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 14px;
  opacity: 0;
  max-height: 0;
  transition: all .4s var(--ease-2);
}
.pf-card:hover .pf-overlay p{ opacity:1; max-height: 100px; }
.pf-btn{
  display:inline-flex; align-items:center; gap:6px;
  padding: 8px 16px;
  background: var(--grad-gold);
  color: #15151f;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 800;
  width: max-content;
  transform: translateY(20px);
  opacity:0;
  transition: all .4s var(--ease-2);
}
.pf-card:hover .pf-btn{ transform:none; opacity:1; }
[dir="rtl"] .pf-btn svg{ transform: scaleX(-1); }

@media (max-width: 1024px){
  .portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
  .pf-large{ grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px){
  .portfolio-grid{ grid-template-columns: 1fr; }
  .pf-large{ grid-column: span 1; }
}

/* ========== SELECTED WORKS — Cinematic Showcase ========== */
.showcase{
  background: var(--bg);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.showcase-header{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.sh-label{
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.sh-title{
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin: 0;
}
.sh-title em{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}

.sh-nav{
  display: flex; align-items: center; gap: 18px;
}
.sh-arrow{
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-2);
}
.sh-arrow:hover{ background: var(--gold); color: #0d0d12; border-color: transparent; }
.sh-arrow svg{ width: 22px; }
[dir="rtl"] .sh-arrow svg{ transform: scaleX(-1); }
.sh-count{
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
  min-width: 70px;
  text-align: center;
}
.sh-count i{ color: var(--gold); font-style: normal; margin: 0 6px; }
.sh-count #shCurr{
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Stage — full-bleed */
.showcase-stage{
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.sh-slide{
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s var(--ease-2);
}
.sh-slide.active{ opacity: 1; pointer-events: auto; }
.sh-img{
  position: absolute; inset: 0;
  overflow: hidden;
}
.sh-img::after{
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,11,.55), rgba(7,7,11,.85));
  z-index: 1;
}
.sh-img img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.sh-slide.active .sh-img img{ transform: scale(1.18); }

/* Overlay text */
.sh-overlay{
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.sh-overlay > *{ pointer-events: auto; }
.sh-cat{
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  animation: shFadeText .8s var(--ease-2);
}
.sh-name{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(60px, 10vw, 160px);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 32px;
  background: linear-gradient(180deg, #fff, #FFD86F);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.6));
  animation: shFadeText 1s var(--ease-2);
}
@keyframes shFadeText{
  from{ opacity:0; transform: translateY(20px);}
  to  { opacity:1; transform: translateY(0);}
}
.sh-cta{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  background: var(--grad-gold);
  color: #15151f;
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 18px 40px -10px rgba(212,160,23,.6);
  transition: transform .3s, box-shadow .3s;
}
.sh-cta:hover{ box-shadow: 0 22px 50px -10px rgba(212,160,23,.8); }
[dir="rtl"] .sh-cta svg{ transform: scaleX(-1); }

/* Progress bar */
.sh-progress{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.08);
  z-index: 6;
}
.sh-progress-fill{
  height: 100%;
  width: 0%;
  background: var(--grad-gold);
  box-shadow: 0 0 8px var(--gold);
  transition: width .15s linear;
}

@media (max-width: 1024px){
  .showcase-header{ grid-template-columns: 1fr; }
  .showcase-stage{ height: 70vh; min-height: 500px; }
}

/* ========== TESTIMONIALS ========== */
.t-track-wrap{
  overflow: hidden;
  margin: 0 -28px;
  padding: 20px 28px;
  position: relative;
  cursor: grab;
}
.t-track-wrap::before, .t-track-wrap::after{
  content:''; position:absolute; top:0; bottom:0; width: 100px;
  z-index: 2; pointer-events: none;
}
.t-track-wrap::before{ left:0; background: linear-gradient(90deg, var(--bg), transparent); }
.t-track-wrap::after{ right:0; background: linear-gradient(-90deg, var(--bg), transparent); }
.t-track{
  display:flex; gap:24px;
  transition: transform .8s var(--ease-2);
  user-select: none;
  will-change: transform;
}
.t-card{
  flex: 0 0 380px;
  padding: 30px;
  background: linear-gradient(160deg, rgba(28,28,40,.7), rgba(15,15,21,.7));
  border:1px solid var(--line-2);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all .35s var(--ease-2);
}
.t-card:hover{ border-color: var(--gold); transform: translateY(-6px); }
.t-quote{
  position: absolute;
  top: 16px; inset-inline-end: 22px;
  font-family: 'Georgia', serif;
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
}
.t-stars{ color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.t-text{
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 24px;
  min-height: 120px;
}
.t-person{
  display:flex; align-items:center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.t-person img{
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.t-person strong{ display:block; font-weight: 800; font-size: 15px; }
.t-person span{ font-size: 12.5px; color: var(--text-3); }

.t-controls{ display:flex; gap: 12px; justify-content:center; margin-top: 40px; }
.t-arrow{
  width: 50px; height:50px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s;
}
.t-arrow:hover{ background: var(--gold); color: #0d0d12; }
.t-arrow svg{ width: 18px; }
[dir="rtl"] .t-arrow svg{ transform: scaleX(-1); }

@media (max-width: 600px){ .t-card{ flex: 0 0 88%; padding: 24px; } }

/* ========== PACKAGES ========== */
.pkg-grid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  position: relative; z-index: 2;
}
.pkg-card{
  position: relative;
  padding: 36px 30px;
  background: linear-gradient(180deg, rgba(28,28,40,.7), rgba(15,15,21,.7));
  border:1px solid var(--line-2);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease-2);
}
.pkg-card:hover{ border-color: var(--gold); transform: translateY(-8px); }
.pkg-featured{
  background: linear-gradient(180deg, rgba(212,160,23,.12), rgba(15,15,21,.95));
  border: 2px solid var(--gold);
  box-shadow: 0 30px 80px -20px rgba(212,160,23,.4);
  transform: scale(1.04);
}
.pkg-featured:hover{ transform: scale(1.04) translateY(-8px); }
.pkg-badge{
  position: absolute;
  top: -14px; left:50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: var(--grad-gold);
  color: #15151f;
  font-size: 12px;
  font-weight: 800;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -4px rgba(212,160,23,.6);
}
.pkg-head h3{ font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.pkg-sub{ font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.pkg-price{
  display:flex; align-items:baseline; gap:6px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 24px;
}
.pkg-currency{ font-size: 14px; color: var(--gold); font-weight: 700; }
.pkg-price strong{
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  letter-spacing: -1.5px;
}
.pkg-period{ font-size: 13px; color: var(--text-3); }
.pkg-list{ margin-bottom: 28px; }
.pkg-list li{
  display:flex; align-items:center; gap:10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-2);
}
.pkg-list li.off{ color: var(--text-muted); }
.check, .cross{
  width: 18px; height:18px; flex-shrink:0;
  border-radius: 50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-style: normal;
}
.check{ background: rgba(212,160,23,.18); border:1px solid var(--gold); position:relative; }
.check::after{
  content:''; width:8px; height:8px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='black' stroke-width='3'><polyline points='3 8 7 12 13 4'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='black' stroke-width='3'><polyline points='3 8 7 12 13 4'/></svg>") center/contain no-repeat;
}
.cross{ background: rgba(255,255,255,.05); border:1px solid var(--line-2); position:relative; }
.cross::after{ content:'×'; font-size: 14px; color: var(--text-muted); line-height: 1; }
.pkg-note{ text-align:center; font-size: 13px; color: var(--text-3); margin-top: 30px; }

@media (max-width: 1024px){
  .pkg-grid{ grid-template-columns: 1fr; }
  .pkg-featured{ transform: none; }
  .pkg-featured:hover{ transform: translateY(-8px); }
}

/* ========== MEGA CTA ========== */
.mega-cta{
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-3) 0%, #0d0d14 50%, var(--bg-3) 100%);
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-glow{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212,160,23,.22), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(168,124,16,.15), transparent 50%);
  pointer-events:none;
}
.cta-noise{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(212,160,23,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
}
.mega-cta-inner{ position: relative; z-index: 2; }
.mega-cta-inner .section-tag{ justify-content: center; }

.mega-title{
  font-size: clamp(48px, 8vw, 130px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  margin: 24px auto 50px;
  max-width: 1100px;
}
.mt-line{ display: block; }
.mt-line:nth-child(2){ padding-inline-start: 80px; }
.mt-line:nth-child(3){ padding-inline-start: 0; }
.mega-title em{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.mega-actions{
  display:flex; gap: 16px; justify-content:center; flex-wrap:wrap;
  margin-bottom: 60px;
}
.mega-btn{
  position: relative;
  display:inline-flex; align-items:center;
  padding: 22px 40px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 16px;
  cursor: none;
  overflow: hidden;
  isolation: isolate;
  color: #15151f;
}
.mb-bg{
  position:absolute; inset:0;
  background: var(--grad-gold);
  border-radius: 100px;
  z-index: -1;
  transition: transform .4s var(--ease-2);
  box-shadow: 0 18px 50px -10px rgba(212,160,23,.6);
}
.mega-btn:hover .mb-bg{ transform: scale(1.06); }
.mb-content{ display:inline-flex; align-items:center; gap: 10px; position: relative; z-index: 1; }
[dir="rtl"] .mega-btn svg{ transform: scaleX(-1); }

.mega-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.ms{ text-align: center; }
.ms strong{
  display:block;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip:text; background-clip:text;
  color: transparent;
  letter-spacing: -1px;
}
.ms span{ font-size: 12px; color: var(--text-3); margin-top: 2px; display:block; }

@media (max-width: 600px){
  .mega-stats{ grid-template-columns: repeat(2, 1fr); }
  .mt-line:nth-child(2){ padding-inline-start: 0; }
}

/* ========== FAQ ========== */
.faq-grid{
  display:grid; grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items:start;
}
.faq-side{ position: sticky; top: 100px; }
.faq-side h2{ margin-bottom: 18px; }
.faq-side p{ font-size:15.5px; color: var(--text-3); margin-bottom: 28px; line-height: 1.85; }

.faq-list{ display:flex; flex-direction:column; gap: 14px; }
.faq-item{
  background: linear-gradient(160deg, rgba(28,28,40,.5), rgba(15,15,21,.5));
  border:1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s var(--ease-2);
}
.faq-item.open{ border-color: var(--gold); }
.faq-q{
  width:100%;
  padding: 22px 26px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-size: 15.5px;
  font-weight: 700;
  text-align: start;
  color: var(--text);
  transition: color .3s;
}
.faq-q:hover{ color: var(--gold-bright); }
.faq-icon{
  width: 30px; height:30px; flex-shrink:0;
  border-radius: 50%;
  background: rgba(212,160,23,.1);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  transition: all .35s var(--ease-2);
}
.faq-icon svg{ width: 14px; }
.faq-item.open .faq-icon{ background: var(--gold); color: #0d0d12; transform: rotate(180deg); }
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-2); }
.faq-item.open .faq-a{ max-height: 300px; }
.faq-a p{ padding: 0 26px 22px; color: var(--text-3); font-size: 14.5px; line-height: 1.85; }

@media (max-width: 1024px){
  .faq-grid{ grid-template-columns: 1fr; gap: 40px; }
  .faq-side{ position: static; }
}

/* ========== CONTACT ========== */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items:start;
  position: relative; z-index: 2;
}
.contact-lead{ font-size:16px; color: var(--text-3); margin-bottom: 36px; line-height: 1.85; }

.contact-items{ display:flex; flex-direction:column; gap: 14px; margin-bottom: 36px; }
.ci{
  display:flex; align-items:center; gap:16px;
  padding: 18px 20px;
  background: linear-gradient(160deg, rgba(28,28,40,.5), rgba(15,15,21,.5));
  border:1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all .35s var(--ease-2);
}
.ci:hover{
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(28,28,40,.8), rgba(15,15,21,.8));
}
.ci-icon{
  width: 48px; height:48px;
  flex-shrink:0;
  background: linear-gradient(135deg, rgba(212,160,23,.18), rgba(212,160,23,.04));
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  border:1px solid var(--line);
}
.ci-icon svg{ width: 22px; height:22px; }
.ci-text{ flex: 1; }
.ci-text strong{ display:block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.ci-text span{ font-size: 13.5px; color: var(--text-3); }
.ci-arrow{
  width: 18px; color: var(--gold);
  opacity: 0;
  transition: opacity .3s var(--ease-2);
}
[dir="rtl"] .ci-arrow{ transform: scaleX(-1); }
.ci:hover .ci-arrow{ opacity:1; }

.contact-socials{ display:flex; gap: 10px; }
.cs-btn{
  width: 44px; height:44px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line-2);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-3);
  transition: all .3s;
}
.cs-btn:hover{ background: var(--gold); color: #0d0d12; border-color: transparent; }
.cs-btn svg{ width: 18px; height: 18px; }

.form-card{
  position: relative;
  padding: 38px;
  background: linear-gradient(160deg, rgba(28,28,40,.85), rgba(15,15,21,.85));
  border:1px solid var(--line);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.form-card-glow{
  position:absolute; top:-50%; left:-50%;
  width:200%; height:200%;
  background: conic-gradient(from 90deg, transparent 0deg, var(--gold) 30deg, transparent 60deg);
  animation: glowSpin 6s linear infinite;
  opacity: .15;
  z-index: 0;
}
.form-header{ margin-bottom: 28px; position:relative; z-index:1; }
.form-header h3{ font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.form-header p{ color: var(--text-3); font-size: 14px; }

.contact-form{ display:flex; flex-direction:column; gap:20px; position:relative; z-index:1; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap: 16px; }

.form-group{ position:relative; }
.form-group.floating input,
.form-group.floating textarea{
  width:100%;
  padding: 18px 18px 8px;
  background: rgba(255,255,255,.025);
  border:1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all .3s;
  font-size: 14.5px;
  resize: vertical;
}
.form-group.floating textarea{ min-height: 110px; padding-top:24px; }
.form-group.floating label{
  position:absolute;
  top: 18px; inset-inline-start: 18px;
  font-size: 14px;
  color: var(--text-3);
  pointer-events:none;
  transition: all .3s;
}
.form-group.floating input:focus,
.form-group.floating textarea:focus,
.form-group.floating input:not(:placeholder-shown),
.form-group.floating textarea:not(:placeholder-shown){
  border-color: var(--gold);
  background: rgba(212,160,23,.04);
}
.form-group.floating input:focus + label,
.form-group.floating textarea:focus + label,
.form-group.floating input:not(:placeholder-shown) + label,
.form-group.floating textarea:not(:placeholder-shown) + label{
  top: 4px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .5px;
}
.form-line{
  position:absolute; bottom:0; inset-inline-start:50%;
  width:0; height:2px;
  background: var(--grad-gold);
  transform: translateX(-50%);
  transition: width .3s;
}
.form-group.floating input:focus ~ .form-line,
.form-group.floating textarea:focus ~ .form-line{ width:100%; }

.select-label{ display:block; font-size: 13px; color: var(--text-3); font-weight: 600; margin-bottom: 8px; }
.select-wrap{ position:relative; }
.select-wrap select{
  width:100%;
  padding: 16px 18px;
  padding-inline-end: 44px;
  background: rgba(255,255,255,.025);
  border:1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14.5px;
  appearance:none;
  -webkit-appearance:none;
  cursor: pointer;
}
.select-wrap select:focus{ border-color: var(--gold); background: rgba(212,160,23,.04); }
.select-wrap option{ background: #15151f; color: var(--text); padding: 10px; }
.select-arrow{
  position:absolute;
  inset-inline-end: 18px; top:50%;
  transform: translateY(-50%);
  width:16px; height:16px;
  color: var(--gold);
  pointer-events:none;
}

.budget-pills{ display:flex; gap: 10px; flex-wrap:wrap; }
.budget-pill{ position:relative; cursor:pointer; }
.budget-pill input{ position:absolute; opacity:0; pointer-events:none; }
.budget-pill span{
  display:inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line-2);
  color: var(--text-3);
  font-size: 13.5px;
  font-weight: 600;
  transition: all .3s;
}
.budget-pill:hover span{ border-color: var(--gold); color: var(--gold-bright); }
.budget-pill input:checked + span{
  background: var(--grad-gold);
  color: #15151f;
  border-color: transparent;
}

.submit-btn{ position: relative; }
.submit-btn.loading .btn-text, .submit-btn.loading svg:not(.spin){ opacity:0; }
.submit-btn.loading .btn-loader{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%,-50%);
}
.submit-btn .btn-loader[hidden]{ display:none; }
.spin{ animation: spin 1s linear infinite; }

.form-success{
  display:none;
  align-items:center; gap:12px;
  padding: 16px 20px;
  background: rgba(74, 222, 128, .1);
  border:1px solid #4ade80;
  border-radius: var(--radius-sm);
  color: #4ade80;
  font-size: 14px;
  font-weight: 600;
}
.form-success.show{ display:flex; animation: fadeInUp .4s var(--ease-2); }

@media (max-width: 1024px){
  .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-grid{ grid-template-columns: 1fr; gap: 60px; }
  .about-features{ grid-template-columns: 1fr; }
  .hero-inner{ grid-template-columns: 1fr; gap: 60px; }
  .hero-sidebar{ margin: 0 auto; max-width: 100%; }
  .hero-watermark{ font-size: clamp(80px, 18vw, 200px); letter-spacing: -6px; }
  .hero-ring{ display: none; }
  .ht-line-2, .ht-line-3{ padding-inline-start: 0; }
}
@media (max-width: 600px){
  .form-row{ grid-template-columns: 1fr; }
  .form-card{ padding: 26px 20px; }
  .hero-meta-bar{ grid-template-columns: repeat(2, 1fr); }
}

/* ========== FOOTER ========== */
.footer{
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #050507 100%);
  border-top:1px solid var(--line);
  overflow: hidden;
}
.footer-glow{
  position:absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,160,23,.15), transparent 60%);
  filter: blur(80px);
}
.footer-mega{
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.footer-mega-title{
  font-size: clamp(60px, 14vw, 220px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -6px;
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; align-items: baseline;
  font-family: var(--font-en);
  text-transform: uppercase;
}
.footer-mega-title span{
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}
.fmt-italic{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  -webkit-text-stroke: 0 !important;
  color: var(--text-2) !important;
  font-size: .55em !important;
  letter-spacing: -2px;
}
.fmt-gold{
  -webkit-text-stroke: 0 !important;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent !important;
}

.footer-main{
  display:grid; grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding: 80px 28px 60px;
  position: relative;
}
.footer-brand{ position:relative; }
.footer-logo-link{ display:inline-block; margin-bottom: 22px; }
.footer-logo-svg{
  width: 100px; height: 100px;
  filter: drop-shadow(0 8px 30px rgba(212,160,23,.4));
}
.footer-name{
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.footer-by{ font-family: 'Georgia', serif; font-size: 16px; color: var(--gold); font-style: italic; margin-bottom: 4px; }
.footer-role{ font-size: 12px; color: var(--gold-bright); letter-spacing: 2px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.footer-slogan{ font-size: 13px; color: var(--text-3); font-style: italic; margin-bottom: 16px; }
.footer-desc{ font-size: 14.5px; color: var(--text-3); line-height: 1.85; max-width: 380px; margin-bottom: 22px; }

.footer-socials{ display:flex; gap: 10px; }
.footer-socials a{
  width: 42px; height:42px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line-2);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-3);
  transition: all .3s;
}
.footer-socials a:hover{
  background: var(--gold);
  color: #0d0d12;
  border-color: transparent;
}
.footer-socials svg{ width: 16px; height: 16px; }

.footer-cols{
  display:grid; grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h4{
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after{
  content:''; position:absolute;
  bottom:0; inset-inline-start:0;
  width: 28px; height:2px;
  background: var(--gold);
}
.footer-col li{ margin-bottom: 10px; }
.footer-col a{
  font-size: 14px;
  color: var(--text-3);
  transition: color .3s, padding .3s;
  display:inline-flex; align-items:center;
}
.footer-col a:hover{ color: var(--gold-bright); padding-inline-start: 6px; }

.footer-contacts li{
  display:flex; align-items:center; gap:10px;
  font-size: 13.5px;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer-contacts svg{ color: var(--gold); flex-shrink:0; }
.footer-contacts a{ color: var(--text-3); }
.footer-contacts a:hover{ color: var(--gold-bright); padding-inline-start: 0; }

.footer-bottom{
  border-top: 1px solid var(--line-2);
  padding: 24px 0;
}
.footer-bottom-inner{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap: 14px;
}
.footer-bottom p{ font-size: 13px; color: var(--text-4); }
.footer-tagline .heart{ color: var(--gold); animation: heartBeat 1.5s ease-in-out infinite; display:inline-block; }
@keyframes heartBeat{ 0%,100%{ transform:scale(1);} 50%{ transform:scale(1.2);} }

@media (max-width: 1024px){
  .footer-main{ grid-template-columns: 1fr; gap: 50px; padding: 60px 24px 40px; }
  .footer-cols{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){ .footer-cols{ grid-template-columns: 1fr; } }

/* ========== FLOATING WHATSAPP ========== */
.float-whatsapp{
  position: fixed;
  bottom: 24px; inset-inline-end: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.5);
  z-index: 90;
  transition: all .3s var(--ease-2);
}
.float-whatsapp:hover{ box-shadow: 0 14px 40px -6px rgba(37,211,102,.7); }
.wa-pulse{
  position:absolute; inset:0;
  border-radius:50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse{ 0%{ transform:scale(1); opacity:.7;} 100%{ transform:scale(1.6); opacity:0;} }

/* ========== BACK TO TOP ========== */
.back-top{
  position: fixed;
  bottom: 24px; inset-inline-start: 24px;
  width: 48px; height: 48px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(15,15,21,.85);
  border:1px solid var(--line);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  z-index: 90;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all .35s var(--ease-2);
}
.back-top.show{ opacity:1; visibility:visible; transform:none; }
.back-top:hover{ background: rgba(212,160,23,.18); border-color: var(--gold); }
.bt-progress{ position:absolute; inset:0; transform: rotate(-90deg); }
.bt-bg-circle, .bt-fill-circle{ fill: none; stroke-width: 2; }
.bt-bg-circle{ stroke: rgba(255,255,255,.06); }
.bt-fill-circle{
  stroke: var(--gold);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .15s linear;
  filter: drop-shadow(0 0 4px var(--gold));
}
.bt-arrow{ width:14px; color: var(--gold); position:relative; z-index:1; }

/* ========== FADE-UP ========== */
.fade-up{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-2), transform .9s var(--ease-2);
}
.fade-up.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-up{ opacity:1; transform:none; }
}

/* =========================================================
   MOBILE — Professional polish (tablet & phone)
   ========================================================= */
@media (max-width: 1024px){
  /* Premium full-screen mobile menu */
  .nav-links{
    inset: 0 !important;
    padding: 96px 24px 40px;
    justify-content: flex-start;
    gap: 2px;
    background: rgba(6,6,10,.99);
  }
  .nav-links li{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s var(--ease-2), transform .5s var(--ease-2);
  }
  .nav-links.active li{ opacity: 1; transform: none; }
  .nav-links.active li:nth-child(1){ transition-delay: .12s; }
  .nav-links.active li:nth-child(2){ transition-delay: .18s; }
  .nav-links.active li:nth-child(3){ transition-delay: .24s; }
  .nav-links.active li:nth-child(4){ transition-delay: .30s; }
  .nav-links.active li:nth-child(5){ transition-delay: .36s; }
  .nav-links.active li:nth-child(6){ transition-delay: .42s; }
  .nav-link{
    font-size: 19px;
    font-weight: 700;
    padding: 20px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--line-2);
    justify-content: space-between;
  }
  .nav-link .nl-num{ font-size: 12px; opacity: .8; }
}

@media (max-width: 768px){
  /* --- Base --- */
  .container{ padding: 0 20px; }
  .section{ padding: 72px 0; }
  .section-header{ margin-bottom: 42px; }
  .section-title{ font-size: clamp(27px, 7.2vw, 40px); letter-spacing: -.5px; }
  .section-sub{ font-size: 15px; }
  .section-tag{ font-size: 11px; letter-spacing: 3px; }

  /* --- Topbar / Nav --- */
  .topbar{ height: 34px; }
  .tb-item{ font-size: 11px; }
  .nav-container{ padding: 12px 20px; gap: 12px; }
  .nav-logo-svg{ width: 40px; height: 40px; }
  .logo-name{ font-size: 16px; }
  .logo-sub{ display: none; }

  /* --- Loader --- */
  .loader-stage{ padding: 26px 22px; }
  .lb-title{ font-size: clamp(54px, 19vw, 86px); letter-spacing: -3px; }
  .lb-line:nth-child(2){ padding-inline-start: 30px; }
  .ldg-words{ min-width: 110px; font-size: 14px; }
  .loader-greet{ font-size: 10px; }
  .lb-pre, .lb-post{ font-size: 9px; letter-spacing: 3px; }

  /* --- HERO --- */
  .hero{ height: auto; min-height: 100svh; padding: 88px 0 36px; }
  .hero-marker{ font-size: 9px; letter-spacing: 1.5px; padding: 7px 11px; gap: 7px; }
  .hm-tl{ top: 12px; inset-inline-start: 12px; }
  .hm-tr{ top: 12px; inset-inline-end: 12px; }
  .hero-stage{ padding-top: 16px; }
  .hero-stage .hero-badge{ font-size: 10.5px; padding: 7px 14px; margin-bottom: 20px; }
  .hero-title.hero-title-center{ font-size: clamp(25px, 7vw, 36px) !important; line-height: 1.45; }
  .hero-stage .hero-desc{ font-size: 14.5px; margin-bottom: 26px; line-height: 1.8; }
  .hero-stage .hero-actions{ flex-direction: column; width: 100%; gap: 12px; }
  .hero-stage .hero-actions .btn{ width: 100%; }
  .hero-bottom{
    position: relative; bottom: auto; left: auto; transform: none;
    width: 100%; flex-direction: column; gap: 22px;
    align-items: center; padding: 34px 0 0;
  }
  .hb-stats{ gap: 12px; padding: 12px 16px; }
  .hb-stat strong{ font-size: 16px; }
  .hero-mute{ display: none !important; }
  /* lighter blur for smoother mobile rendering */
  .hero-mesh-blob{ filter: blur(70px); }
  .hero-aurora{ display: none; }

  /* --- Kinetic --- */
  .kinetic{ padding: 26px 0; }
  .kinetic-row{ font-size: 46px; gap: 22px; letter-spacing: -1px; }

  /* --- Brands --- */
  .brands-strip{ padding: 36px 0; }
  .bs-item{ font-size: 22px; }
  .bs-track{ gap: 34px; }

  /* --- Stats rings --- */
  .stats{ padding: 72px 0; }
  .stats-header{ margin-bottom: 44px; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-ring{ padding: 24px 12px; }
  .ring-wrap{ width: 108px; height: 108px; }
  .ring-center-num strong{ font-size: 26px; }

  /* --- About --- */
  .about-orbit{ max-width: 300px; }
  .about-lead{ font-size: 16px; }
  .about-cta-row{ gap: 16px; }
  .about-cta-row .btn{ width: 100%; }

  /* --- Bento --- */
  .bento-card{ padding: 26px; }
  .bento-feature h3{ font-size: 24px; }
  .bento-card h3{ font-size: 20px; }

  /* --- Process --- */
  .pt-num{ width: 48px; height: 48px; font-size: 16px; margin-bottom: 18px; }
  .pt-card{ padding: 22px 18px; }

  /* --- Showcase --- */
  .showcase{ padding: 70px 0 0; }
  .showcase-header{ margin-bottom: 36px; }
  .sh-title{ font-size: clamp(32px, 9vw, 46px); }
  .showcase-stage{ height: 62vh; min-height: 420px; }
  .sh-name{ font-size: clamp(40px, 13vw, 66px); margin-bottom: 24px; }
  .sh-cat{ font-size: 10px; letter-spacing: 2px; padding: 6px 14px; margin-bottom: 16px; }
  .sh-cta{ padding: 14px 24px; font-size: 13px; }
  .sh-arrow{ width: 46px; height: 46px; }
  .sh-arrow svg{ width: 18px; }

  /* --- Testimonials --- */
  .t-card{ padding: 24px; }
  .t-text{ font-size: 14.5px; min-height: auto; }
  .t-arrow{ width: 46px; height: 46px; }

  /* --- Packages --- */
  .pkg-card{ padding: 30px 24px; }
  .pkg-price strong{ font-size: 42px; }
  .pkg-list li{ font-size: 13.5px; }

  /* --- Mega CTA --- */
  .mega-cta{ padding: 78px 0; }
  .mega-title{ font-size: clamp(32px, 9vw, 50px); letter-spacing: -1px; margin: 20px auto 36px; }
  .mt-line:nth-child(2){ padding-inline-start: 0; }
  .mega-actions{ flex-direction: column; width: 100%; }
  .mega-actions .btn, .mega-btn{ width: 100%; justify-content: center; }
  .mega-stats{ grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px; }

  /* --- FAQ --- */
  .faq-q{ font-size: 14.5px; padding: 18px 20px; gap: 12px; }
  .faq-a p{ padding: 0 20px 20px; }

  /* --- Contact --- */
  .contact-grid{ gap: 36px; }
  .contact-info .section-title{ font-size: clamp(30px, 8vw, 42px); }
  .form-card{ padding: 26px 20px; }
  .form-row{ grid-template-columns: 1fr; }
  .ci{ padding: 16px; }

  /* --- Footer --- */
  .footer-mega{ padding: 54px 0 40px; }
  .footer-mega-title{ font-size: clamp(44px, 15vw, 78px); gap: 12px; letter-spacing: -3px; }
  .footer-main{ padding: 54px 20px 40px; }
  .footer-name{ font-size: 32px; }
  .footer-bottom-inner{ flex-direction: column; text-align: center; gap: 8px; }

  /* --- Floating buttons --- */
  .float-whatsapp{ width: 54px; height: 54px; bottom: 16px; inset-inline-end: 16px; }
  .back-top{ bottom: 16px; inset-inline-start: 16px; width: 44px; height: 44px; }

  /* --- Decorative numbers --- */
  .about-deco-num{ font-size: 100px; inset-inline-end: 8px; top: 16px; }
}

/* --- Small phones --- */
@media (max-width: 480px){
  .container{ padding: 0 16px; }
  .section{ padding: 58px 0; }
  .section-title{ font-size: 26px; }

  .hero{ padding: 80px 0 32px; }
  .hero-title.hero-title-center{ font-size: 25px !important; }
  .hero-marker{ font-size: 8.5px; padding: 6px 9px; }
  .hm-tl span:not(.hm-dot){ letter-spacing: 1px; }

  .lb-title{ font-size: 58px; letter-spacing: -2px; }
  .lb-line:nth-child(2){ padding-inline-start: 20px; }

  .kinetic-row{ font-size: 36px; gap: 18px; }
  .bs-item{ font-size: 19px; }

  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .hb-stats{ flex-wrap: wrap; justify-content: center; }
  .hb-divider{ display: none; }

  .showcase-stage{ height: 56vh; min-height: 380px; }
  .sh-name{ font-size: 44px; }
  .sh-title{ font-size: 30px; }

  .mega-stats{ gap: 10px; padding: 16px; }
  .ms strong{ font-size: 22px; }

  .footer-mega-title{ font-size: 42px; gap: 8px; }
  .footer-cols{ grid-template-columns: 1fr; }

  .btn-lg{ padding: 15px 24px; font-size: 14px; }
}
