:root{
  --brand:#16a34a;
  --brand2:#22c55e;
  --ink:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --soft:#f7faf8;
  --shadow: 0 18px 45px rgba(2, 6, 23, .08);
  --shadow2: 0 10px 25px rgba(2, 6, 23, .07);
  --radius: 20px;
}


html, body {
  font-family: "Tajawal", system-ui, Arial, sans-serif;
    letter-spacing: -.2px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.bg-accents{
  position: fixed; inset: 0; pointer-events:none; z-index:-1;
  background:
    radial-gradient(900px 600px at 90% 0%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(800px 520px at 10% 12%, rgba(22,163,74,.12), transparent 60%),
    radial-gradient(700px 460px at 50% 100%, rgba(34,197,94,.10), transparent 55%);
}

/* Sections */
.section{ padding: 92px 0; }
.anchor{ scroll-margin-top: 96px; }
.soft{
  background: var(--soft);
  border-top:1px solid rgba(229,231,235,.8);
  border-bottom:1px solid rgba(229,231,235,.8);
}
.hero{ padding-top:120px; padding-bottom:80px; }

.text-brand{ color: var(--brand); }

/* Typography */
.section-title{
  font-size: clamp(1.55rem, 1.1rem + 1.2vw, 2.15rem);
  font-weight: 950;
  letter-spacing: -.35px;
  margin-bottom: 10px;
}
.section-sub{ color: var(--muted); line-height: 1.95; max-width: 980px; }

.hero-title{
  
  letter-spacing: -.55px;
  line-height: 1.18;
  
  margin: 10px 0 10px;
}
.hero-sub{ color: var(--muted); line-height: 1.95; font-size: 1.06rem; max-width: 820px; }

.title-underline{
  position: relative;
  display: inline;
  background:
    linear-gradient(180deg, transparent 65%, rgba(34,197,94,.18) 65%, rgba(34,197,94,.18) 92%, transparent 92%);
  border-radius: 6px;
  padding: 0 .12em;
}

/* Premium Navbar */
.nav-premium{
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,.7);
}
.brand-badge{
  width: 42px; height: 42px; border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(22,163,74,.14), rgba(34,197,94,.16));
  border:1px solid rgba(34,197,94,.25);
  color: var(--brand);
}
.brand-name{ font-weight: 950; letter-spacing: -.2px; }
.brand-dot{
  width: 8px; height: 8px; border-radius: 99px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
  margin-inline-start: 6px;
}

.nav-links .nav-link{
  color: var(--ink) !important;
  font-weight: 900;
  opacity: .78;
  padding: .85rem .85rem;
  border-radius: 14px;
  transition: .2s ease;
}
.nav-links .nav-link:hover{
  opacity: 1;
  background: rgba(34,197,94,.08);
}
.nav-links .nav-link.active{
  opacity: 1;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.22);
}
.nav-actions .btn{ border-radius: 16px; font-weight: 950; }

/* Custom toggler */
.nav-toggler{
  border: 0 !important;
  padding: .6rem .7rem;
  border-radius: 14px;
  background: rgba(34,197,94,.08);
}
.nav-toggler:focus{ box-shadow: 0 0 0 .25rem rgba(34,197,94,.18); }
.toggler-line{
  display:block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 99px;
  margin: 5px 0;
  opacity: .9;
}

/* Buttons */
.btn-brand{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border: 0;
  color: #06210e;
  font-weight: 950;
  box-shadow: 0 16px 35px rgba(34,197,94,.22);
}
.btn-brand:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn-ghost{
  border:1px solid rgba(34,197,94,.25);
  background: rgba(255,255,255,.75);
  color: var(--ink);
  box-shadow: var(--shadow2);
}
.btn-ghost:hover{ background:#fff; transform: translateY(-1px); }

/* Language toggle */
.lang-toggle{
  border-radius: 14px;
  border:1px solid rgba(229,231,235,.95);
  background:#fff;
  box-shadow: var(--shadow2);
  padding: 6px;
  display:flex; gap:6px;
}
.lang-btn{
  border:0;
  border-radius: 12px;
  padding: .45rem .75rem;
  font-weight: 950;
  background: transparent;
  color: var(--ink);
  opacity:.7;
}
.lang-btn.active{
  background: rgba(34,197,94,.10);
  color:#0b3b1a;
  opacity:1;
  border:1px solid rgba(34,197,94,.22);
}

/* Cards */
.cardx{
  background: #fff;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}
.card-hover{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card-hover:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(34,197,94,.28);
}

.kicker{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.45rem .85rem;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.22);
  background: rgba(34,197,94,.08);
  color:#0b3b1a;
  font-weight:900;
  font-size: .95rem;
}

.icon{
  width: 46px; height: 46px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(22,163,74,.10), rgba(34,197,94,.12));
  border:1px solid rgba(34,197,94,.22);
  color: var(--brand);
  flex: 0 0 auto;
}

/* Stats */
.stat{
  background: linear-gradient(180deg, #ffffff, #fbfffc);
  border:1px solid rgba(229,231,235,.9);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow2);
  height: 100%;
  transition: .22s ease;
}
.stat-glow:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.25);
}
.stat .num{ font-weight: 950; font-size: 1.35rem; color: #0b3b1a; }
.stat .lab{ color: var(--muted); font-weight: 800; font-size: .95rem; margin-top: 2px; }

/* Trust pills */
.trust-row{ display:flex; flex-wrap:wrap; gap:10px; }
.trust-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:.5rem .8rem;
  border-radius: 999px;
  background: rgba(34,197,94,.07);
  border:1px solid rgba(34,197,94,.18);
  font-weight: 900;
  color:#0b3b1a;
}

/* Hero media */
.hero-media{
  display:grid;
  gap: 14px;
}
.ill-card{
  position: relative;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fbfffc);
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 14px;
}
.ill-badge{
  position:absolute;
  top: 14px;
  inset-inline-start: 14px;
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.82);
  border:1px solid rgba(229,231,235,.9);
  border-radius: 999px;
  padding: .42rem .7rem;
  font-weight: 950;
  box-shadow: var(--shadow2);
}
.ill-svg{ width: 100%; height: auto; display:block; }
.ill-float{ animation: floaty 4.8s ease-in-out infinite; }

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* WhatsApp mock */
.wa-shell{ border-radius: 26px; overflow: hidden; }
.wa-tilt{ transform: perspective(900px) rotateY(0deg); }
.wa-body{
  padding: 16px;
  background: radial-gradient(520px 300px at 30% 0%, rgba(34,197,94,.10), transparent 60%),
              linear-gradient(180deg, #ffffff, #f8fbf9);
}
.bubble{
  border-radius: 18px;
  padding: 12px 12px;
  border:1px solid rgba(229,231,235,.95);
  box-shadow: 0 10px 22px rgba(2, 6, 23, .05);
  max-width: 92%;
  line-height: 1.8;
  margin-bottom: 10px;
}
.bubble.bot{ background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.20); }
.bubble.user{ background: #fff; margin-inline-start: auto; }

.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.chip{
  border-radius: 999px;
  padding: .35rem .75rem;
  border:1px solid rgba(34,197,94,.22);
  background: rgba(34,197,94,.08);
  color:#0b3b1a;
  font-weight: 900;
  font-size: .92rem;
  display:inline-flex; align-items:center; gap:.4rem;
}

/* Why section extras */
.benefits{ display:flex; flex-wrap:wrap; gap:10px; }
.benefit{
  display:inline-flex; align-items:center; gap:8px;
  padding:.55rem .8rem;
  border-radius: 14px;
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow2);
  font-weight: 900;
}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding: 12px 0;
}
.step-no{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.20);
  font-weight: 950;
  color:#0b3b1a;
}

/* CTA */
.cta-box{
  border-color: rgba(34,197,94,.25);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-box::before{
  content:"";
  position:absolute;
  inset: -120px -120px auto auto;
  width: 280px; height: 280px;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.22), transparent 60%);
  pointer-events:none;
}
.cta-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
}
.cta-icon{
  width: 58px; height: 58px;
  border-radius: 22px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(22,163,74,.18), rgba(34,197,94,.14));
  border:1px solid rgba(34,197,94,.25);
  color: var(--brand);
  box-shadow: var(--shadow2);
  font-size: 1.6rem;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(229,231,235,.9);
  background: #fff;
  padding: 34px 0 78px;
}
.footer-link{ color: var(--brand); font-weight: 900; text-decoration: none; }
.footer-link:hover{ text-decoration: underline; }

.muted{ color: var(--muted); }
hr{ border-color: rgba(229,231,235,.9); }

/* Reveal */
.reveal{ opacity:0; transform: translateY(14px); transition: .75s ease; }
.reveal.show{ opacity:1; transform: translateY(0); }

/* Floating buttons */
.float{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.fab{
  width: 54px; height: 54px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(229,231,235,.95);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
  color: var(--brand);
  text-decoration: none;
  transition: .2s ease;
}
.fab:hover{ transform: translateY(-2px); }

/* Mobile */
@media (max-width: 991.98px){
  .nav-links .nav-link{ margin: 4px 0; }
  .nav-actions{ padding: 10px 0; }
}
