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

    :root {
      --navy: #001a35;
      --navy-mid: #002d5c;
      --navy-light: #0a4a7d;
      --sage: #4a8a72;
      --sage-light: #5b9a80;
      --sage-pale: #edf6f1;
      --white: #fbfffb;
      --surface: #f2f5f3;
      --mist: #e4eeea;
      --text: #001a35;
      --text-sec: #3d4d45;
      --text-ter: #4e7060;
      --border: rgba(0,26,53,.08);
      --border-med: rgba(0,26,53,.14);
      --shadow-sm: 0 1px 3px rgba(0,26,53,.06), 0 1px 2px rgba(0,26,53,.04);
      --shadow-md: 0 4px 12px rgba(0,26,53,.08), 0 2px 4px rgba(0,26,53,.05);
      --r-btn: 8px;
      --r-card: 8px;
      --r-sec: 14px;
      --t-fast: 150ms ease;
      --t-normal: 250ms ease;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Cairo', sans-serif;
      background: var(--white);
      color: var(--text);
      direction: rtl;
      -webkit-font-smoothing: antialiased;
      -webkit-tap-highlight-color: transparent;
    }

    
    

    .page-hero {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      padding: 128px 48px 72px;
      border-bottom: .5px solid rgba(251,255,251,.08);
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(74,138,114,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,138,114,.04) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 44px;
      align-items: center;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .hero-eyebrow-line {
      width: 24px;
      height: 1.5px;
      background: var(--sage);
      flex-shrink: 0;
    }
    .hero-eyebrow-text {
      color: rgba(251,255,251,.45);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.5;
      margin-bottom: 18px;
    }
    h1 .accent { color: var(--sage); font-weight: 300; }
    .hero-copy {
      font-size: 15px;
      line-height: 1.9;
      color: rgba(251,255,251,.72);
      max-width: 620px;
      margin-bottom: 24px;
    }
    
    .hero-card {
      border: .5px solid rgba(251,255,251,.1);
      border-radius: var(--r-card);
      background: rgba(0,45,92,.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 24px;
      box-shadow: var(--shadow-md);
    }
    .hero-card h2 {
      color: var(--white);
      font-size: 22px;
      margin-bottom: 12px;
    }
    .hero-card p {
      color: rgba(251,255,251,.68);
      line-height: 1.8;
      margin-bottom: 12px;
    }
    .hero-card ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }
    .hero-card li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      color: rgba(251,255,251,.78);
      font-size: 13px;
    }
    .hero-card li::before {
      content: '•';
      color: var(--sage);
      font-size: 16px;
      line-height: 1;
    }

    .content {
      max-width: 1100px;
      margin: 0 auto;
      padding: 64px 48px 72px;
    }
    .section-card {
      background: var(--surface);
      border: .5px solid var(--border);
      border-radius: var(--r-card);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }
    .section-card h3 {
      font-size: 22px;
      margin-bottom: 12px;
      color: var(--navy);
    }
    .section-card p {
      font-size: 15px;
      line-height: 1.9;
      color: var(--text-sec);
      margin-bottom: 12px;
    }
    .content-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 10px;
    }
    .content-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-sec);
      line-height: 1.8;
    }
    .content-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sage);
      margin-top: .65em;
      flex-shrink: 0;
    }
    .process-list {
      margin-top: 8px;
    }
    .process-item {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px 0;
      border-bottom: .5px solid var(--border);
    }
    .process-item:last-child { border-bottom: none; }
    .process-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .process-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .process-text {
      font-size: 13px;
      color: var(--text-ter);
      line-height: 1.8;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 8px;
    }
    .value-card {
      background: var(--white);
      border: .5px solid var(--border);
      border-radius: var(--r-card);
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }
    .value-card .num {
      display: inline-flex;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(74,138,114,.12);
      color: var(--sage);
      font-weight: 800;
      margin-bottom: 12px;
    }
    .value-card h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--navy);
    }
    .value-card p {
      font-size: 14px;
      color: var(--text-ter);
      line-height: 1.8;
    }
    .cta-sec {
      background: var(--navy);
      padding: 68px 48px;
      text-align: center;
      border-top: .5px solid rgba(251,255,251,.06);
    }
    .cta-sec-inner {
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-sec h2 {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .cta-sec h2 .accent { color: var(--sage); font-weight: 300; }
    .cta-sec p {
      font-size: 14px;
      color: rgba(251,255,251,.52);
      line-height: 1.8;
      margin-bottom: 30px;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-primary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--r-btn);
      text-decoration: none;
      transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sage);
      color: var(--white);
      padding: 11px 24px;
      border: none;
    }
    .btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); }
    .btn-ghost {
      color: rgba(251,255,251,.68);
      padding: 10px 20px;
      border: .5px solid rgba(251,255,251,.16);
    }
    .btn-ghost:hover {
      color: var(--white);
      border-color: rgba(251,255,251,.28);
      transform: translateY(-1px);
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .cta-sec { padding: 60px 24px; }
    }

    @media (max-width: 560px) {
      
      .nav-links { display: none; }
      .page-hero { padding: 96px 20px 44px; }
      h1 { font-size: 32px; }
      .content { padding: 48px 20px 64px; }
      .section-card { padding: 22px; }
      .cta-actions { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-ghost { width: 100%; }
    }