    :root {
      --bg: #050505;
      --logo-black: #141414;
      --bg-soft: #0c0c0c;
      --card: #111111;
      --card-2: #181818;
      --text: #f4f7f2;
      --muted: #b7c0b4;
      --primary: #27b720;
      --primary-dark: #1f9b1a;
      --secondary: #141414;
      --accent: #27b720;
      --border: rgba(39, 183, 32, 0.18);
      --shadow: 0 18px 45px rgba(0, 0, 0, .38);
      --radius: 20px;
      --container: 1180px;
      --glow: rgba(39, 183, 32, .18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Tajawal", "Cairo", "Segoe UI", Arial, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(39, 183, 32, .18), transparent 28%),
        radial-gradient(circle at left center, rgba(39, 183, 32, .10), transparent 24%),
        linear-gradient(180deg, #030303 0%, #0b0b0b 100%);
      color: var(--text);
      line-height: 1.75;
    }

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

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

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: auto;
    }

    .section {
      padding: 88px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: #d9e5d4;
      background: rgba(255, 255, 255, .025);
      font-size: 14px;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 12px rgba(39, 183, 32, .75);
    }

    .btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 14px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: .25s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, #27b720, #1f9b1a);
      color: #fff;
      box-shadow: 0 12px 32px rgba(39, 183, 32, .28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .015);
      border-color: var(--border);
      color: var(--text);
    }

    .btn-secondary:hover {
      background: rgba(39, 183, 32, .08);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.2;
      margin: 0 0 16px;
      font-weight: 800;
      letter-spacing: -.5px;
    }

    .section-desc {
      color: var(--muted);
      font-size: 18px;
      max-width: 760px;
      margin: 0;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(5, 5, 5, .86);
      border-bottom: 1px solid rgba(148, 163, 184, .08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 78px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 22px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, #27b720, #1d1d1d);
      display: grid;
      place-items: center;
      font-weight: 800;
      color: white;
      box-shadow: var(--shadow);
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
      color: #d4def4;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 84px 0 64px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 32px;
      align-items: center;
    }

    .hero h1 {
      margin: 0 0 18px;
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -1px;
    }

    .hero h1 .highlight {
      color: #fff;
      background: linear-gradient(135deg, #ffffff, #b7ffb2 55%, #27b720);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      color: var(--muted);
      font-size: 20px;
      margin: 0 0 28px;
      max-width: 720px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .stat {
      background: rgba(255, 255, 255, .025);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
    }

    .stat strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      margin-bottom: 10px;
      color: #fff;
    }

    .stat span {
      color: var(--muted);
      font-size: 14px;
    }

    .hero-card {
      position: relative;
      background: linear-gradient(180deg, rgba(20, 20, 20, .96), rgba(8, 8, 8, .95));
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -18% -18% auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(39, 183, 32, .22), transparent 65%);
      pointer-events: none;
    }

    .mini-tag {
      display: inline-block;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(39, 183, 32, .12);
      color: #a7f3d0;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 14px;
      border: 1px solid rgba(34, 197, 94, .2);
    }

    .hero-list {
      display: grid;
      gap: 14px;
      margin: 18px 0 0;
    }

    .hero-list .item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255, 255, 255, .015);
    }

    .hero-list .icon {
      min-width: 40px;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(39, 183, 32, .16), rgba(20, 20, 20, .72));
      border: 1px solid rgba(255, 255, 255, .08);
      font-size: 18px;
    }

    .hero-list h3 {
      margin: 0 0 4px;
      font-size: 17px;
    }

    .hero-list p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
    }

    .logos {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .logo-box {
      background: rgba(255, 255, 255, .025);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px;
      text-align: center;
      color: #dce8ff;
      font-weight: 700;
    }

    .grid-3,
    .grid-4,
    .grid-2 {
      display: grid;
      gap: 22px;
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

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

    .card {
      background: linear-gradient(180deg, rgba(17, 17, 17, .96), rgba(8, 8, 8, .95));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .service-icon,
    .feature-icon,
    .step-no {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      font-size: 24px;
      background: linear-gradient(135deg, rgba(39, 183, 32, .18), rgba(20, 20, 20, .7));
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .card h3 {
      margin: 0 0 12px;
      font-size: 22px;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .process .card {
      position: relative;
    }

    .step-no {
      font-size: 18px;
      font-weight: 800;
      color: white;
    }

    .showcase {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 34px;
    }

    .project {
      overflow: hidden;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(17, 17, 17, .96), rgba(8, 8, 8, .96));
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .project-cover {
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, rgba(39, 183, 32, .18), rgba(20, 20, 20, .72)), radial-gradient(circle at top right, rgba(255, 255, 255, .08), transparent 28%), #0f0f0f;
      display: grid;
      place-items: center;
      font-size: 54px;
    }

    .project-body {
      padding: 22px;
    }

    .project-body h3 {
      margin: 0 0 10px;
      font-size: 22px;
    }

    .project-body p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .tag {
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      color: #dbeafe;
      background: rgba(255, 255, 255, .025);
      border: 1px solid var(--border);
    }

    .why .card ul,
    .faq-list,
    .contact-list,
    .seo-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .why .card li,
    .contact-list li,
    .seo-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
      padding: 10px 0;
      border-bottom: 1px dashed rgba(148, 163, 184, .14);
    }

    .why .card li:last-child,
    .contact-list li:last-child,
    .seo-list li:last-child {
      border-bottom: 0;
    }

    .check {
      color: #86efac;
      font-weight: 900;
      margin-top: 2px;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr .95fr;
      gap: 22px;
      align-items: stretch;
    }

    .contact-card {
      background: linear-gradient(180deg, rgba(17, 17, 17, .96), rgba(8, 8, 8, .96));
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

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

    .field label {
      font-weight: 700;
      font-size: 14px;
      color: #dbe7ff;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .025);
      color: white;
      border-radius: 14px;
      min-height: 52px;
      padding: 14px 16px;
      font: inherit;
      outline: none;
    }

    .field textarea {
      min-height: 130px;
      resize: vertical;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: rgba(255, 255, 255, .025);
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 800;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item p {
      margin: 0;
      padding: 0 20px 18px;
      color: var(--muted);
    }

    .cta {
      padding: 34px;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(39, 183, 32, .17), rgba(20, 20, 20, .75));
      border: 1px solid rgba(255, 255, 255, .08);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .cta h2 {
      margin: 0 0 12px;
      font-size: clamp(28px, 4vw, 40px);
    }

    .cta p {
      margin: 0 auto 20px;
      color: #d7e3fb;
      max-width: 760px;
    }

    footer {
      padding: 28px 0 40px;
      color: var(--muted);
      border-top: 1px solid rgba(148, 163, 184, .08);
    }

    .footer-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .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;
    }

    @media (max-width: 992px) {

      .hero-grid,
      .contact-wrap,
      .grid-4,
      .grid-3,
      .grid-2,
      .showcase {
        grid-template-columns: 1fr 1fr;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .logos {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 680px) {
      .nav {
        padding: 12px 0;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 56px;
      }

      .hero p {
        font-size: 18px;
      }

      .hero-stats,
      .grid-4,
      .grid-3,
      .grid-2,
      .showcase,
      .form-grid,
      .logos {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 70px 0;
      }

      .btns {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }
    }


    body.is-loading {
      overflow-x: hidden;
    }

    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0;
      z-index: 60;
      background: linear-gradient(90deg, #27b720, #9cff95);
      box-shadow: 0 0 18px rgba(39, 183, 32, .5);
      transition: width .12s linear;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(8px);
      pointer-events: none;
      opacity: .8;
      animation: floatOrb 7s ease-in-out infinite;
    }

    .hero::before {
      width: 240px;
      height: 240px;
      top: 30px;
      right: -70px;
      background: radial-gradient(circle, rgba(39, 183, 32, .22), transparent 68%);
    }

    .hero::after {
      width: 180px;
      height: 180px;
      bottom: 10px;
      left: -50px;
      background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
      animation-delay: -2.4s;
    }

    .brand img,
    .btn,
    .logo-box,
    .card,
    .project,
    .faq-item,
    .stat,
    .hero-card,
    .contact-card {
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease, opacity .35s ease;
      will-change: transform;
    }

    .card:hover,
    .project:hover,
    .logo-box:hover,
    .hero-card:hover,
    .contact-card:hover,
    .stat:hover {
      transform: translateY(-8px);
      border-color: rgba(39, 183, 32, .34);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .45), 0 0 0 1px rgba(39, 183, 32, .08) inset;
    }

    .project:hover .project-cover,
    .hero-list .item:hover .icon {
      transform: scale(1.06);
    }

    .hero-list .item,
    .project-cover,
    .service-icon,
    .feature-icon,
    .step-no,
    .icon {
      transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
    }

    [data-animate] {
      opacity: 0;
      transform: translateY(36px) scale(.985);
      transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
      transition-delay: var(--delay, 0ms);
    }

    [data-animate="left"] {
      transform: translateX(-42px);
    }

    [data-animate="right"] {
      transform: translateX(42px);
    }

    [data-animate].is-visible {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }

    .is-loading .hero [data-hero-animate] {
      opacity: 0;
      transform: translateY(26px);
      animation: heroReveal .9s cubic-bezier(.2, .8, .2, 1) forwards;
      animation-delay: var(--hero-delay, 0ms);
    }

    .is-loading .hero-card {
      opacity: 0;
      transform: translateX(36px) rotate(-2deg);
      animation: heroRevealCard 1s cubic-bezier(.2, .8, .2, 1) forwards;
      animation-delay: 380ms;
    }

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 22px;
      z-index: 55;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #27b720, #128c3a);
      color: #fff;
      box-shadow: 0 16px 35px rgba(18, 140, 58, .38);
      border: 1px solid rgba(255, 255, 255, .14);
      transform: translateY(120px) scale(.9);
      opacity: 0;
      pointer-events: none;
      transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
    }

    .whatsapp-float svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }

    .whatsapp-float.show {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
      animation: pulseRing 2.4s ease-in-out infinite;
    }

    .whatsapp-float.hide-on-scroll-down {
      transform: translateY(110px) scale(.88);
      opacity: 0;
      pointer-events: none;
    }

    .whatsapp-float:hover {
      transform: translateY(-5px) scale(1.04);
      box-shadow: 0 20px 40px rgba(18, 140, 58, .5);
    }

    .floating-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(5, 5, 5, .72);
      border: 1px solid rgba(255, 255, 255, .08);
      backdrop-filter: blur(10px);
      color: #e9fbe8;
      font-size: 13px;
      box-shadow: var(--shadow);
      animation: floatBadge 4.8s ease-in-out infinite;
    }

    @keyframes heroReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroRevealCard {
      to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
      }
    }

    @keyframes floatOrb {

      0%,
      100% {
        transform: translateY(0) translateX(0);
      }

      50% {
        transform: translateY(-18px) translateX(10px);
      }
    }

    @keyframes floatBadge {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes pulseRing {

      0%,
      100% {
        box-shadow: 0 16px 35px rgba(18, 140, 58, .38), 0 0 0 0 rgba(39, 183, 32, .22);
      }

      50% {
        box-shadow: 0 18px 42px rgba(18, 140, 58, .48), 0 0 0 12px rgba(39, 183, 32, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }

      [data-animate] {
        opacity: 1 !important;
        transform: none !important;
      }

      .whatsapp-float {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
    }