/* ===========================================
   شارة | Digital Marketing Agency
   Monochrome identity — black / white / gray
   =========================================== */

:root{
  --ink:#0A0A0B;
  --ink-2:#101113;
  --ink-soft:#191B1F;
  --line-on-ink:rgba(255,255,255,.10);
  --line-on-ink-strong:rgba(255,255,255,.22);

  --silver:#E7E8EA;
  --silver-deep:#9CA0A8;
  --steel:#5B5F68;

  --paper:#FFFFFF;
  --mist:#F6F6F7;
  --mist-2:#EFEFF1;
  --mist-line:#E3E4E8;

  --text-dark:#0B0B0C;
  --text-muted:#62656D;
  --text-on-ink:#F6F6F7;
  --text-on-ink-muted:#9A9DA6;

  --radius-lg:22px;
  --radius-md:14px;
  --radius-sm:10px;

  --shadow-card:0 1px 2px rgba(10,10,11,.04), 0 14px 32px -14px rgba(10,10,11,.12);
  --shadow-pop:0 28px 70px -22px rgba(10,10,11,.45);
  --shadow-on-ink:0 24px 60px -20px rgba(0,0,0,.6);

  --container:1240px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  color:var(--text-dark);
  background:var(--paper);
  direction:rtl;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Cairo', 'Tajawal', sans-serif;
  margin:0;
  line-height:1.25;
}
p{margin:0;}
ul{margin:0;padding:0;list-style:none;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* ---------- Brand checker mark (echoes logo) ---------- */
.checker-mark{
  display:inline-grid;
  grid-template-columns:repeat(2,1fr);
  grid-template-rows:repeat(2,1fr);
  width:14px;height:14px;
  flex:none;
}
.checker-mark span{display:block;}
.checker-mark span:nth-child(1),.checker-mark span:nth-child(4){background:currentColor;}
.checker-mark span:nth-child(2),.checker-mark span:nth-child(3){background:transparent;}

.checker-bg{
  background-image:
    repeating-conic-gradient(rgba(255,255,255,.06) 0% 25%, transparent 0% 50%);
  background-size:22px 22px;
}
.checker-bg-dark{
  background-image:
    repeating-conic-gradient(rgba(10,10,11,.05) 0% 25%, transparent 0% 50%);
  background-size:22px 22px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:54px;
  padding:0 28px;
  border-radius:999px;
  font-weight:700;
  font-size:15.5px;
  white-space:nowrap;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:active{transform:translateY(1px);}

/* solid black — used on light/white backgrounds */
.btn-dark{
  background:var(--ink);
  color:#fff;
  box-shadow:0 16px 32px -16px rgba(10,10,11,.5);
}
.btn-dark:hover{background:#000; transform:translateY(-2px); box-shadow:0 20px 40px -14px rgba(10,10,11,.6);}

/* solid white — used on dark backgrounds */
.btn-light{
  background:#fff;
  color:var(--ink);
  box-shadow:0 16px 32px -16px rgba(0,0,0,.5);
}
.btn-light:hover{background:var(--silver); transform:translateY(-2px);}

.btn-outline-ink{
  background:transparent;
  color:var(--text-on-ink);
  border:1.5px solid rgba(255,255,255,.28);
}
.btn-outline-ink:hover{border-color:rgba(255,255,255,.7); background:rgba(255,255,255,.06);}

.btn-outline-light{
  background:transparent;
  border:1.5px solid var(--mist-line);
  color:var(--text-dark);
}
.btn-outline-light:hover{border-color:var(--ink); background:var(--mist);}

.btn-block{width:100%;}
.btn-sm{height:46px; padding:0 22px; font-size:14.5px;}

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0; right:0; left:0;
  z-index:100;
  padding:18px 0;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.site-header.is-scrolled{
  background:rgba(10,10,11,.88);
  backdrop-filter:blur(14px) saturate(140%);
  padding:12px 0;
  border-color:var(--line-on-ink);
  box-shadow:0 10px 30px -18px rgba(0,0,0,.6);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{height:42px;width:auto;}

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
}
.main-nav a{
  color:var(--text-on-ink-muted);
  font-size:15px;
  font-weight:500;
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
.main-nav a:hover, .main-nav a.is-active{color:#fff;}
.main-nav a.is-active::after{
  content:"";
  position:absolute;
  right:0; left:0; bottom:-2px;
  height:2px;
  background:#fff;
  border-radius:2px;
}
.nav-drop{display:flex;align-items:center;gap:5px;}
.nav-drop svg{width:13px;height:13px;opacity:.8;}

.header-actions{display:flex;align-items:center;gap:14px;}
.burger{
  display:none;
  width:42px;height:42px;
  border-radius:10px;
  align-items:center;justify-content:center;
  background:rgba(255,255,255,.08);
  color:#fff;
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:
    radial-gradient(900px 480px at 88% -8%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, #08080A 0%, #0B0B0E 60%, #0C0C10 100%);
  padding:168px 0 96px;
  overflow:hidden;
  isolation:isolate;
}
.hero-lines{
  position:absolute; inset:0;
  z-index:-1;
  opacity:.5;
  pointer-events:none;
}
.hero-grain{
  position:absolute; inset:0;
  z-index:-1;
  background-image:radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:radial-gradient(closest-side, black, transparent 85%);
  -webkit-mask-image:radial-gradient(closest-side, black, transparent 85%);
}
.hero-checker{
  position:absolute;
  top:46px; left:48px;
  display:grid;
  grid-template-columns:repeat(4,16px);
  grid-template-rows:repeat(4,16px);
  z-index:0;
  opacity:.85;
}
.hero-checker span{display:block;}
.hero-checker span.on{background:rgba(255,255,255,.5);}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:64px;
  align-items:start;
}
.hero-copy{padding-top:8px;}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#D7D8DC;
  margin-bottom:28px;
}

.hero h1{
  font-size:clamp(34px, 4.4vw, 54px);
  font-weight:800;
  color:#fff;
  letter-spacing:-.01em;
}
.hero h1 .accent{
  color:#fff;
  position:relative;
  display:inline-block;
}
.hero h1 .accent::after{
  content:"";
  position:absolute;
  right:0; left:0; bottom:6px;
  height:14px;
  background:rgba(255,255,255,.14);
  z-index:-1;
  border-radius:4px;
}

.hero-sub{
  margin-top:26px;
  max-width:560px;
  color:var(--text-on-ink-muted);
  font-size:17px;
  line-height:1.95;
}

.hero-cta-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:38px;
  flex-wrap:wrap;
}

.hero-stats{
  display:flex;
  gap:38px;
  margin-top:64px;
  padding-top:34px;
  border-top:1px solid var(--line-on-ink);
  max-width:560px;
}
.hero-stat .num{
  font-family:'Cairo', sans-serif;
  font-size:30px;
  font-weight:800;
  color:#fff;
}
.hero-stat .label{
  margin-top:4px;
  font-size:13.5px;
  color:var(--text-on-ink-muted);
}

/* floating card */
.hero-card{
  background:linear-gradient(165deg, #18191D, #0E0F12);
  border:1px solid var(--line-on-ink);
  border-radius:var(--radius-lg);
  padding:30px 26px;
  position:relative;
  box-shadow:var(--shadow-on-ink);
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(160deg, rgba(255,255,255,.35), transparent 40%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.hero-card .avatars{
  display:flex;
  align-items:center;
}
.hero-card .avatars span{
  width:38px;height:38px;border-radius:50%;
  border:2.5px solid #18191D;
  margin-inline-start:-12px;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;color:#0A0A0B;
  background:linear-gradient(135deg, #fff, #C7C9CD);
}
.hero-card .avatars span:first-child{margin-inline-start:0;}

.hero-card .big-num{
  font-family:'Cairo', sans-serif;
  font-size:38px;
  font-weight:800;
  color:#fff;
  margin-top:18px;
}
.hero-card .big-num-label{
  color:var(--text-on-ink-muted);
  font-size:14px;
  margin-top:2px;
}
.hero-card .divider{
  height:1px;
  background:var(--line-on-ink);
  margin:22px 0;
}
.hero-card .feat-list li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:9px 0;
  font-size:14.5px;
  color:#D7D8DC;
}
.hero-card .feat-list .pip{
  width:8px;height:8px;border-radius:50%;
  background:#fff;
}

/* partner strip */
.partner-strip{
  margin-top:80px;
  padding-top:34px;
  border-top:1px solid var(--line-on-ink);
}
.partner-strip .label{
  color:var(--text-on-ink-muted);
  font-size:13px;
  margin-bottom:22px;
}
.partner-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:28px 20px;
  opacity:.8;
}
.partner-grid .p-item{
  display:flex;
  align-items:center;
  gap:8px;
  color:#C7C8CE;
  font-weight:700;
  font-size:14px;
  white-space:nowrap;
}
.partner-grid .p-item svg{width:20px;height:20px;flex:none;}

/* ---------- Section heading ---------- */
.section{padding:108px 0;}
.section-pad-sm{padding:90px 0;}
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 60px;
}
.section-head .eyebrow{
  color:var(--steel);
  justify-content:center;
  margin-bottom:14px;
}
.section-head h2{
  font-size:clamp(26px,3vw,38px);
  font-weight:800;
  color:var(--text-dark);
}
.section-head p{
  margin-top:14px;
  color:var(--text-muted);
  font-size:16px;
  line-height:1.9;
}
.on-ink .section-head h2{color:#fff;}
.on-ink .section-head p{color:var(--text-on-ink-muted);}
.on-ink .section-head .eyebrow{color:var(--text-on-ink-muted);}

/* ---------- Services accordion ---------- */
.bg-mist{background:var(--mist);}

.accordion{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:980px;
  margin:0 auto;
}
.acc-item{
  background:#fff;
  border:1px solid var(--mist-line);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.acc-item[open]{
  border-color:var(--ink);
  box-shadow:var(--shadow-card);
}
.acc-item summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 26px;
  cursor:pointer;
  font-family:'Cairo', sans-serif;
  font-weight:700;
  font-size:17.5px;
  color:var(--text-dark);
}
.acc-item summary::-webkit-details-marker{display:none;}
.acc-left{display:flex;align-items:center;gap:16px;}
.acc-num{
  font-family:'Cairo', sans-serif;
  font-size:13px;
  font-weight:800;
  color:#fff;
  background:var(--ink);
  width:36px;height:36px;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  flex:none;
}
.acc-chevron{
  width:34px;height:34px;
  border-radius:50%;
  border:1.5px solid var(--mist-line);
  display:flex;align-items:center;justify-content:center;
  flex:none;
  transition:transform .3s ease, background .25s ease, border-color .25s ease;
}
.acc-item[open] .acc-chevron{
  transform:rotate(180deg);
  background:var(--ink);
  border-color:var(--ink);
}
.acc-item[open] .acc-chevron svg{stroke:#fff;}

.acc-body{
  padding:4px 26px 30px 26px;
  border-top:1px solid var(--mist-line);
  margin-top:2px;
}
.acc-body-inner{
  padding-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 36px;
}
.acc-feat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:11px 0;
  border-bottom:1px dashed var(--mist-line);
  font-size:14.5px;
  color:var(--text-dark);
  line-height:1.6;
}
.acc-feat:last-child{border-bottom:none;}
.acc-feat svg{flex:none;width:19px;height:19px;color:var(--ink);}

/* ---------- Tools — "wow" dark grid ---------- */
.tools-section{
  background:var(--ink);
  position:relative;
  overflow:hidden;
}
.tools-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(700px 380px at 12% 0%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}
.tools-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:var(--line-on-ink);
  border:1px solid var(--line-on-ink);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.tool-card{
  background:var(--ink);
  padding:34px 26px;
  position:relative;
  transition:background .3s ease;
}
.tool-card:hover{background:#111214;}
.tool-card:hover .tool-icon{
  border-color:rgba(255,255,255,.5);
  transform:translateY(-3px);
}
.tool-rank{
  position:absolute;
  top:18px; left:20px;
  font-family:'Cairo',sans-serif;
  font-size:11px;
  font-weight:800;
  color:var(--text-on-ink-muted);
  letter-spacing:.05em;
}
.tool-icon{
  width:48px;height:48px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line-on-ink-strong);
  margin-bottom:18px;
  transition:transform .3s ease, border-color .3s ease;
}
.tool-icon svg{width:22px;height:22px;stroke:#fff;}
.tool-card .name{
  font-size:15.5px;
  font-weight:700;
  color:#fff;
  font-family:'Cairo', sans-serif;
}
.tool-card .tag{
  margin-top:8px;
  font-size:13px;
  line-height:1.7;
  color:var(--text-on-ink-muted);
}

/* ---------- Pricing ---------- */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  align-items:stretch;
}
.price-card{
  background:#fff;
  border:1.5px solid var(--mist-line);
  border-radius:var(--radius-lg);
  padding:32px 26px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}
.price-card.is-popular{
  border-color:var(--ink);
  box-shadow:var(--shadow-pop);
  transform:translateY(-10px);
  background:linear-gradient(180deg, #fff, #FAFAFA);
}
.price-tag{
  position:absolute;
  top:-15px; right:50%;
  transform:translateX(50%);
  background:var(--ink);
  color:#fff;
  font-size:12.5px;
  font-weight:800;
  padding:7px 18px;
  border-radius:999px;
  white-space:nowrap;
}
.price-card h3{font-size:18px;font-weight:800;}
.price-card .save{
  margin-top:8px;
  font-size:12.5px;
  font-weight:700;
  color:var(--steel);
}
.price-card .start{
  margin-top:8px;
  font-size:12.5px;
  font-weight:700;
  color:var(--text-muted);
}
.price-card .amount{
  margin-top:18px;
  display:flex;
  align-items:baseline;
  gap:6px;
}
.price-card .amount .num{
  font-family:'Cairo', sans-serif;
  font-size:36px;
  font-weight:800;
  color:var(--text-dark);
}
.price-card .amount .cur{font-size:14px;color:var(--text-muted);font-weight:700;}
.price-card .period{
  margin-top:2px;
  font-size:13px;
  color:var(--text-muted);
}
.price-card .btn{margin-top:22px;}
.price-feats{
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid var(--mist-line);
  display:flex;
  flex-direction:column;
  gap:13px;
}
.price-feats li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--text-dark);
}
.price-feats svg{flex:none;width:18px;height:18px;color:var(--ink);}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg, #0A0A0B, #1B1C1F);
  padding:78px 0;
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:"";
  position:absolute;
  width:480px;height:480px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  top:-220px; left:-120px;
}
.cta-inner{
  position:relative;
  text-align:center;
  max-width:620px;
  margin:0 auto;
}
.cta-inner h2{
  color:#fff;
  font-size:clamp(24px,3vw,32px);
  font-weight:800;
}
.cta-inner p{
  margin-top:14px;
  color:rgba(255,255,255,.78);
  font-size:16px;
}
.cta-inner .btn{margin-top:30px;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--ink);
  color:var(--text-on-ink-muted);
  padding:70px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:50px;
}
.footer-brand .brand{margin-bottom:18px;}
.footer-brand p{
  font-size:14.5px;
  line-height:1.9;
  max-width:280px;
  color:var(--text-on-ink-muted);
}
.footer-col h4{
  color:#fff;
  font-size:15px;
  font-weight:700;
  margin-bottom:20px;
}
.footer-col ul{display:flex;flex-direction:column;gap:13px;}
.footer-col a{
  font-size:14.5px;
  color:var(--text-on-ink-muted);
  transition:color .2s ease;
}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  border-top:1px solid var(--line-on-ink);
  padding:24px 0;
  text-align:center;
  font-size:13.5px;
  color:#5C5F68;
}

/* ---------- Reveal animation ---------- */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-card{max-width:420px;}
  .main-nav{display:none;}
  .burger{display:flex;}
  .tools-grid{grid-template-columns:repeat(2,1fr);}
  .pricing-grid{grid-template-columns:repeat(2,1fr);}
  .price-card.is-popular{transform:none;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .hero-stats{gap:24px; flex-wrap:wrap;}
  .acc-body-inner{grid-template-columns:1fr;}
}
@media (max-width:640px){
  .hero{padding:140px 0 70px;}
  .hero-cta-row{flex-direction:column; align-items:stretch;}
  .hero-cta-row .btn{width:100%;}
  .section{padding:74px 0;}
  .tools-grid{grid-template-columns:1fr 1fr;}
  .pricing-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .header-actions .btn{display:none;}
  .partner-grid{justify-content:center;}
  .acc-item summary{padding:18px 18px;font-size:15.5px;}
  .acc-body{padding:4px 18px 24px;}
}
