:root {
  --red: #d42020;
  --red-dark: #b01818;
  --red-light: #ff4444;
  --red-glow: rgba(212, 32, 32, 0.2);
  --red-glow-strong: rgba(212, 32, 32, 0.35);

  --bg-0: #08080a;
  --bg-1: #0e0e12;
  --bg-2: #141418;
  --bg-3: #1a1a20;
  --bg-4: #222228;

  --card-bg: rgba(22, 22, 28, 0.7);
  --card-bg-solid: #16161c;
  --card-border: rgba(255, 255, 255, 0.06);
  --card-border-hover: rgba(212, 32, 32, 0.3);

  --text: #f2f2f5;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;

  --green: #25d366;
  --gradient: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(212,32,32,0.08) 0%, transparent 60%);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 8px 40px var(--red-glow);
  --shadow-glow-strong: 0 12px 48px var(--red-glow-strong);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Cairo', sans-serif;
  background-color: var(--bg-0);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 32, 32, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 32, 32, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(100, 100, 200, 0.015) 0%, transparent 40%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

body.rtl {
  direction: rtl;
  font-family: 'Cairo', 'Inter', sans-serif;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ===== Language Switcher ===== */
.lang-switch {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  gap: 2px;
  background: rgba(14, 14, 18, 0.85);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 4px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

body.rtl .lang-switch { right: auto; left: 24px; }

.lang-switch button {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.lang-switch button:hover { color: var(--text); }

.lang-switch button.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 2px 12px var(--red-glow);
}

/* ===== Discount Banner ===== */
.discount-banner {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  background-size: 200% 100%;
  animation: shimmerBanner 4s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  letter-spacing: 0.02em;
}

@keyframes shimmerBanner {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.countdown { display: inline-flex; gap: 6px; }

.countdown-unit {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 50px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.countdown-unit .num { font-size: 1.1rem; font-weight: 800; display: block; font-variant-numeric: tabular-nums; }
.countdown-unit .label { font-size: 0.58rem; text-transform: uppercase; opacity: 0.7; letter-spacing: 0.08em; }

/* ===== Section Shared ===== */
section { padding: 120px 24px; position: relative; }

/* Subtle top divider line on sections */
section + section::before,
#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 900px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(212, 32, 32, 0.12) 50%, rgba(255,255,255,0.06) 80%, transparent);
  pointer-events: none;
}
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 32, 32, 0.12), rgba(212, 32, 32, 0.04));
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 32, 32, 0.18);
  box-shadow: 0 0 20px rgba(212, 32, 32, 0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-title { text-align: center; margin-bottom: 72px; }

.section-title h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title h2 span {
  color: var(--red);
  text-shadow: 0 0 40px rgba(212, 32, 32, 0.3);
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 18px 48px; font-size: 1.05rem; border-radius: var(--radius-md); }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(212, 32, 32, 0.05);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-1), transparent);
  pointer-events: none;
  z-index: 0;
}

body.rtl .hero::before { right: auto; left: -20%; }

.hero-bg-glow {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 560px; }

.hero-logo {
  width: 110px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease both;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  border-radius: var(--radius-lg);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 span {
  color: var(--red);
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.9s ease 0.15s both;
  padding-bottom: 24px;
}

.hero-image-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(212, 32, 32, 0.08);
  position: relative;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 8, 10, 0.6) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
}

.hero-photo.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-image-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  z-index: 10;
  background: rgba(22, 22, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: floatBadge 4s ease-in-out infinite;
}

body.rtl .hero-image-badge { left: auto; right: -24px; }

.badge-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-label {
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
  position: relative;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02),
    0 8px 32px rgba(0, 0, 0, 0.2);
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    rgba(255, 255, 255, 0.04) 100%
  );
  pointer-events: none;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; display: flex; align-items: center; gap: 10px; white-space: nowrap; }

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-icon { font-size: 2rem; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); }

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* ===== About / Meet Coach ===== */
#about {
  background: var(--bg-0);
  overflow: hidden;
}
#about::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 14px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-gallery-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(8, 8, 10, 0.4) 100%);
  pointer-events: none;
}

.about-gallery-main {
  position: relative;
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-photo.active {
  opacity: 1;
  position: relative;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-text h2 span {
  color: var(--red);
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text > p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-highlights { margin-bottom: 36px; }

.about-hl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
}

body.rtl .about-hl { flex-direction: row-reverse; text-align: right; }

.hl-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(212, 32, 32, 0.1);
  border: 1px solid rgba(212, 32, 32, 0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== How It Works ===== */
#how-it-works {
  background: var(--bg-1);
  overflow: hidden;
}
#how-it-works::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.4s;
}

.step-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 32, 32, 0.06);
}

.step-card:hover::before { opacity: 1; }

.step-num {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ===== Packages ===== */
#packages {
  background: var(--bg-0);
  overflow: hidden;
}
#packages::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.4s;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(212, 32, 32, 0.08);
}

.package-card:hover::before { opacity: 1; }

.package-card.featured {
  border-color: rgba(212, 32, 32, 0.25);
  background: linear-gradient(160deg, rgba(212, 32, 32, 0.06) 0%, var(--card-bg) 35%);
}

.package-card.featured::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gradient);
  border-radius: 0 0 4px 4px;
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient);
  color: #fff;
  padding: 8px 22px;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 0 var(--radius-lg) 0 var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

body.rtl .package-badge { right: auto; left: 0; border-radius: var(--radius-lg) 0 var(--radius-sm) 0; }

.package-icon { font-size: 2.5rem; margin-bottom: 16px; position: relative; z-index: 1; }
.package-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 1; letter-spacing: -0.01em; }

.package-features { list-style: none; margin-bottom: 28px; position: relative; z-index: 1; }

.package-features li {
  padding: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.package-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  background: rgba(212, 32, 32, 0.1);
  border-radius: 6px;
  margin-top: 2px;
}

body.rtl .package-features li { flex-direction: row-reverse; text-align: right; }

.package-price { margin-bottom: 28px; position: relative; z-index: 1; }

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-right: 10px;
}

body.rtl .price-old { margin-right: 0; margin-left: 10px; }

.price-current {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.price-currency { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
.price-period { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

.discount-tag {
  display: inline-block;
  background: rgba(212, 32, 32, 0.1);
  color: var(--red);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 32, 32, 0.15);
  position: relative;
  z-index: 1;
}

.package-card .btn { width: 100%; justify-content: center; position: relative; z-index: 1; }

/* ===== Transformations Marquee ===== */
#transformations { background: var(--bg-1); overflow: hidden; }

.marquee-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  width: 100%;
}

.marquee-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.marquee-ltr { animation: marqueeLeft 80s linear infinite; }
.marquee-rtl { animation: marqueeRight 80s linear infinite; }

.marquee-row:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.transformation-card {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--card-border);
}

.transformation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 10, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.transformation-card:hover {
  transform: scale(1.06);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.transformation-card:hover::after { opacity: 1; }

.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.transformation-card:hover img { transform: scale(1.1); }

@media (max-width: 768px) {
  .transformation-card { width: 220px; height: 220px; }
  .marquee-track { gap: 12px; }
  .marquee-ltr, .marquee-rtl { animation-duration: 50s; }
  .marquee-rows { gap: 12px; margin-top: 32px; }
}

@media (max-width: 480px) {
  .transformation-card { width: 180px; height: 180px; }
  .marquee-track { gap: 10px; }
  .marquee-ltr, .marquee-rtl { animation-duration: 40s; }
}

/* ===== Testimonials Carousel ===== */
#testimonials {
  background: var(--bg-0);
  overflow: hidden;
}
#testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  flex: 1;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track.dragging {
  transition: none;
}

.testimonial-card {
  flex: 0 0 calc(100% / var(--slides-visible, 3));
  padding: 0 8px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

.testimonial-card:hover { transform: scale(0.98); }

.testimonial-card-inner {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}

.testimonial-card:hover .testimonial-card-inner {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-inner img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.carousel-arrow:hover {
  border-color: var(--red);
  background: var(--red);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-border);
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--red-glow);
}

.carousel-counter {
  text-align: center;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 992px) {
  .testimonial-card { flex: 0 0 calc(100% / 2); }
  .carousel-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
}

@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 100%; }
  .testimonial-card-inner img { height: 380px; }
  .carousel-arrow { display: none; }
}

/* ===== CTA Banner ===== */
#cta-banner {
  background: var(--bg-1);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

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

.cta-banner-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== Payment Modal ===== */
.payment-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFadeIn 0.3s ease;
}

.payment-modal-overlay.active {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.payment-modal {
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px 32px 32px;
  max-width: 1140px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(212, 32, 32, 0.06);
}

.payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.payment-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

body.rtl .payment-modal-close { right: auto; left: 16px; }

.payment-modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.payment-modal-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.payment-modal-header h2 span {
  color: var(--red);
  text-shadow: 0 0 40px rgba(212, 32, 32, 0.3);
}

.payment-modal-package {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 32, 32, 0.15), rgba(212, 32, 32, 0.05));
  color: var(--red-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(212, 32, 32, 0.2);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

.payment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.4s;
}

.payment-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 40px rgba(212, 32, 32, 0.08);
}

.payment-card:hover::before { opacity: 1; }

.payment-icon { font-size: 3rem; margin-bottom: 16px; position: relative; z-index: 1; }
.payment-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.payment-card > p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; position: relative; z-index: 1; }

.payment-number {
  background: linear-gradient(135deg, rgba(212, 32, 32, 0.08), rgba(212, 32, 32, 0.03));
  border: 1px solid rgba(212, 32, 32, 0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  direction: ltr;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.payment-number-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-number-value {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
  user-select: all;
}

.payment-steps {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 20px;
  row-gap: 12px;
  align-items: center;
  max-width: 320px;
  text-align: left;
}
body.rtl .payment-steps { text-align: right; direction: rtl; }

.payment-steps li {
  display: contents;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.payment-steps li .step-num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 10px var(--red-glow);
}

.payment-steps li .step-text {
  line-height: 1.4;
}

.payment-card .btn { position: relative; z-index: 1; }

.payment-card-highlight {
  border-color: var(--red);
  background: linear-gradient(165deg, rgba(212, 32, 32, 0.08), var(--card-bg) 40%);
}

.card-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.card-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 14px;
  transition: border-color 0.3s;
}

.card-brand:hover { border-color: rgba(255, 255, 255, 0.25); }

.btn-pay-now {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  padding: 16px 32px;
}

/* Paymob Receipt Prompt */
.paymob-receipt-prompt {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  max-width: 520px;
  margin: 0 auto;
}

.receipt-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.paymob-receipt-prompt h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.paymob-receipt-prompt p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-whatsapp-lg {
  font-size: 1rem;
  padding: 16px 32px;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.btn-back-methods {
  font-size: 0.85rem;
  padding: 12px 24px;
  border-color: transparent;
  color: var(--text-secondary);
}

.btn-back-methods:hover {
  color: var(--text);
  border-color: var(--card-border);
}

/* Paymob Iframe Modal */
.paymob-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.paymob-modal-overlay.active { display: flex; }

.paymob-modal {
  background: var(--bg-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  height: 90vh;
  max-height: 780px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.paymob-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.paymob-modal-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.paymob-modal-title::before {
  content: '🔒';
  font-size: 0.85rem;
}

.paymob-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.paymob-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.paymob-iframe-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.paymob-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  border-radius: 0;
}

.paymob-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-1);
  color: var(--text-secondary);
  font-size: 0.85rem;
  z-index: 2;
  transition: opacity 0.3s;
}

.paymob-loader.hidden { opacity: 0; pointer-events: none; }

.paymob-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.paymob-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  flex-shrink: 0;
}

.paymob-modal-footer .btn {
  width: 100%;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .paymob-modal {
    max-width: 100%;
    height: 95vh;
    max-height: none;
    border-radius: 16px 16px 0 0;
  }
  .paymob-modal-overlay { padding: 0; align-items: flex-end; }
}

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waPulse 2.5s ease-in-out infinite;
}

body.rtl .wa-float { right: auto; left: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); }

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover { background: var(--red); border-color: var(--red); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-nav:hover { background: var(--red); border-color: var(--red); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== Footer ===== */
footer {
  background: var(--bg-0);
  border-top: 1px solid var(--card-border);
  padding: 56px 24px;
  text-align: center;
}

.footer-logo {
  width: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

footer p { color: var(--text-muted); font-size: 0.85rem; }
.footer-powered { color: var(--text-muted); font-size: 0.82rem; margin-top: 10px; }
.footer-powered a { color: var(--red); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.footer-powered a:hover { color: var(--red-light); }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.55), 0 0 0 14px rgba(37, 211, 102, 0.08); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero { min-height: auto; padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-cta .btn { min-width: 160px; }
  .hero-image { justify-content: center; }
  .hero-image-frame { max-width: 260px; }
  .hero-image-badge {
    left: 50%; right: auto;
    bottom: -12px;
    transform: translateX(-50%);
    animation: none;
    white-space: nowrap;
  }
  body.rtl .hero-image-badge { left: 50%; right: auto; transform: translateX(-50%); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-text { text-align: center; }
  .about-text .btn { width: 100%; justify-content: center; }
  .about-hl { justify-content: center; }
  body.rtl .about-hl { justify-content: center; }
  .about-gallery { max-width: 400px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 20px; }
  .hero { padding: 90px 20px 48px; }
  .hero-grid { gap: 28px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); margin-bottom: 16px; }
  .hero-text p { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-logo { width: 90px; margin-bottom: 24px; }
  .hero-image-frame { max-width: 220px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1; min-width: 140px; font-size: 0.85rem; padding: 12px 16px; }
  .packages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .testimonial-card { flex: 0 0 270px; }
  .testimonial-card img { height: 360px; }
  .payment-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.6rem; }
  .stat-plus { font-size: 1.1rem; }
  .stat-label { font-size: 0.8rem; }
  .discount-banner { font-size: 0.82rem; padding: 12px 14px; }
  .lang-switch { top: 14px; right: 14px; }
  body.rtl .lang-switch { right: auto; left: 14px; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 16px 40px; }
  .hero-grid { gap: 24px; }
  .hero h1 { font-size: 1.6rem; margin-bottom: 12px; }
  .hero-text p { font-size: 0.88rem; margin-bottom: 24px; line-height: 1.6; }
  .hero-image-frame { max-width: 180px; }
  .hero-image-badge { padding: 8px 14px; bottom: -10px; }
  .hero-image-badge .badge-num { font-size: 1.1rem; }
  .hero-image-badge .badge-label { font-size: 0.58rem; }
  .hero-logo { width: 70px; margin-bottom: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; min-width: auto; font-size: 0.9rem; padding: 14px 16px; }
  .countdown-unit { min-width: 42px; padding: 4px 6px; }
  .countdown-unit .num { font-size: 0.95rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { padding: 32px 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  body.rtl .wa-float { right: auto; left: 20px; }
  .payment-modal { padding: 32px 16px 24px; border-radius: var(--radius-lg); }
  .payment-modal-overlay { padding: 12px; }
}
