/* ============================================================
   Ishraf by ArEgCon — Audit Intelligence & Marketplace
   Design System: Near-White Base, Electric Blue Primary, Amber Orange Accent, Deep Navy Contrast
============================================================ */

:root {
  /* Core Color Tokens */
  --bg-main: #F8FAFC;         /* Clean crisp base */
  --bg-card: #FFFFFF;         /* Pure card white */
  --bg-subtle: #F1F5F9;       /* Light Slate Tint */
  --bg-navy: #0B132B;         /* Deep Navy Contrast */
  --bg-navy-card: #1C2541;    /* Elevated Navy Card */

  /* Brand Action Colors */
  --blue-primary: #1D4ED8;     /* Electric / Royal Blue */
  --blue-hover: #1E40AF;
  --blue-light: #EFF6FF;
  --blue-border: #BFDBFE;
  
  --orange-accent: #EA580C;   /* Amber / Safety Orange Accent */
  --orange-hover: #C2410C;
  --orange-light: #FFF7ED;
  --orange-border: #FED7AA;

  --emerald-trust: #059669;   /* Verified Certificate Green */
  --emerald-light: #ECFDF5;
  --emerald-border: #A7F3D0;

  /* Typography Colors */
  --ink-900: #0F172A;         /* Primary Headings */
  --ink-800: #1E293B;         /* Subheadings */
  --ink-700: #334155;         /* Body Text */
  --ink-600: #475569;         /* Secondary Text */
  --ink-500: #64748B;         /* Muted Text */
  --ink-400: #94A3B8;         /* Borders / Placeholders */
  --ink-200: #E2E8F0;

  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Fonts */
  --font-heading: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--ink-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 {
  font-family: var(--font-arabic);
  letter-spacing: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink-900);
  line-height: 1.25;
  font-weight: 800;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ═══════════════════════════════════════════
   BUTTONS & CONTROLS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--blue-primary);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--blue-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--orange-accent);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--orange-accent);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-accent:hover {
  background-color: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--ink-800) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: var(--ink-400);
  color: var(--blue-primary) !important;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   SECTION HEADINGS & TAGS
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-primary);
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

body.rtl .section-tag {
  letter-spacing: normal;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--ink-900);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
}

.nav-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.nav-byline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.rtl .nav-byline {
  letter-spacing: normal;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu li a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
  padding: 6px 4px;
}

.nav-menu li a:hover {
  color: var(--blue-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-800);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch-link:hover {
  background: var(--blue-light);
  border-color: var(--blue-border);
  color: var(--blue-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink-800);
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   HERO SECTION & AUDIENCE FORK
═══════════════════════════════════════════ */
#hero {
  padding: 60px 0 50px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-main) 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  color: var(--blue-primary);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero-headline {
  font-size: 3.1rem;
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1.18;
  margin-bottom: 18px;
}

.text-gradient-primary {
  color: var(--blue-primary);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Credibility Stat Bar */
.hero-stat-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 8px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  text-align: left;
}

body.rtl .hero-stat-bar {
  text-align: right;
}

.stat-pill-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange-accent);
  line-height: 1;
}

.stat-pill-text {
  font-size: 0.85rem;
  color: var(--ink-700);
  font-weight: 700;
  line-height: 1.3;
}

.stat-pill-sub {
  display: block;
  font-size: 0.76rem;
  color: var(--ink-500);
  font-weight: 600;
}

/* Two-Sided Marketplace Fork Cards */
.hero-fork-wrapper {
  margin-top: 10px;
}

.fork-heading {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink-500);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-align: center;
}

body.rtl .fork-heading {
  letter-spacing: normal;
}

.hero-fork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fork-card {
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  text-align: left;
  position: relative;
}

body.rtl .fork-card {
  text-align: right;
}

.fork-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.fork-card.demand-side {
  border-color: var(--blue-border);
}

.fork-card.demand-side:hover {
  border-color: var(--blue-primary);
}

.fork-card.supply-side {
  border-color: var(--orange-border);
}

.fork-card.supply-side:hover {
  border-color: var(--orange-accent);
}

.fork-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
}

.demand-side .fork-tag {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.supply-side .fork-tag {
  background: var(--orange-light);
  color: var(--orange-accent);
}

.fork-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.fork-desc {
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════
   THE PROBLEM SECTION (COMPRESSED)
═══════════════════════════════════════════ */
#problem {
  padding: 70px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.problem-headline-box {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto 36px auto;
}

.problem-punchline {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.45;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.problem-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-card-title i {
  color: #DC2626;
}

.problem-card-desc {
  font-size: 0.88rem;
  color: var(--ink-600);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   THE FOUR PILLARS SECTION
═══════════════════════════════════════════ */
#pillars {
  padding: 80px 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
}

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

.pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-border);
}

.pillar-circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.pillar-circle-icon.blue {
  background: var(--blue-light);
  color: var(--blue-primary);
  border: 1px solid var(--blue-border);
}

.pillar-circle-icon.orange {
  background: var(--orange-light);
  color: var(--orange-accent);
  border: 1px solid var(--orange-border);
}

.pillar-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--ink-400);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.pillar-oneliner {
  font-size: 0.88rem;
  color: var(--ink-600);
  line-height: 1.55;
  margin-bottom: 20px;
}

.pillar-learn-btn {
  background: none;
  border: none;
  color: var(--blue-primary);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  text-align: inherit;
}

.pillar-learn-btn:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   VERIFIED CERTIFICATES (INTERACTIVE SECTION)
═══════════════════════════════════════════ */
#verify {
  padding: 80px 0;
  background: var(--bg-navy);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#verify .section-tag {
  background: rgba(29, 78, 216, 0.3);
  color: #93C5FD;
  border-color: rgba(147, 197, 253, 0.3);
}

#verify .section-title {
  color: #FFFFFF;
}

#verify .section-desc {
  color: #CBD5E1;
}

.verify-box-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.verify-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.verify-input {
  flex: 1;
  background: #0F172A;
  border: 1px solid #334155;
  color: #FFFFFF;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.2s ease;
}

.verify-input:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.4);
}

.verify-samples-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: #94A3B8;
}

.verify-sample-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: monospace;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.verify-sample-chip:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #FFFFFF;
}

/* Verification Result Panel */
.verification-result-panel {
  margin-top: 24px;
  padding: 24px;
  background: #0F172A;
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  display: none;
  animation: fadeIn 0.3s ease;
}

.verification-result-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-light);
  color: var(--emerald-trust);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.result-grid-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  font-size: 0.88rem;
}

.result-field-item label {
  display: block;
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.result-field-item span {
  color: #F8FAFC;
  font-weight: 600;
}

.result-hash-box {
  margin-top: 18px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed #334155;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.78rem;
  color: #A7F3D0;
  word-break: break-all;
}

/* ═══════════════════════════════════════════
   WHO IT'S FOR — THREE AUDIENCE TRACKS
═══════════════════════════════════════════ */
#tracks {
  padding: 80px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.track-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-border);
}

.track-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.track-type {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--orange-accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.track-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.track-pitch {
  font-size: 0.9rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.track-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.track-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-700);
  font-weight: 600;
}

.track-feature-item i {
  color: var(--emerald-trust);
}

/* ═══════════════════════════════════════════
   PROOF & CREDIBILITY BAND
═══════════════════════════════════════════ */
#proof {
  padding: 70px 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
}

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

.proof-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.proof-card-icon {
  font-size: 2rem;
  color: var(--blue-primary);
  margin-bottom: 14px;
}

.proof-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.proof-card-desc {
  font-size: 0.88rem;
  color: var(--ink-600);
  line-height: 1.55;
}

.proof-compliance-note {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-600);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.proof-compliance-note i {
  color: var(--emerald-trust);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════
   VISION 2030 ALIGNMENT SECTION
═══════════════════════════════════════════ */
#vision2030 {
  padding: 70px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.vision-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.vision-stat-card {
  background: linear-gradient(135deg, var(--bg-navy) 0%, #172554 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.vision-stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-accent);
  margin-bottom: 8px;
  line-height: 1;
}

.vision-stat-label {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.5;
  font-weight: 600;
}

.vision-points-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.vision-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.5;
}

.vision-point-item i {
  color: var(--blue-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
#faq {
  padding: 80px 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: flex-start;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.accordion-item.active {
  border-color: var(--blue-border);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: inherit;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.accordion-icon {
  font-size: 1rem;
  color: var(--ink-500);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--blue-primary);
}

.accordion-body {
  padding: 0 24px 20px 24px;
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.65;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* ═══════════════════════════════════════════
   CONTACT & EARLY ACCESS FORM
═══════════════════════════════════════════ */
#contact {
  padding: 80px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-800);
  margin-bottom: 6px;
}

.form-control, .form-select {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--ink-900);
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px var(--blue-light);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--orange-accent);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit-btn:hover {
  background: var(--orange-hover);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.85rem;
  color: var(--ink-600);
}

.footer-links li a:hover {
  color: var(--blue-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-500);
  flex-wrap: wrap;
  gap: 14px;
}

/* ═══════════════════════════════════════════
   MODAL / POPUP OVERLAY
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ink-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

body.rtl .modal-close-btn {
  right: auto;
  left: 20px;
}

.modal-close-btn:hover {
  background: var(--ink-200);
  color: var(--ink-900);
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN (MOBILE-FIRST GCC)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-fork-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tracks-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .vision-layout {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.25rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .hero-stat-bar {
    flex-direction: column;
    border-radius: var(--radius-md);
    text-align: center;
    padding: 16px;
  }
  body.rtl .hero-stat-bar {
    text-align: center;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .verify-input-group {
    flex-direction: column;
  }
  .result-grid-fields {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
