@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy-900: #050a14;
  --navy-800: #0a1628;
  --navy-700: #132240;
  --gold: #C9A227;
  --gold-light: #e8d46b;
  --gold-dark: #a88420;
  --offwhite: #f5f5f0;
  --white: #ffffff;
  --graytext: #94a3b8;
  --success: #10b981;
  --danger: #ef4444;
  --glass-bg: rgba(10, 22, 40, 0.72);
  --glass-border: rgba(201, 162, 39, 0.15);
}

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

html { scroll-behavior: smooth; }
html[data-lang="ar"] { direction: rtl; }
html[data-lang="en"] { direction: ltr; }

body {
  font-family: 'Inter', 'Noto Sans Arabic', sans-serif;
  background: var(--navy-900);
  color: var(--offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}

html[data-lang="ar"] body { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }

/* Language visibility */
.lang-ar, .lang-en { display: none; }
html[data-lang="ar"] .lang-ar { display: block; }
html[data-lang="en"] .lang-en { display: block; }
html[data-lang="ar"] .lang-ar.inline,
html[data-lang="en"] .lang-en.inline { display: inline; }
html[data-lang="ar"] .lang-ar.flex,
html[data-lang="en"] .lang-en.flex { display: flex; }
html[data-lang="ar"] .lang-ar.grid,
html[data-lang="en"] .lang-en.grid { display: grid; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
}

.glass-card {
  background: linear-gradient(145deg, rgba(19,34,64,0.6), rgba(10,22,40,0.8));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.4);
  box-shadow: 0 20px 60px rgba(201,162,39,0.12), 0 0 40px rgba(201,162,39,0.06);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(5,10,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--graytext);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
html[data-lang="ar"] .nav-links a.active::after { left: 0; right: 0; }

.lang-toggle {
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.lang-toggle:hover {
  background: rgba(201,162,39,0.2);
  border-color: var(--gold);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 40%, rgba(88,28,135,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 60%, rgba(19,34,64,0.6) 0%, transparent 50%),
              linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  z-index: 0;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(88,28,135,0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201,162,39,0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(19,34,64,0.4) 0%, transparent 60%);
  animation: meshShift 12s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes meshShift {
  0% { transform: scale(1) translate(0,0); opacity: 0.7; }
  50% { transform: scale(1.1) translate(-2%,1%); opacity: 1; }
  100% { transform: scale(1.05) translate(1%,-1%); opacity: 0.8; }
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 8s ease-in-out infinite;
}
@keyframes floatParticle {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-40px) scale(1.3); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero h1 .gold-text { color: var(--gold); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--graytext);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-900);
  box-shadow: 0 8px 32px rgba(201,162,39,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,162,39,0.4);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-3px);
}

/* Magnetic button subtle effect */
.magnetic-btn { transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); }

/* Hero stats pills */
.hero-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.stat-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  color: var(--graytext);
  backdrop-filter: blur(10px);
}
.stat-pill strong { color: var(--gold); font-weight: 700; }

/* Section base */
.section {
  padding: 5rem 1.5rem;
  position: relative;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section-desc {
  color: var(--graytext);
  max-width: 680px;
  font-size: 1.05rem;
}

/* Urgency bar */
.urgency-bar {
  background: linear-gradient(90deg, rgba(201,162,39,0.12), rgba(201,162,39,0.05), rgba(201,162,39,0.12));
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 1rem 1.5rem;
  text-align: center;
}
.urgency-bar p {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}
.urgency-bar .countdown {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.countdown-digit {
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* Giga project cards */
.giga-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.giga-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border: 1px solid rgba(201,162,39,0.1);
}
.giga-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.giga-card:hover .giga-card-bg { transform: scale(1.08); }
.giga-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,10,20,0.95) 0%, rgba(5,10,20,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.giga-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.giga-card p {
  color: var(--graytext);
  font-size: 0.85rem;
}
.giga-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
}
html[data-lang="ar"] .giga-card .badge { right: auto; left: 1rem; }

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(19,34,64,0.5), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,162,39,0.08);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: 0 16px 48px rgba(201,162,39,0.1);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--graytext);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,162,39,0.1);
  border-bottom: 1px solid rgba(201,162,39,0.1);
  background: rgba(201,162,39,0.02);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
html[data-lang="ar"] .marquee-track { animation-direction: reverse; }
.marquee-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--graytext);
  white-space: nowrap;
  opacity: 0.7;
}
.marquee-item::before {
  content: '◆';
  color: var(--gold);
  margin-right: 1rem;
}
html[data-lang="ar"] .marquee-item::before { margin-right: 0; margin-left: 1rem; }

/* Persona / ICP cards */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.persona-card {
  padding: 1.75rem;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(19,34,64,0.5), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,162,39,0.08);
  transition: all 0.4s ease;
}
.persona-card:hover {
  border-color: rgba(201,162,39,0.25);
  transform: translateY(-4px);
}
.persona-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.persona-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.persona-card .pain {
  color: var(--danger);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.persona-card .aspire {
  color: var(--success);
  font-size: 0.85rem;
}

/* Salary / ROI section */
.salary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.salary-stat {
  text-align: center;
  padding: 2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(19,34,64,0.4), rgba(10,22,40,0.6));
  border: 1px solid rgba(201,162,39,0.1);
}
.salary-stat .number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.salary-stat .label {
  color: var(--graytext);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Progress bars */
.progress-wrap {
  margin-top: 2.5rem;
  max-width: 700px;
}
.progress-item {
  margin-bottom: 1.5rem;
}
.progress-item .progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--graytext);
}
.progress-item .progress-label strong { color: var(--white); }
.progress-bar {
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 0;
  transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}

/* Dual CTA */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.dual-box {
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(201,162,39,0.12);
  background: linear-gradient(145deg, rgba(19,34,64,0.4), rgba(10,22,40,0.6));
}
.dual-box h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.dual-box p {
  color: var(--graytext);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Lead magnet */
.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.lead-magnet-visual {
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(201,162,39,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lead-magnet-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201,162,39,0.15), transparent 60%);
}
.report-mockup {
  position: relative;
  z-index: 2;
  background: var(--navy-800);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 12px;
  padding: 2rem;
  width: 80%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.report-mockup h4 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.report-mockup p { color: var(--graytext); font-size: 0.8rem; }

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--graytext);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,0.5); }

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-card {
  padding: 2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(19,34,64,0.4), rgba(10,22,40,0.6));
  border: 1px solid rgba(201,162,39,0.1);
  text-align: center;
  transition: all 0.4s ease;
}
.contact-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-4px);
}
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.contact-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: var(--graytext);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* Table styles */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
html[data-lang="ar"] .data-table th,
html[data-lang="ar"] .data-table td { text-align: right; }
.data-table th {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(201,162,39,0.05);
}
.data-table td { color: var(--graytext); }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Timeline */
.timeline {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 2rem;
}
html[data-lang="ar"] .timeline { padding-left: 0; padding-right: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
html[data-lang="ar"] .timeline::before { left: auto; right: 6px; }
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
html[data-lang="ar"] .timeline-item { padding-left: 0; padding-right: 1.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy-900);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
}
html[data-lang="ar"] .timeline-item::before { left: auto; right: -2px; }
.timeline-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.timeline-item p {
  color: var(--graytext);
  font-size: 0.9rem;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: inherit;
  font-family: inherit;
}
.accordion-header:hover { color: var(--gold); }
.accordion-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,162,39,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
html[data-lang="ar"] .accordion-icon { margin-left: 0; margin-right: 1rem; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
  color: var(--graytext);
  font-size: 0.95rem;
}
.accordion-item.open .accordion-body {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

/* Objection cards (flip/expand) */
.objection-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(19,34,64,0.5), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,162,39,0.1);
  cursor: pointer;
  transition: all 0.4s ease;
}
.objection-card:hover { border-color: rgba(201,162,39,0.25); }
.objection-card .obj-q {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.objection-card .obj-q .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.objection-card .obj-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), margin 0.4s, opacity 0.4s;
  opacity: 0;
  margin-top: 0;
  color: var(--graytext);
  font-size: 0.95rem;
  line-height: 1.7;
}
.objection-card.open .obj-a {
  max-height: 400px;
  margin-top: 1rem;
  opacity: 1;
}
.objection-card.open .obj-q { color: var(--gold); }

/* Employer cards */
.employer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.employer-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(19,34,64,0.4), rgba(10,22,40,0.6));
  border: 1px solid rgba(201,162,39,0.08);
  transition: all 0.35s ease;
}
.employer-card:hover {
  border-color: rgba(201,162,39,0.25);
  transform: translateY(-3px);
}
.employer-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.employer-card .meta {
  color: var(--graytext);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.employer-card .badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.employer-card .badge-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.15);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-tab {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--graytext);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.filter-tab:hover, .filter-tab.active {
  background: rgba(201,162,39,0.12);
  border-color: rgba(201,162,39,0.3);
  color: var(--gold);
}

/* Page header */
.page-header {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  z-index: 0;
}
.page-header-content { position: relative; z-index: 1; }

/* Footer */
.footer {
  border-top: 1px solid rgba(201,162,39,0.1);
  padding: 4rem 1.5rem 2rem;
  background: linear-gradient(180deg, var(--navy-900), #020408);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  color: var(--graytext);
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--success);
  color: var(--navy-900);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.5rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--graytext);
  font-size: 0.85rem;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-badge.gold {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.2);
  color: var(--gold);
}

/* Curriculum cards */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.curriculum-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(19,34,64,0.4), rgba(10,22,40,0.6));
  border: 1px solid rgba(201,162,39,0.08);
}
.curriculum-card .num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.curriculum-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.curriculum-card p {
  color: var(--graytext);
  font-size: 0.9rem;
}

/* Process steps */
.process-steps {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.process-step .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.process-step p {
  color: var(--graytext);
  font-size: 0.9rem;
}

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,10,20,0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-drawer.open { opacity: 1; pointer-events: all; }
.mobile-drawer a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-drawer a:hover { color: var(--gold); }
.mobile-drawer .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .dual-cta, .lead-magnet { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .section { padding: 3.5rem 1rem; }
  .page-header { padding: 8rem 1rem 3rem; }
  .hero { padding: 7rem 1rem 3rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
