/* ================================================================
   WNMN CREW — MAIN STYLESHEET
   Design: Bold geometric dark/orange — inspired by brand banners
   ================================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@400;500;600;700&display=swap');

/* ================================================================
   TOKENS
   ================================================================ */
:root {
  --c-orange:    #E84E10;
  --c-amber:     #F5A623;
  --c-yellow:    #FFD040;
  --c-dark:      #1E1E1E;
  --c-charcoal:  #2A2A2A;
  --c-navy:      #1B2847;
  --c-navy2:     #0F1A35;
  --c-white:     #FFFFFF;
  --c-offwhite:  #F8F6F2;
  --c-gray:      #6B7280;
  --c-lightgray: #E8ECF3;
  --c-green:     #22C55E;

  --grad-fire:   linear-gradient(135deg, #E84E10 0%, #F5A623 60%, #FFD040 100%);
  --grad-dark:   linear-gradient(135deg, #2A2A2A 0%, #1E1E1E 100%);
  --grad-navy:   linear-gradient(135deg, #1B2847 0%, #0F1A35 100%);

  --shadow-fire: 0 20px 60px rgba(232,78,16,.35);
  --shadow-card: 0 8px 32px rgba(0,0,0,.12);
  --shadow-deep: 0 30px 80px rgba(0,0,0,.25);

  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   36px;

  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--c-white);
  color: var(--c-dark);
  overflow-x: hidden;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================================================
   LANG HELPERS
   ================================================================ */
body.lang-en { font-family: 'Barlow', sans-serif; }
body.lang-en h1, body.lang-en h2, body.lang-en h3,
body.lang-en h4, body.lang-en .display { font-family: 'Barlow Condensed', sans-serif; }

.ar { display: block; }
.en { display: none; }
.ar-i { display: inline; }
.en-i { display: none; }

body.lang-en .ar   { display: none; }
body.lang-en .en   { display: block; }
body.lang-en .ar-i { display: none; }
body.lang-en .en-i { display: inline; }

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb { background: var(--c-orange); border-radius: 3px; }

/* ================================================================
   NAV
   ================================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(30,30,30,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,166,35,.15);
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(20,20,20,.98);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  height: 46px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.nav-tagline {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language toggle */
.lang-switch {
  display: flex;
  border: 1.5px solid rgba(245,166,35,.35);
  border-radius: 50px;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  border: none;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: .04em;
}
.lang-switch button.active {
  background: var(--grad-fire);
  color: white;
}

/* Nav CTA */
.nav-cta {
  background: var(--grad-fire);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(232,78,16,.4);
  transition: var(--transition);
  font-family: inherit;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-fire); }

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

/* Geometric triangle pattern (bannar1 inspired) */
.hero-geo {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-geo svg {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  opacity: .9;
}
body.lang-en .hero-geo svg { right: auto; left: 0; }

/* Diagonal divider */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 140px 140px;
  border-color: transparent transparent var(--c-offwhite) transparent;
  bottom: 0; top: auto;
  display: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,30,30,1) 38%, rgba(30,30,30,.6) 60%, rgba(30,30,30,.1) 100%);
}
body.lang-en .hero-overlay {
  background: linear-gradient(to left, rgba(30,30,30,1) 38%, rgba(30,30,30,.6) 60%, rgba(30,30,30,.1) 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px; align-items: center;
}
body.lang-en .hero-inner { direction: ltr; grid-template-columns: .9fr 1.1fr; }
body.lang-ar .hero-inner { direction: rtl; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(245,166,35,.5);
  color: var(--c-amber);
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245,166,35,.06);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--c-amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* Headline */
.hero-headline {
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
body.lang-ar .hero-headline {
  font-family: 'Cairo', sans-serif;
  text-transform: none;
  font-size: clamp(36px, 4.5vw, 68px);
  letter-spacing: 0;
}
.hero-headline .fire { color: var(--c-orange); }
.hero-headline .gold { color: var(--c-amber); }

/* Underline accent */
.hero-headline .underline-accent {
  position: relative; display: inline-block;
}
.hero-headline .underline-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 5px;
  background: var(--grad-fire);
  border-radius: 2px;
}

.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.7);
  max-width: 520px; margin-bottom: 40px;
  font-weight: 400; line-height: 1.8;
}

/* CTA group */
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
body.lang-ar .cta-group { justify-content: flex-start; }
body.lang-en .cta-group { justify-content: flex-start; }

.btn-fire {
  background: var(--grad-fire);
  color: white; border: none;
  padding: 16px 38px; border-radius: 6px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-fire);
  transition: var(--transition);
  font-family: inherit; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-fire::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
}
.btn-fire:hover { transform: translateY(-3px); box-shadow: 0 28px 80px rgba(232,78,16,.5); }
.btn-fire .arrow { transition: transform .2s; }
.btn-fire:hover .arrow { transform: translateX(4px); }
body.lang-ar .btn-fire:hover .arrow { transform: translateX(-4px); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.25);
  padding: 16px 32px; border-radius: 6px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); font-family: inherit; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--c-amber); color: var(--c-amber); }

/* Hero stats */
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.stat-item {
  flex: 1; padding: 20px 24px;
  border-left: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
body.lang-ar .stat-item { border-left: none; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:first-child { border-left: none; }
body.lang-ar .stat-item:first-child { border-right: none; }
.stat-item .n {
  font-size: 30px; font-weight: 900; color: var(--c-amber);
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1;
}
.stat-item .l { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Hero right — package card */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-deep);
  animation: floatCard 7s ease-in-out infinite;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-fire);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.card-icon-box {
  width: 52px; height: 52px;
  background: var(--grad-fire);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; color: white;
  font-family: 'Barlow Condensed', sans-serif;
  flex-shrink: 0;
}
.card-brand { color: white; font-size: 15px; font-weight: 700; }
.card-sub   { color: var(--c-amber); font-size: 12px; font-weight: 600; }

.package-list { display: flex; flex-direction: column; gap: 12px; }
.package-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.5;
}
body.lang-ar .package-list li { flex-direction: row-reverse; text-align: right; }
.pkg-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-green); font-size: 11px;
  margin-top: 1px;
}

.price-chip {
  margin-top: 24px;
  background: var(--grad-fire);
  border-radius: 8px;
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
body.lang-ar .price-chip { flex-direction: row-reverse; }
.price-chip .lbl { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; }
.price-chip .amt {
  color: white; font-size: 28px; font-weight: 900;
  font-family: 'Barlow Condensed', sans-serif;
}
.price-chip .yr  { color: rgba(255,255,255,.65); font-size: 12px; }

/* Float badges */
.float-badge {
  position: absolute;
  background: var(--c-charcoal);
  border: 1px solid rgba(245,166,35,.35);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  z-index: 3;
}
.float-badge .fb-icon { font-size: 20px; }
.float-badge .fb-text { color: white; font-size: 12px; font-weight: 700; }
.float-badge .fb-sub  { color: var(--c-amber); font-size: 11px; }

.fb-1 { top: -18px; right: -20px; }
body.lang-en .fb-1 { right: auto; left: -20px; }
.fb-2 { bottom: -14px; left: -20px; }
body.lang-en .fb-2 { left: auto; right: -20px; }

/* ================================================================
   SECTION SHARED
   ================================================================ */
.section-wrap { padding: 100px 32px; }
.section-center { text-align: center; max-width: 820px; margin: 0 auto; }

.section-chip {
  display: inline-block;
  background: rgba(232,78,16,.1);
  color: var(--c-orange);
  padding: 6px 20px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(232,78,16,.25);
}
.section-chip.light {
  background: rgba(245,166,35,.15);
  color: var(--c-amber);
  border-color: rgba(245,166,35,.3);
}

.section-h {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: -.01em;
}
body.lang-ar .section-h {
  font-family: 'Cairo', sans-serif;
  text-transform: none; letter-spacing: 0;
}
.section-h.white { color: white; }

.section-p {
  font-size: 17px; color: var(--c-gray);
  max-width: 620px; margin: 0 auto;
}
.section-p.light { color: rgba(255,255,255,.6); }

/* ================================================================
   DIAGONAL DIVIDERS
   ================================================================ */
.diag-top {
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
  padding-top: 120px !important;
}
.diag-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-bottom: 120px !important;
}
.diag-both {
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}

/* ================================================================
   PAIN SECTION
   ================================================================ */
.pain-section {
  background: var(--c-offwhite);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 60px auto 0;
}
.pain-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--c-lightgray);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-fire);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
body.lang-en .pain-card::before { transform-origin: right; }
.pain-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-emoji { font-size: 38px; margin-bottom: 18px; }
.pain-card h4 {
  font-size: 18px; font-weight: 800;
  color: var(--c-dark); margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: .02em;
}
body.lang-ar .pain-card h4 { font-family: 'Cairo', sans-serif; text-transform: none; letter-spacing: 0; }
.pain-card p { font-size: 14px; color: var(--c-gray); line-height: 1.75; }

/* ================================================================
   PACKAGE SECTION
   ================================================================ */
.package-section { background: white; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  max-width: 1280px; margin: 70px auto 0;
}
.pkg-card {
  background: var(--c-offwhite);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  border: 2px solid transparent;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.pkg-card:hover {
  border-color: var(--c-amber);
  box-shadow: 0 24px 70px rgba(245,166,35,.18);
  transform: translateY(-6px);
}
.pkg-card .num-bg {
  position: absolute; top: 20px; left: 24px;
  font-size: 80px; font-weight: 900; line-height: 1;
  color: rgba(232,78,16,.06);
  font-family: 'Barlow Condensed', sans-serif;
  pointer-events: none;
}
body.lang-ar .pkg-card .num-bg { left: auto; right: 24px; }
.pkg-icon {
  width: 64px; height: 64px;
  background: var(--grad-fire);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 26px;
  box-shadow: 0 8px 24px rgba(232,78,16,.3);
}
.pkg-card h3 {
  font-size: 24px; font-weight: 800;
  color: var(--c-dark); margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}
body.lang-ar .pkg-card h3 { font-family: 'Cairo', sans-serif; text-transform: none; font-size: 20px; }
.pkg-card > p { font-size: 14px; color: var(--c-gray); margin-bottom: 24px; line-height: 1.75; }

.feature-list li {
  font-size: 13.5px; color: var(--c-dark);
  padding: 9px 0;
  border-bottom: 1px dashed #DDE2EA;
  display: flex; align-items: center; gap: 10px;
}
body.lang-ar .feature-list li { flex-direction: row-reverse; text-align: right; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '▸';
  color: var(--c-orange); font-size: 10px; flex-shrink: 0;
}

/* ================================================================
   WHY SECTION  (dark)
   ================================================================ */
.why-section { background: var(--c-charcoal); }
.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
body.lang-ar .why-grid { direction: rtl; }
body.lang-en .why-grid { direction: ltr; }

.why-points { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.why-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
body.lang-ar .why-point { flex-direction: row-reverse; }
.why-point:hover {
  background: rgba(245,166,35,.08);
  border-color: rgba(245,166,35,.25);
  transform: translateX(-6px);
}
body.lang-en .why-point:hover { transform: translateX(6px); }
.wp-icon { font-size: 26px; flex-shrink: 0; }
.wp-text h5 { font-size: 16px; font-weight: 800; color: white; margin-bottom: 4px; }
.wp-text p  { font-size: 13px; color: rgba(255,255,255,.5); }

.stats-pile { display: flex; flex-direction: column; gap: 16px; }
.stat-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 18px;
  transition: var(--transition);
}
body.lang-ar .stat-block { flex-direction: row-reverse; text-align: right; }
.stat-block:hover {
  background: rgba(245,166,35,.1);
  border-color: rgba(245,166,35,.3);
  transform: translateX(-6px);
}
body.lang-en .stat-block:hover { transform: translateX(6px); }
.sb-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--grad-fire);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(232,78,16,.35);
}
.sb-n {
  font-size: 34px; font-weight: 900; color: var(--c-amber);
  font-family: 'Barlow Condensed', sans-serif; line-height: 1;
}
.sb-d { font-size: 13px; color: rgba(255,255,255,.55); }

/* ================================================================
   FOR WHOM SECTION
   ================================================================ */
.whom-section { background: var(--c-offwhite); }
.whom-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px; margin-top: 56px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.whom-card {
  background: white;
  border: 2px solid var(--c-lightgray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center; min-width: 160px;
  transition: var(--transition);
  cursor: default;
}
.whom-card:hover {
  border-color: var(--c-orange);
  box-shadow: 0 12px 40px rgba(232,78,16,.15);
  transform: translateY(-4px);
}
.whom-card .wi { font-size: 42px; margin-bottom: 12px; }
.whom-card h4 { font-size: 15px; font-weight: 800; color: var(--c-dark); }

/* ================================================================
   PRICING SECTION
   ================================================================ */
.pricing-section { background: var(--c-navy); }
.pricing-box {
  max-width: 820px; margin: 0 auto;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  position: relative; overflow: hidden;
}
.pricing-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-fire);
}
.pricing-box::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%);
  pointer-events: none;
}

.includes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin: 40px 0;
}
.inc-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.8); font-size: 14px;
}
body.lang-ar .inc-item { flex-direction: row-reverse; }
.inc-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-green); font-size: 10px; margin-top: 2px;
}

.price-hero {
  text-align: center; margin: 44px 0 36px;
  padding: 36px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.price-hero .amount {
  font-size: clamp(64px, 10vw, 96px);
  font-weight: 900; color: white; line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
}
.price-hero .amount span { color: var(--c-amber); }
.price-hero .currency { font-size: 22px; color: rgba(255,255,255,.6); margin-top: 6px; }
.price-hero .term { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 6px; }

.cta-wrap { text-align: center; }
.btn-fire-lg {
  background: var(--grad-fire);
  color: white; border: none;
  padding: 20px 56px; border-radius: 8px;
  font-size: 18px; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-fire);
  transition: var(--transition);
  font-family: inherit; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-fire-lg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 50%);
}
.btn-fire-lg:hover { transform: translateY(-4px); box-shadow: 0 32px 90px rgba(232,78,16,.55); }
.cta-note { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.35); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { background: var(--c-offwhite); }
.faq-list { max-width: 780px; margin: 56px auto 0; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 14px;
  border: 1px solid var(--c-lightgray);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(232,78,16,.25); }
.faq-q {
  width: 100%; padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; cursor: pointer;
  background: none; border: none; text-align: right;
  font-family: inherit; font-size: 15px; font-weight: 700;
  color: var(--c-dark); transition: var(--transition);
}
body.lang-en .faq-q { text-align: left; flex-direction: row; }
body.lang-ar .faq-q { flex-direction: row-reverse; }
.faq-q:hover { color: var(--c-orange); }
.faq-arrow {
  color: var(--c-orange); font-size: 22px;
  transition: transform .35s ease; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px; color: var(--c-gray); line-height: 1.8;
  border-top: 1px dashed var(--c-lightgray);
}
body.lang-ar .faq-a { text-align: right; }
.faq-item.open .faq-a { display: block; }
.faq-item.open { border-color: var(--c-orange); }

/* ================================================================
   CONTACT / FORM SECTION
   ================================================================ */
.contact-section { background: var(--c-dark); }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: flex-start;
}
body.lang-ar .contact-grid { direction: rtl; }
body.lang-en .contact-grid { direction: ltr; }

.contact-info { padding-top: 8px; }
.contact-info h2 { color: white; margin-bottom: 16px; }
.contact-info p  { color: rgba(255,255,255,.6); font-size: 16px; margin-bottom: 40px; }

.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
body.lang-ar .contact-link { flex-direction: row-reverse; }
.contact-link:hover {
  background: rgba(245,166,35,.1);
  border-color: rgba(245,166,35,.3);
}
.cl-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--grad-fire);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.cl-label { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }
.cl-value { font-size: 15px; color: white; font-weight: 600; }

/* Form */
.contact-form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
}
.contact-form-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-fire);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-title { color: white; font-size: 22px; font-weight: 800; margin-bottom: 28px; }
body.lang-ar .form-title { text-align: right; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em; text-transform: uppercase;
}
body.lang-ar .form-group label { text-align: right; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 14px 18px;
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
  outline: none;
}
body.lang-ar .form-group input,
body.lang-ar .form-group textarea,
body.lang-ar .form-group select { text-align: right; direction: rtl; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-amber);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(245,166,35,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--c-dark); color: white; }

.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
}
.form-msg.success { background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3); color: var(--c-green); display: block; }
.form-msg.error   { background: rgba(232,78,16,.12); border: 1px solid rgba(232,78,16,.3); color: #ff7b55; display: block; }

.btn-submit {
  width: 100%;
  background: var(--grad-fire);
  color: white; border: none;
  padding: 18px;
  border-radius: 8px;
  font-size: 17px; font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--shadow-fire);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 50%);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 28px 70px rgba(232,78,16,.5); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-submit .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   FINAL CTA BANNER
   ================================================================ */
.final-banner {
  background: var(--grad-fire);
  padding: 90px 32px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpolygon points='40 0 80 80 0 80'/%3E%3C/g%3E%3C/svg%3E")
    repeat center;
  background-size: 80px 80px;
}
.final-banner h2 { color: white; font-size: clamp(30px, 5vw, 62px); margin-bottom: 16px; position: relative; }
.final-banner p  { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 40px; position: relative; }
.btn-white {
  background: white; color: var(--c-orange);
  padding: 20px 52px; border-radius: 8px;
  font-size: 18px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition); text-decoration: none;
  font-family: inherit;
  position: relative;
}
.btn-white:hover { transform: scale(1.04); box-shadow: 0 20px 60px rgba(0,0,0,.25); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 32px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.footer-logo img { height: 40px; width: auto; }
.footer-copy { color: rgba(255,255,255,.35); font-size: 13px; }
.footer-copy span { color: var(--c-amber); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ================================================================
   WHATSAPP FAB
   ================================================================ */
.wa-fab {
  position: fixed; bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
  transition: var(--transition);
  text-decoration: none;
}
body.lang-ar .wa-fab { right: auto; left: 28px; }
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 14px 40px rgba(37,211,102,.6); }
.wa-fab svg { width: 30px; height: 30px; fill: white; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hero-inner, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { display: none; }
  .hero-inner { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .pricing-box { padding: 40px 24px; }
  .nav-inner { padding: 12px 20px; }
  .section-wrap { padding: 72px 20px; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; }
  .hero-stats .stat-item { border-left: none !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .pain-grid, .pkg-grid { grid-template-columns: 1fr; }
  .whom-grid { gap: 14px; }
  .lang-switch button { padding: 5px 12px; font-size: 11px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
}
