/* =========================================================
   حضور (Hudur) — styles.css
   نظام التصميم الأحادي (مونوكروم) لموقع حضور — hudur.ly
   مستخرج بالكامل من index.html (كان مضمّناً inline سابقاً)
   ========================================================= */

:root{
  --ink:#0B0B0C;
  --muted:#56554E;
  --line:#D8D6D0;
  --paper:#F4F2ED;
  --white:#FFFFFF;
  --soft:#EAE7E1;
  --accent:#8A8A86;
  --accent-dark:#2B2B29;
  --max:1240px;
  --radius:22px;
  --shadow:0 18px 60px rgba(11,11,12,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"IBM Plex Sans Arabic",system-ui,sans-serif;
  font-weight:400;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{max-width:100%;display:block}

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

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
  font-weight:500;
  letter-spacing:.02em;
}
.eyebrow::before{
  content:"";
  width:26px;
  height:1px;
  background:var(--accent-dark);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 21px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  transition:.25s ease;
  cursor:pointer;
}
.btn-dark{background:var(--ink);color:#fff}
.btn-dark:hover{transform:translateY(-2px);background:#202823}
.btn-light{background:transparent;border-color:var(--line)}
.btn-light:hover{background:var(--white);border-color:#cbd2cd}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(244,242,237,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(216,214,208,.8);
}
.nav{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  line-height:1.2;
  min-width:180px;
}
.brand-mark{height:60px;width:auto;object-fit:contain}
.brand span{font-size:10px;color:var(--muted)}
.nav-links{display:flex;align-items:center;gap:30px}
.nav-links a{
  font-size:13px;
  color:#424a46;
  transition:.2s;
}
.nav-links a:hover{color:var(--ink)}
.nav-actions{display:flex;align-items:center;gap:10px}
.menu-toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  background:transparent;
  border-radius:50%;
  cursor:pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  display:block;width:17px;height:1px;background:var(--ink);
  margin:auto;position:relative;
}
.menu-toggle span::before,.menu-toggle span::after{
  content:"";position:absolute;right:0;
}
.menu-toggle span::before{top:-6px}
.menu-toggle span::after{top:6px}

/* Hero (single-column variant) */
.hero{padding:100px 0 70px}
.hero-solo{max-width:760px}
.hero-solo h1{
  margin:25px 0 28px;
  font-size:clamp(42px,5.6vw,72px);
  line-height:1.32;
  letter-spacing:-.03em;
  font-weight:600;
}
.hero-copy{
  max-width:650px;
  color:#515a55;
  font-size:18px;
  line-height:2;
}
.hero-copy strong{color:var(--ink);font-weight:600}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:32px}
.micro-note{font-size:12px;color:var(--muted);margin-top:15px}

/* Hero stats (الخدمة / السعر / المدة) */
.hero-stats{
  display:flex;flex-wrap:wrap;gap:14px;margin-top:34px;
}
.hero-stat{
  border:1px solid var(--line);border-radius:14px;background:var(--white);
  padding:14px 20px;min-width:150px;
}
.hero-stat-label{display:block;font-size:11px;color:var(--muted);margin-bottom:6px}
.hero-stat-val{display:block;font-size:16px;font-weight:600;color:var(--ink)}

/* Sticky WhatsApp bar (mobile only) */
.sticky-wa{
  display:none;
  position:fixed;bottom:0;inset-inline:0;z-index:80;
  background:var(--ink);border-top:1px solid #2a2a29;
  padding:14px 18px;
  padding-bottom:calc(14px + env(safe-area-inset-bottom));
}
.sticky-wa a{
  display:flex;align-items:center;justify-content:center;gap:10px;
  min-height:50px;border-radius:999px;background:var(--white);color:var(--ink);
  font-size:15px;font-weight:600;
}
@media(max-width:760px){
  .sticky-wa{display:block}
  body{padding-bottom:78px}
}

/* Trust strip */
.trust-strip{
  display:flex;flex-wrap:wrap;gap:10px 22px;
  margin-top:34px;padding-top:28px;border-top:1px solid var(--line);
  max-width:700px;
}
.trust-strip span{
  font-size:12px;color:var(--muted);position:relative;padding-right:14px;
}
.trust-strip span::before{
  content:"";position:absolute;right:0;top:6px;width:5px;height:5px;
  border-radius:50%;background:var(--accent-dark);
}
.trust-strip span:first-child{padding-right:0}
.trust-strip span:first-child::before{display:none}

/* Sections */
section{padding:110px 0}
.section-head{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:50px;
  margin-bottom:60px;
}
.section-head h2{
  margin:0;
  font-size:clamp(34px,4.5vw,58px);
  line-height:1.32;
  letter-spacing:-.03em;
  font-weight:600;
}
.section-head p{
  max-width:580px;
  color:var(--muted);
  margin:8px 0 0;
  font-size:16px;
}

/* Problem */
.problem-list{border-top:1px solid var(--line)}
.problem{
  display:grid;
  grid-template-columns:90px 1fr 1fr;
  gap:35px;
  padding:31px 0;
  border-bottom:1px solid var(--line);
  align-items:start;
}
.problem-num{font-size:13px;color:var(--accent-dark);font-weight:600}
.problem h3{margin:0;font-size:24px;line-height:1.45;font-weight:500}
.problem p{margin:0;color:var(--muted);font-size:14px;max-width:460px}

/* Build grid (cards) */
.build-section{background:var(--white)}
.build-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.build-card{
  border:1px solid var(--line);border-radius:16px;
  padding:26px 24px;background:var(--paper);
}
.build-num{font-size:12px;color:var(--accent-dark);font-weight:600}
.build-card h4{margin:16px 0 8px;font-size:17px;font-weight:600}
.build-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.75}
.build-note{margin-top:28px;color:var(--muted);font-size:14px;max-width:640px}
.build-note b{color:var(--ink);font-weight:600}

/* Method */
.method-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
}
.method-step{
  padding:32px 26px 20px 0;
  min-height:250px;
  border-left:1px solid var(--line);
}
.method-step:last-child{border-left:0}
.method-step span{font-size:12px;color:var(--accent-dark)}
.method-step h3{font-size:21px;margin:28px 0 10px;font-weight:500}
.method-step p{font-size:13px;color:var(--muted);max-width:250px;margin:0 0 10px}
.method-step .result{font-size:12px;color:var(--ink);font-weight:500}
.method-step .result b{font-weight:600}

/* Example box */
.example-box{
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px 26px;
  max-width:660px;
  background:var(--white);
  margin-top:36px;
}
.example-tag{display:block;font-size:11px;color:var(--accent-dark);font-weight:600;margin-bottom:8px}
.example-box p{margin:0;color:var(--muted);font-size:14px;line-height:1.9}

/* Value (dark) */
.value{background:var(--ink);color:white}
.value .eyebrow{color:#aab0ac}
.value .eyebrow::before{background:var(--accent)}
.value-head{
  display:flex;
  justify-content:space-between;
  gap:50px;
  align-items:end;
  margin-bottom:60px;
}
.value h2{
  margin:0;
  font-size:clamp(40px,5vw,64px);
  line-height:1.3;
  letter-spacing:-.03em;
}
.value-note{color:#aab0ac;max-width:330px;font-size:14px}
.value-list{border-top:1px solid #333331}
.value-row{
  display:grid;
  grid-template-columns:80px 1fr 1fr;
  gap:35px;
  align-items:start;
  padding:28px 0;
  border-bottom:1px solid #333331;
}
.value-row span{font-size:12px;color:#9a9a96}
.value-row h3{margin:0;font-size:23px;font-weight:500}
.value-row p{margin:0;color:#aab0ac;font-size:14px}

/* Pricing */
.price-wrap{display:flex;justify-content:center}
.price-card{
  max-width:640px;width:100%;
  border:1px solid var(--line);border-radius:20px;
  background:var(--white);padding:44px 40px;box-shadow:var(--shadow);
}
.price-badge{
  display:flex;align-items:center;gap:8px;width:fit-content;
  background:var(--accent-dark);color:#fff;
  font-size:11.5px;font-weight:600;letter-spacing:.02em;
  padding:7px 14px;border-radius:100px;margin-bottom:18px;
}
.price-badge::before{content:"";width:6px;height:6px;border-radius:50%;background:#fff}
.price-step{display:block;font-size:12px;color:var(--accent-dark);font-weight:600;letter-spacing:.02em}
.price-amount{font-size:56px;font-weight:600;letter-spacing:-.02em;margin:14px 0 10px;display:flex;align-items:baseline;gap:8px}
.price-amount .unit{font-size:16px;color:var(--muted);font-weight:500}
.price-sub{color:var(--muted);font-size:14px;margin:0 0 26px}
.price-list{list-style:none;margin:0 0 26px;padding:22px 0 0;display:flex;flex-direction:column;gap:12px;border-top:1px solid var(--line)}
.price-list li{display:flex;gap:10px;font-size:14px;color:#333230;line-height:1.7}
.price-list li::before{content:"";flex:0 0 auto;width:6px;height:6px;border-radius:50%;background:var(--accent-dark);margin-top:8px}
.price-exclude{background:var(--soft);border-radius:14px;padding:18px 20px;margin-bottom:28px}
.price-exclude .label{display:block;font-size:11px;color:var(--accent-dark);font-weight:600;margin-bottom:10px}
.price-exclude ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.price-exclude li{font-size:13px;color:var(--muted)}
.price-note{font-size:12px;color:var(--muted);margin-top:18px;line-height:1.8}
.price-note a{font-weight:600;color:var(--ink);text-decoration:underline}

/* Proof */
.proof-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.proof-card{
  border:1px solid var(--line);border-radius:16px;
  background:var(--white);overflow:hidden;
  display:flex;flex-direction:column;
  transition:.25s ease;
}
.proof-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.proof-shot{
  aspect-ratio:16/10;overflow:hidden;background:var(--soft);
  border-bottom:1px solid var(--line);
}
.proof-shot img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block}
.proof-body{padding:26px 28px 30px;display:flex;flex-direction:column;flex:1}
.proof-tag{display:block;font-size:11px;color:var(--accent-dark);font-weight:600;margin-bottom:14px}
.proof-card h3{margin:0 0 12px;font-size:22px;font-weight:600}
.proof-card p{color:var(--muted);font-size:14px;margin:0 0 20px;line-height:1.9;flex:1}
.proof-link{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:600;margin-top:auto;color:var(--ink)}
.proof-link i{font-style:normal;transition:.2s}
.proof-card:hover .proof-link i{transform:translateX(-4px)}
@media(max-width:760px){.proof-grid{grid-template-columns:1fr}}

/* Split (لمن تناسب) */
.split-band{background:var(--soft)}
.split-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px}
.split-col{background:var(--white);border:1px solid var(--line);border-radius:16px;padding:32px 30px}
.split-col h3{margin:0 0 18px;font-size:20px;font-weight:600}
.split-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:14px}
.split-col li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--muted);line-height:1.7}
.split-col li::before{content:"";flex:0 0 auto;width:6px;height:6px;border-radius:50%;background:var(--accent-dark);margin-top:9px}
.split-col.no li::before{background:#b3ada3}

/* Lead form */
.lead-band{background:var(--soft)}
.lead-wrap{display:flex;justify-content:center}
.lead-card{
  max-width:560px;width:100%;
  border:1px solid var(--line);border-radius:20px;
  background:var(--white);padding:40px 36px;box-shadow:var(--shadow);
}
.lead-card h3{margin:0 0 8px;font-size:24px;font-weight:600}
.lead-card .lead-sub{color:var(--muted);font-size:14px;margin:0 0 28px}
.lead-row{margin-bottom:16px}
.lead-row label{display:block;font-size:13px;color:var(--muted);margin-bottom:7px;font-weight:500}
.lead-row input,.lead-row textarea{
  width:100%;background:var(--paper);border:1px solid var(--line);color:var(--ink);
  padding:13px 14px;border-radius:10px;font-size:14px;font-family:inherit;
}
.lead-row input:focus,.lead-row textarea:focus{outline:none;border-color:var(--ink)}
.lead-row textarea{resize:vertical;min-height:90px}
.lead-hp{position:absolute;left:-9999px;top:-9999px}
.lead-submit{width:100%;margin-top:6px}
.lead-note{font-size:11.5px;color:var(--muted);margin-top:16px;line-height:1.8}

/* FAQ */
.faq{background:var(--white)}
.faq-list{max-width:900px;border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-question{
  width:100%;
  border:0;
  background:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  text-align:right;
  padding:23px 0;
  cursor:pointer;
  color:var(--ink);
  font-size:16px;
  font-weight:500;
}
.faq-icon{
  flex:0 0 auto;
  width:30px;height:30px;border:1px solid var(--line);
  border-radius:50%;display:grid;place-items:center;
  font-size:18px;line-height:1;font-weight:300;
  transition:.25s;
}
.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .35s ease;
}
.faq-answer p{margin:0 50px 22px 0;color:var(--muted);font-size:14px;max-width:760px}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--ink);color:white;border-color:var(--ink)}
.faq-answer a{font-weight:600;color:var(--ink);text-decoration:underline}

/* CTA */
.cta{padding:120px 0;background:var(--accent-dark);color:white}
.cta-inner{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:80px;
  align-items:end;
}
.cta .eyebrow{color:#cfd2d0}
.cta .eyebrow::before{background:#c3c7c4}
.cta h2{
  margin:25px 0 20px;
  font-size:clamp(44px,5.6vw,80px);
  line-height:1.28;
  letter-spacing:-.03em;
  font-weight:600;
}
.cta p{color:#cfd2d0;max-width:570px;margin:0;font-size:16px}
.cta .btn{background:white;color:var(--ink)}
.cta-side{display:flex;flex-direction:column;align-items:flex-start;gap:14px}
.cta-note{font-size:12px;color:#c2c5c3}

/* Footer */
footer{background:#0c0c0c;color:white;padding:55px 0 30px}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:50px;
  padding-bottom:45px;
  border-bottom:1px solid #2a2a29;
}
.footer-brand strong{font-size:22px}
.footer-brand p{color:#909090;font-size:12px;max-width:280px;margin-top:12px}
.footer-brand p a{color:#c3c3c1;text-decoration:underline}
.footer-links{display:flex;gap:40px}
.footer-col{display:flex;flex-direction:column;gap:10px}
.footer-col span{font-size:11px;color:#7f7f7d;margin-bottom:5px}
.footer-col a{font-size:13px;color:#c3c3c1}
.footer-col a:hover{color:white}
.copyright{
  display:flex;justify-content:space-between;gap:20px;
  padding-top:22px;color:#6f6f6d;font-size:11px
}

/* Reveal */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}

@media(max-width:900px){
  .container{width:min(calc(100% - 34px),var(--max))}
  .nav{min-height:70px}
  .nav-links,.nav-actions .btn{display:none}
  .menu-toggle{display:block}
  .nav.open .nav-links{
    display:flex;position:absolute;top:70px;right:17px;left:17px;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--white);border:1px solid var(--line);border-radius:18px;
    padding:10px;box-shadow:var(--shadow)
  }
  .nav.open .nav-links a{padding:13px 14px;border-bottom:1px solid var(--line)}
  .nav.open .nav-links a:last-child{border-bottom:0}
  .hero{padding:70px 0 55px}
  .cta-inner{grid-template-columns:1fr;gap:45px}
  .hero-solo h1{font-size:clamp(40px,10vw,58px)}
  .section-head{grid-template-columns:1fr;gap:15px;margin-bottom:40px}
  section{padding:75px 0}
  .problem{grid-template-columns:55px 1fr;gap:15px}
  .problem p{grid-column:2}
  .build-grid{grid-template-columns:1fr 1fr}
  .method-grid{grid-template-columns:1fr 1fr}
  .method-step{border-left:0;border-bottom:1px solid var(--line);padding:25px 0;min-height:auto}
  .method-step:nth-child(odd){border-left:1px solid var(--line)}
  .split-grid{grid-template-columns:1fr;gap:20px}
  .value-head{display:block;margin-bottom:40px}
  .value-note{margin-top:15px}
  .value-row{grid-template-columns:45px 1fr;gap:15px}
  .value-row p{grid-column:2}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1}
}

@media(max-width:560px){
  .brand{min-width:auto}
  .brand span{display:none}
  .hero-solo h1{font-size:42px;letter-spacing:-.02em}
  .hero-copy{font-size:16px}
  .hero-actions .btn{width:100%}
  .problem h3{font-size:20px}
  .build-grid{grid-template-columns:1fr}
  .method-grid{grid-template-columns:1fr}
  .method-step:nth-child(odd){border-left:0}
  .method-step{min-height:auto}
  .price-card{padding:34px 24px}
  .price-amount{font-size:46px}
  .split-col{padding:26px 22px}
  .lead-card{padding:30px 22px}
  .cta{padding:90px 0}
  .cta h2{font-size:44px}
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
  .footer-links{gap:50px}
  .copyright{display:block}
  .copyright span{display:block;margin-top:8px}
}
