/* ============================================================
   BURHAN.FINANCE — Landing Page Styles
   Palette: Dark Navy (#0a1628) + Deep Green (#0d2818)
   Accent: Gold (#c9a84c), White (#ffffff), Muted (#a8b2c1)
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a2f50;
  --green-dark: #0d2818;
  --green-mid:  #113d22;
  --gold:       #c9a84c;
  --gold-light: #dbbf6a;
  --white:      #ffffff;
  --off-white:  #f0ede8;
  --muted:      #a8b2c1;
  --border:     rgba(201,168,76,0.18);

  --sev-critical: #ef4444;
  --sev-high:     #f97316;
  --sev-medium:   #eab308;
  --sev-low:      #22c55e;

  --font-en: 'Inter', system-ui, sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', 'Inter', system-ui, sans-serif;

  --header-h: 72px;
  --section-pad: 96px;
  --container: 1160px;
  --radius: 4px;
  --radius-lg: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-en);
  line-height: 1.6;
  overflow-x: hidden;
}

body.lang-ar {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}

/* Arabic body text — needs more line height */
body.lang-ar p,
body.lang-ar li {
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Utility: visually hide but keep accessible ── */
.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;
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-name {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--white); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding-inline: 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.lang-toggle:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Show correct label based on current lang */
body.lang-en .lang-toggle .lang-en-label { display: block; }
body.lang-en .lang-toggle .lang-ar-label { display: none; }
body.lang-ar .lang-toggle .lang-en-label { display: none; }
body.lang-ar .lang-toggle .lang-ar-label { display: block; }

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-inline-start: auto;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-nav.open {
  max-height: 400px;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav a:hover { color: var(--white); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-sm  { font-size: 0.8125rem; padding: 7px 16px; }
.btn-md  { font-size: 0.9375rem; padding: 11px 24px; }
.btn-lg  { font-size: 1rem;      padding: 15px 32px; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-size: 1.0625rem;
}
.btn-gold:hover {
  background: var(--gold-light);
}


/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding-block: var(--section-pad);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 700px;
}

body.lang-ar .section-title {
  letter-spacing: 0;
}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--header-h) + 100px);
  padding-bottom: 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative rule */
.section-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}

body.lang-ar .hero-headline {
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-credibility {
  font-size: 0.8125rem;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  line-height: 1.6;
  max-width: 600px;
  opacity: 0.85;
}

body.lang-ar .hero-credibility {
  border-left: none;
  border-right: 2px solid var(--gold);
  padding-left: 0;
  padding-right: 14px;
}


/* ============================================================
   PROBLEM
   ============================================================ */
.section-problem {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-body {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--off-white);
  max-width: 800px;
  line-height: 1.8;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.section-how {
  background: var(--navy);
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}

.how-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.25s;
}

.how-card:hover {
  border-color: rgba(201,168,76,0.45);
}

.how-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.how-icon-upload  { background: rgba(239,68,68,0.12); color: var(--sev-critical); }
.how-icon-analyse { background: rgba(234,179,8,0.12);  color: var(--sev-medium); }
.how-icon-report  { background: rgba(34,197,94,0.12);  color: var(--sev-low); }

.how-card-step {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.how-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.how-card-text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Severity legend */
.severity-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  align-items: center;
}

body.lang-ar .severity-legend {
  flex-direction: row-reverse;
}

.sev {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.sev::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sev-critical { color: var(--sev-critical); background: rgba(239,68,68,0.1); }
.sev-critical::before { background: var(--sev-critical); }

.sev-high     { color: var(--sev-high);     background: rgba(249,115,22,0.1); }
.sev-high::before { background: var(--sev-high); }

.sev-medium   { color: var(--sev-medium);   background: rgba(234,179,8,0.1); }
.sev-medium::before { background: var(--sev-medium); }

.sev-low      { color: var(--sev-low);      background: rgba(34,197,94,0.1); }
.sev-low::before { background: var(--sev-low); }

/* Highlight stat */
.how-stat {
  border: 1px solid var(--border);
  border-inline-start: 3px solid var(--gold);
  background: var(--navy-mid);
  padding: 24px 28px;
}

.how-stat p {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--off-white);
}


/* ============================================================
   WHY BURHAN
   ============================================================ */
.section-why {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.why-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.why-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.why-block:last-child { border-bottom: none; }

.why-block:hover {
  background: rgba(201,168,76,0.04);
}

.why-block-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius);
  margin-top: 2px;
}

.why-block-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-block-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
}


/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.section-who {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.who-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 28px 22px;
  transition: border-color 0.25s, background 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: var(--navy-light);
}

.who-card-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.who-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.who-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ============================================================
   FOUNDER / CREDIBILITY
   ============================================================ */
.section-founder {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

body.lang-ar .founder-inner {
  flex-direction: row-reverse;
}

.founder-photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--navy-light);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.1) saturate(1.05);
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.founder-role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.founder-text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 4px;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
  transition: color 0.2s;
}

.founder-linkedin:hover { color: var(--gold-light); }

.founder-company {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 4px;
}

.founder-company a {
  color: var(--gold);
  transition: color 0.2s;
}

.founder-company a:hover { color: var(--gold-light); }


/* ============================================================
   FINAL CTA
   ============================================================ */
.section-cta {
  background: var(--green-dark);
  padding-block: 104px;
  border-top: 1px solid rgba(201,168,76,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-headline {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

body.lang-ar .cta-headline {
  letter-spacing: 0;
}

.cta-sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.75;
}

.cta-actions {
  margin-bottom: 32px;
}

.cta-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4ade80;
  transition: color 0.2s;
}

.whatsapp-link:hover { color: #86efac; }

.cta-email {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.cta-email:hover { color: var(--white); }

/* Language-specific content blocks in CTA secondary */
body.lang-en .lang-ar-content { display: none; }
body.lang-ar .lang-en-content { display: none; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding-block: 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-brand {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-brand {
  text-align: center;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .main-nav { gap: 20px; }

  .who-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ≤768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px; --header-h: 64px; }

  /* Header: hide nav + actions, show hamburger */
  .main-nav,
  .header-actions { display: none; }

  .mobile-menu-toggle { display: flex; }

  /* Show mobile nav when open */
  .mobile-nav { display: flex; }

  /* Hero */
  .section-hero {
    padding-top: calc(var(--header-h) + 40px);
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-headline { line-height: 1.15; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* How it works */
  .how-cards {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-card { border-bottom: 1px solid var(--border); }
  .how-card:last-child { border-bottom: none; }

  /* Why blocks */
  .why-block { flex-direction: column; gap: 16px; }

  /* Who */
  .who-cards { grid-template-columns: 1fr; }

  /* Founder */
  .founder-inner { flex-direction: column; }
  body.lang-ar .founder-inner { flex-direction: column; }

  /* CTA */
  .btn-gold { width: 100%; max-width: 340px; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand { order: -1; }
}

/* ≤480px */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  .header-inner { gap: 12px; }

  .hero-subheadline { font-size: 0.9375rem; }

  .section-title { font-size: 1.625rem; }

  .how-card { padding: 28px 20px; }

  .why-block { padding: 28px 20px; }

  .who-card { padding: 22px 18px; }
}


/* ============================================================
   WHO CARDS — 5-COLUMN
   ============================================================ */
.who-cards-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
  .who-cards-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .who-cards-5 {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   CREDIBILITY BAR
   ============================================================ */
.section-credibility-bar {
  background: var(--navy-mid);
  padding-block: 24px;
}

.credibility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.credibility-item {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  opacity: 0.85;
}

.credibility-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .credibility-bar-inner {
    flex-direction: column;
    gap: 16px;
  }

  .credibility-divider {
    width: 32px;
    height: 1px;
  }
}


/* ============================================================
   SCREENSHOT PLACEHOLDER
   ============================================================ */
.screenshot-placeholder {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.screenshot-icon {
  color: rgba(201, 168, 76, 0.4);
}

.screenshot-label {
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.65;
}

.screenshot-caption {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  opacity: 0.65;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .screenshot-placeholder {
    height: 220px;
  }
}


/* ============================================================
   PRODUCT SCREENSHOT (real image)
   ============================================================ */
.product-screenshot-wrap {
  margin-top: 40px;
  text-align: center;
}

.product-screenshot {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  margin-inline: auto;
}

/* ============================================================
   CORPUS SEARCH SECTION
   ============================================================ */
.section-corpus {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--section-pad);
}

.section-corpus .section-title {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

/* ============================================================
   VIDEO SECTION (demo video)
   ============================================================ */
.section-video {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding-block: var(--section-pad);
}

.video-embed-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.demo-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.video-play-btn {
  color: var(--gold);
  opacity: 0.85;
}

.video-label {
  font-size: 0.9375rem;
  color: var(--muted);
  text-align: center;
  max-width: 440px;
  line-height: 1.65;
  padding-inline: 24px;
}


/* ============================================================
   FOUNDER — PHOTO PLACEHOLDER & UCL
   ============================================================ */
.founder-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
}

.founder-silhouette {
  color: var(--muted);
  opacity: 0.45;
}

.founder-ucl {
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.75;
  margin-top: 2px;
}


/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  margin-top: 56px;
  max-width: 660px;
  margin-inline: auto;
  text-align: left;
}

body.lang-ar .contact-form-wrap {
  text-align: right;
}

.contact-form-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0.85;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
}

.form-optional {
  font-size: 0.75rem;
  opacity: 0.6;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 178, 193, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 108px;
}

.form-submit-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

body.lang-ar .form-submit-group {
  align-items: flex-end;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.65;
  line-height: 1.6;
  max-width: 500px;
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   CTA — DIVIDER, PHONE, SECONDARY
   ============================================================ */
.cta-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-block: 44px;
}

.cta-phone {
  font-size: 0.875rem;
  color: var(--muted);
}


/* ============================================================
   FOOTER — LEGAL LINE
   ============================================================ */
.footer-legal {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.55;
  margin-top: 8px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.lang-ar .footer-legal {
  text-align: center;
}

/* ============================================================
   CONTACT FORM — STATUS MESSAGE
   ============================================================ */
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
