/* ═══════════════════════════════════════════════════════════
   وصلها (Waselha) — Landing Page Styles
   Page-specific CSS for the public landing/home page.
   Loaded alongside app.css (Tailwind compiled output).
   ═══════════════════════════════════════════════════════════ */

/* ─── Landing Page CSS Variables (shorthand aliases) ─── */
:root {
  --primary: #001726;
  --primary-container: #0d2c40;
  --on-primary-container: #7894ac;
  --secondary: #006b5f;
  --secondary-container: #6df5e1;
  --on-secondary-container: #006f64;
  --tertiary-container: #002e35;
  --on-tertiary-container: #009fb4;
  --surface: #f7f9fb;
  --surface-low: #f2f4f6;
  --surface-container: #eceef0;
  --surface-high: #e6e8ea;
  --on-surface: #191c1e;
  --on-surface-variant: #42474c;
  --outline: #73777d;
  --outline-variant: #c3c7cd;
  --inverse-surface: #2d3133;
  --inverse-on-surface: #eff1f3;
  --error: #ba1a1a;
  --adcae4: #adcae4;
  --grad-start: #006b5f;
  --grad-end: #009fb4;
  --shadow: 0 10px 40px rgba(13,44,64,0.06);
  --shadow-lg: 0 20px 60px rgba(13,44,64,0.10);
  --r-sm: 0.25rem;
  --r: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-full: 9999px;
}


  /* â”€â”€ NAV â”€â”€ */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,249,251,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--outline-variant);
    padding: 0 80px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-mark svg { width: 20px; height: 20px; fill: white; }

  .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--secondary); }

  .nav-actions { display: flex; align-items: center; gap: 12px; }

  .btn-ghost {
    padding: 8px 20px;
    border-radius: var(--r-full);
    border: 1.5px solid var(--outline-variant);
    background: transparent;
    color: var(--primary);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-ghost:hover { border-color: var(--secondary); background: rgba(109,245,225,0.08); }

  .btn-primary {
    padding: 8px 22px;
    border-radius: var(--r-full);
    border: none;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: white;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(0,107,95,0.3);
  }

  .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
  .btn-primary:active { transform: translateY(0); }

  /* â”€â”€ HERO â”€â”€ */
  .hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-blob-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109,245,225,0.18) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
  }

  .hero-blob-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,159,180,0.12) 0%, transparent 70%);
    bottom: -80px;
    right: 20%;
    border-radius: 50%;
  }

  .hero-content {
    position: relative;
    max-width: 680px;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(109,245,225,0.15);
    border: 1px solid rgba(0,107,95,0.2);
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 28px;
  }

  .hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }

  .hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.12;
    color: var(--primary);
    letter-spacing: -1px;
    margin-bottom: 24px;
  }

  .hero-title .accent {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
  }

  .hero-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 60px; }

  .btn-hero-primary {
    padding: 14px 32px;
    border-radius: var(--r-full);
    border: none;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: white;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,107,95,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,107,95,0.4); }

  .btn-hero-secondary {
    padding: 14px 32px;
    border-radius: var(--r-full);
    border: 1.5px solid var(--outline-variant);
    background: transparent;
    color: var(--primary);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-hero-secondary:hover { border-color: var(--secondary); }

  .hero-stats {
    display: flex;
    gap: 40px;
  }

  .hero-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
  }

  .hero-stat-lbl {
    font-size: 13px;
    color: var(--on-surface-variant);
    margin-top: 4px;
    display: block;
  }

  .hero-visual {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  /* â”€â”€ SHIPMENT CARD MOCKUP â”€â”€ */
  .shipment-card {
    background: white;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--outline-variant);
    width: 340px;
    overflow: hidden;
  }

  .sc-header {
    background: var(--primary-container);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sc-title { color: var(--adcae4); font-size: 13px; font-weight: 500; }
  .sc-id { color: white; font-size: 15px; font-weight: 700; }

  .sc-status {
    padding: 5px 12px;
    background: rgba(109,245,225,0.2);
    border: 1px solid rgba(109,245,225,0.4);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-container);
  }

  .sc-body { padding: 20px 24px; }

  .sc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--surface-container);
  }

  .sc-row:last-child { border-bottom: none; }

  .sc-lbl { font-size: 12px; color: var(--outline); }
  .sc-val { font-size: 13px; font-weight: 600; color: var(--on-surface); text-align: left; }

  .sc-bids {
    background: var(--surface-low);
    border-radius: var(--r-lg);
    padding: 16px;
    margin-top: 4px;
  }

  .sc-bids-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--on-surface-variant);
    margin-bottom: 10px;
  }

  .bid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: white;
    border-radius: var(--r-md);
    margin-bottom: 6px;
    border: 1px solid var(--outline-variant);
  }

  .bid-item:last-child { margin-bottom: 0; }

  .bid-courier { display: flex; align-items: center; gap: 8px; }

  .bid-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
  }

  .bid-name { font-size: 12px; font-weight: 600; color: var(--on-surface); }
  .bid-rating { font-size: 11px; color: var(--outline); }

  .bid-price { font-size: 14px; font-weight: 700; color: var(--secondary); }

  .bid-best {
    border-color: rgba(0,107,95,0.3);
    background: rgba(109,245,225,0.06);
  }

  .bid-best-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(109,245,225,0.2);
    padding: 2px 7px;
    border-radius: var(--r-full);
    margin-right: 4px;
  }

  /* Floating notification */
  .floating-notif {
    position: absolute;
    left: -24px;
    bottom: 60px;
    background: white;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--outline-variant);
    padding: 12px 16px;
    width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatIn 0.6s ease 0.3s both;
  }

  .floating-notif-2 {
    position: absolute;
    right: -20px;
    top: 40px;
    width: 180px;
    animation-delay: 0.6s;
  }

  @keyframes floatIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fn-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(0,107,95,0.12), rgba(0,159,180,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .fn-icon svg { width: 16px; height: 16px; stroke: var(--secondary); fill: none; stroke-width: 2; }

  .fn-text { font-size: 11px; font-weight: 600; color: var(--on-surface); line-height: 1.4; }
  .fn-sub { font-size: 10px; color: var(--outline); margin-top: 1px; }

  /* â”€â”€ SECTION COMMON â”€â”€ */
  section { padding: 100px 80px; }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-badge::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: 1px;
  }

  .section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--on-surface-variant);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  /* â”€â”€ PROBLEM â”€â”€ */
  .problem-section { background: var(--primary); }

  .problem-section .section-badge { color: var(--secondary-container); }
  .problem-section .section-badge::before { background: var(--secondary-container); }
  .problem-section .section-title { color: white; }
  .problem-section .section-sub { color: var(--adcae4); }

  .problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .problem-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-xl);
    padding: 28px;
    transition: background 0.2s;
  }

  .problem-card:hover { background: rgba(255,255,255,0.08); }

  .problem-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-lg);
    background: rgba(109,245,225,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .problem-icon svg { width: 22px; height: 22px; stroke: var(--secondary-container); fill: none; stroke-width: 1.8; }

  .problem-card h3 { font-size: 17px; font-weight: 600; color: white; margin-bottom: 8px; }
  .problem-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

  /* â”€â”€ HOW IT WORKS â”€â”€ */
  .how-section { background: white; }

  .how-tabs {
    display: flex;
    gap: 6px;
    background: var(--surface-container);
    border-radius: var(--r-full);
    padding: 5px;
    width: fit-content;
    margin-bottom: 56px;
  }

  .how-tab {
    padding: 10px 28px;
    border-radius: var(--r-full);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--on-surface-variant);
    transition: background 0.2s, color 0.2s;
  }

  .how-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
  }

  .how-steps { display: none; }
  .how-steps.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .step-card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--r-xl);
    border: 1px solid var(--outline-variant);
    background: var(--surface-low);
    transition: box-shadow 0.2s, border-color 0.2s;
  }

  .step-card:hover { box-shadow: var(--shadow); border-color: rgba(0,107,95,0.2); }

  .step-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 16px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    background: rgba(0,107,95,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .step-icon svg { width: 24px; height: 24px; stroke: var(--secondary); fill: none; stroke-width: 1.8; }

  .step-card h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
  .step-card p { font-size: 13px; color: var(--on-surface-variant); line-height: 1.6; }

  /* connector between steps */
  .steps-wrapper {
    position: relative;
  }

  /* â”€â”€ FEATURES â”€â”€ */
  .features-section { background: var(--surface); }

  .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .features-grid.reversed { direction: ltr; }
  .features-grid.reversed .features-text { direction: rtl; }

  .features-row { margin-bottom: 80px; }
  .features-row:last-child { margin-bottom: 0; }

  .feature-list { display: flex; flex-direction: column; gap: 20px; }

  .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .feature-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: var(--r-lg);
    background: rgba(0,107,95,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feature-icon-wrap svg { width: 20px; height: 20px; stroke: var(--secondary); fill: none; stroke-width: 1.8; }

  .feature-item h4 { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
  .feature-item p { font-size: 13px; color: var(--on-surface-variant); line-height: 1.6; }

  .visual-panel {
    background: white;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--outline-variant);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .panel-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-container);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .ph-title { color: var(--adcae4); font-size: 13px; font-weight: 600; }

  .panel-body { padding: 70px 20px 20px; width: 100%; height: 100%; }

  /* Financial panel */
  .fin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--surface-container);
    font-size: 13px;
  }

  .fin-row:last-child { border-bottom: none; }
  .fin-lbl { color: var(--on-surface-variant); }
  .fin-val { font-weight: 600; color: var(--on-surface); }
  .fin-val.green { color: var(--secondary); }
  .fin-val.blue { color: #0d6efd; }

  .fin-total-row {
    background: rgba(0,107,95,0.06);
    border-radius: var(--r-md);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
  }

  .fin-total-lbl { font-size: 14px; font-weight: 600; color: var(--primary); }
  .fin-total-val { font-size: 16px; font-weight: 700; color: var(--secondary); }

  /* KYC panel */
  .kyc-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid var(--surface-container);
  }

  .kyc-step:last-child { border-bottom: none; }

  .kyc-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
  }

  .kyc-dot.done { background: rgba(0,107,95,0.12); color: var(--secondary); }
  .kyc-dot.pending { background: rgba(255,193,7,0.15); color: #b45309; }
  .kyc-dot.active { background: rgba(0,107,95,0.08); color: var(--secondary); border: 1.5px solid var(--secondary); }

  .kyc-info h5 { font-size: 13px; font-weight: 600; color: var(--on-surface); margin-bottom: 2px; }
  .kyc-info p { font-size: 11px; color: var(--on-surface-variant); }

  /* â”€â”€ LEVELS â”€â”€ */
  .levels-section { background: var(--primary); }
  .levels-section .section-badge { color: var(--secondary-container); }
  .levels-section .section-badge::before { background: var(--secondary-container); }
  .levels-section .section-title { color: white; }
  .levels-section .section-sub { color: var(--adcae4); }

  .levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .level-card {
    border-radius: var(--r-xl);
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .level-card.elite { background: rgba(109,245,225,0.08); border-color: rgba(109,245,225,0.2); }
  .level-card:hover { background: rgba(255,255,255,0.08); }

  .level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .level-badge.bronze { background: rgba(180,115,60,0.2); color: #d4845a; }
  .level-badge.silver { background: rgba(160,170,180,0.2); color: #aab4c0; }
  .level-badge.gold { background: rgba(210,170,60,0.2); color: #d4b040; }
  .level-badge.elite { background: rgba(109,245,225,0.2); color: var(--secondary-container); }

  .level-cod {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    line-height: 1;
  }

  .level-cod-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }

  .level-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .level-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }

  .level-features li svg {
    width: 15px;
    height: 15px;
    stroke: var(--secondary-container);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
  }

  .elite-crown {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(109,245,225,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  /* â”€â”€ SECURITY â”€â”€ */
  .security-section { background: white; }

  .security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .security-card {
    padding: 32px;
    border-radius: var(--r-xl);
    border: 1px solid var(--outline-variant);
    background: var(--surface-low);
    transition: box-shadow 0.2s;
  }

  .security-card:hover { box-shadow: var(--shadow); }

  .sec-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(0,107,95,0.1), rgba(0,159,180,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .sec-icon svg { width: 26px; height: 26px; stroke: var(--secondary); fill: none; stroke-width: 1.8; }

  .security-card h3 { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
  .security-card p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.65; }

  /* â”€â”€ FAQ â”€â”€ */
  .faq-section { background: var(--surface); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .faq-sticky { position: sticky; top: 88px; }

  .faq-list { display: flex; flex-direction: column; gap: 12px; }

  .faq-item {
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-lg);
    background: white;
    overflow: hidden;
  }

  .faq-q {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--on-surface);
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--secondary); }

  .faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--outline);
  }

  .faq-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  .faq-item.open .faq-arrow { transform: rotate(180deg); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-item.open .faq-a { max-height: 300px; }

  .faq-a-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.7;
    border-top: 1px solid var(--surface-container);
  }

  /* â”€â”€ CTA â”€â”€ */
  .cta-section {
    background: var(--primary);
    text-align: center;
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
  }

  .cta-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,107,95,0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .cta-title {
    font-size: 44px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
  }

  .cta-sub {
    font-size: 17px;
    color: var(--adcae4);
    margin-bottom: 48px;
    position: relative;
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    position: relative;
    flex-wrap: wrap;
  }

  .btn-cta-primary {
    padding: 16px 40px;
    border-radius: var(--r-full);
    border: none;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: white;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,107,95,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-cta-primary:hover { transform: translateY(-2px); }

  .btn-cta-ghost {
    padding: 16px 40px;
    border-radius: var(--r-full);
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-cta-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

  /* â”€â”€ FOOTER â”€â”€ */
  footer {
    background: var(--primary-container);
    padding: 64px 80px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 14px;
    color: var(--adcae4);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col a {
    font-size: 14px;
    color: var(--adcae4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--secondary-container); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

  /* â”€â”€ TRACK SECTION â”€â”€ */
  .track-section { background: white; }

  .track-box {
    background: var(--surface-low);
    border-radius: var(--r-xl);
    border: 1px solid var(--outline-variant);
    padding: 40px;
    max-width: 560px;
  }

  .track-input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }

  .track-input {
    flex: 1;
    padding: 13px 18px;
    border-radius: var(--r-full);
    border: 1.5px solid var(--outline-variant);
    background: white;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 14px;
    color: var(--on-surface);
    outline: none;
    transition: border-color 0.2s;
    direction: rtl;
  }

  .track-input:focus { border-color: var(--secondary); }

  .track-result {
    display: none;
    border-top: 1px solid var(--outline-variant);
    padding-top: 24px;
  }

  .track-timeline { display: flex; flex-direction: column; gap: 0; }

  .track-event {
    display: flex;
    gap: 16px;
    position: relative;
  }

  .track-event::before {
    content: '';
    position: absolute;
    right: 13px;
    top: 28px;
    width: 2px;
    height: calc(100% - 8px);
    background: var(--outline-variant);
  }

  .track-event:last-child::before { display: none; }

  .track-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .track-dot.done { background: rgba(0,107,95,0.12); }
  .track-dot.done svg { stroke: var(--secondary); }
  .track-dot.current { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); }
  .track-dot.current svg { stroke: white; }
  .track-dot.pending { background: var(--surface-container); }
  .track-dot.pending svg { stroke: var(--outline); }

  .track-dot svg { width: 14px; height: 14px; fill: none; stroke-width: 2.5; }

  .track-info { padding-bottom: 20px; }
  .track-info h5 { font-size: 14px; font-weight: 600; color: var(--on-surface); margin-bottom: 2px; }
  .track-info span { font-size: 12px; color: var(--outline); }

  /* â”€â”€ RESPONSIVE â”€â”€ */
  @media (max-width: 1100px) {
    nav, .hero, section { padding-left: 40px; padding-right: 40px; }
    footer { padding-left: 40px; padding-right: 40px; }
    .hero-visual { display: none; }
    .hero-title { font-size: 42px; }
    .how-steps.active { grid-template-columns: repeat(2, 1fr); }
    .levels-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section, .hero, footer, .cta-section { padding-left: 20px; padding-right: 20px; }
    .hero-title { font-size: 32px; }
    .hero-stats { gap: 24px; }
    .section-title { font-size: 28px; }
    .how-steps.active { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .levels-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-sticky { position: static; }
    .cta-title { font-size: 30px; }
    .hero-actions { flex-wrap: wrap; }
  }
