:root{
  --brand:#ff0069; --brand-dark:#d10056; --brand-soft:#fff0f6;
  --ink:#14141a; --muted:#5f5f6b; --line:#ececf1; --bg:#ffffff; --bg2:#faf7f8;
  --maxw:1180px; --radius:18px;
  --shadow:0 10px 30px rgba(20,20,26,.08);
}
*{margin:0; padding:0; box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:84px;}
body{background:var(--bg); color:var(--ink); line-height:1.7; -webkit-font-smoothing:antialiased;}
body.lang-ar{font-family:"El Messiri","Segoe UI",Tahoma,sans-serif;}
body.lang-en{font-family:"Poppins","Segoe UI",Arial,sans-serif;}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.container{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
section{padding:90px 0;}
.accent{color:var(--brand);}

/* ===== buttons ===== */
.btn{display:inline-flex; align-items:center; gap:.55rem; padding:.8rem 1.4rem; border-radius:999px; font-weight:600; font-size:1rem; cursor:pointer; border:1.5px solid transparent; transition:all .18s ease; white-space:nowrap;}
.btn svg{width:20px;height:20px;}
.btn-brand{background:var(--brand); color:#fff;}
.btn-brand:hover{background:var(--brand-dark); transform:translateY(-1px);}
.btn-ghost{background:#fff; color:var(--ink); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--brand); color:var(--brand);}
.btn-light{background:rgba(255,255,255,.14); color:#fff; border-color:rgba(255,255,255,.3);}
.btn-light:hover{background:rgba(255,255,255,.24);}
.btn-white{background:#fff; color:var(--brand-dark);}
.btn-white:hover{transform:translateY(-1px);}

/* ===== section heading ===== */
.eyebrow{display:inline-block; color:var(--brand); font-weight:700; letter-spacing:.04em; margin-bottom:.6rem; font-size:.95rem;}
.sec-title{font-size:clamp(1.7rem,3.6vw,2.6rem); font-weight:700; line-height:1.2;}
.sec-sub{color:var(--muted); font-size:1.1rem; margin-top:.6rem; max-width:680px;}
.center{text-align:center;}
.center .sec-sub{margin-inline:auto;}

/* ===== header ===== */
.site-header{position:fixed; inset-inline:0; top:0; z-index:100; background:rgba(255,255,255,.86); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
.nav{display:flex; align-items:center; justify-content:space-between; gap:1rem; height:72px;}
.brand-logo{height:48px; width:auto; display:block;}
.nav-links{display:flex; align-items:center; gap:1.6rem; list-style:none;}
.nav-links a{font-weight:600; color:#34343d; font-size:1rem; transition:color .15s;}
.nav-links a:hover{color:var(--brand);}
.nav-actions{display:flex; align-items:center; gap:.7rem;}
.lang-btn{border:1.5px solid var(--line); background:#fff; border-radius:999px; padding:.45rem .8rem; font-weight:700; cursor:pointer; font-family:inherit; color:#34343d; transition:all .15s;}
.lang-btn:hover{border-color:var(--brand); color:var(--brand);}
.burger{display:none; background:none; border:0; cursor:pointer; padding:.4rem; color:var(--ink);}
.burger svg{width:26px;height:26px;}

/* ===== hero ===== */
.hero{position:relative; padding:96px 0 60px; min-height:100vh; display:flex; align-items:center; overflow:hidden; color:#fff;
  background:
    linear-gradient(180deg, rgba(15,8,16,.55) 0%, rgba(15,8,16,.62) 55%, rgba(15,8,16,.78) 100%),
    radial-gradient(80% 90% at 80% 10%, rgba(255,0,105,.30) 0%, rgba(255,0,105,0) 55%),
    url('../img/hero.jpg') center/cover no-repeat;}
.hero h1{font-size:clamp(2.1rem,5.4vw,3.9rem); font-weight:700; line-height:1.16; max-width:16ch; color:#fff;}
.hero p.sub{font-size:clamp(1.05rem,2vw,1.35rem); color:rgba(255,255,255,.9); margin-top:1.1rem; max-width:60ch;}
.hero-cta{display:flex; gap:.8rem; margin-top:2rem; flex-wrap:wrap;}
.hero .btn-ghost{background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.55);}
.hero .btn-ghost:hover{background:rgba(255,255,255,.16); border-color:#fff; color:#fff;}
.hero-badges{display:flex; gap:.6rem; flex-wrap:wrap; margin-top:2.2rem;}
.badge{display:inline-flex; align-items:center; gap:.4rem; background:#fff; border:1px solid var(--line); border-radius:999px; padding:.5rem 1rem; font-weight:600; font-size:.95rem; box-shadow:var(--shadow);}
.badge .dot{width:8px;height:8px;border-radius:50%;background:var(--brand);}
.hero .badge{background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.28); color:#fff; box-shadow:none; backdrop-filter:blur(4px);}

/* ===== generic grid + cards ===== */
.grid{display:grid; gap:1.2rem; margin-top:2.4rem;}
.cols-2{grid-template-columns:repeat(2,1fr);}
.cols-3{grid-template-columns:repeat(3,1fr);}
.cols-5{grid-template-columns:repeat(5,1fr);}
.card{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.6rem; box-shadow:0 1px 2px rgba(20,20,26,.04); transition:transform .18s, box-shadow .18s, border-color .18s;}
.card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:#ffd0e2;}
.card .ic{width:54px;height:54px;border-radius:14px;display:grid;place-items:center;background:var(--brand-soft);color:var(--brand);margin-bottom:1rem;}
.card .ic svg{width:26px;height:26px;}
.card h3{font-size:1.25rem; font-weight:700; margin-bottom:.5rem;}
.card p{color:var(--muted); font-size:.98rem;}
.card ul{list-style:none; margin-top:.6rem; display:flex; flex-direction:column; gap:.4rem;}
.card li{color:var(--muted); font-size:.96rem; display:flex; gap:.5rem; align-items:flex-start;}
.card li::before{content:""; width:6px;height:6px;border-radius:50%;background:var(--brand);margin-top:.62rem;flex:none;}

/* ===== sectors ===== */
.sectors-wrap{display:grid; grid-template-columns:1.1fr 1.6fr; gap:1.4rem; margin-top:2.4rem;}
.sector-feature{background:linear-gradient(135deg,var(--brand),var(--brand-dark)); color:#fff; border-radius:var(--radius); padding:2.2rem; display:flex; flex-direction:column; justify-content:center;}
.sector-feature .tag{display:inline-block; background:rgba(255,255,255,.18); border-radius:999px; padding:.3rem .9rem; font-weight:700; font-size:.85rem; margin-bottom:1rem; width:fit-content;}
.sector-feature h3{font-size:1.8rem; font-weight:700; line-height:1.25;}
.sector-feature p{color:rgba(255,255,255,.88); margin-top:.7rem;}
.sectors-others{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem;}
.sector{background:#fff; border:1px solid var(--line); border-radius:14px; padding:1.2rem; text-align:center; transition:all .18s;}
.sector:hover{border-color:#ffd0e2; transform:translateY(-3px);}
.sector .ic{width:46px;height:46px;border-radius:12px;display:grid;place-items:center;background:var(--brand-soft);color:var(--brand);margin:0 auto .7rem;}
.sector .ic svg{width:24px;height:24px;}
.sector span{font-weight:600;font-size:1rem;}

/* ===== packages ===== */
.pkgs{display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:2.4rem;}
.pkg{position:relative; display:flex; flex-direction:column;}
.pkg.pop{border-color:var(--brand); box-shadow:0 16px 40px rgba(255,0,105,.16);}
.pkg .ribbon{position:absolute; top:-13px; inset-inline-start:1.4rem; background:var(--brand); color:#fff; font-weight:700; font-size:.78rem; padding:.25rem .8rem; border-radius:999px;}
.pkg .pname{font-weight:700; color:var(--brand); font-size:1.15rem;}
.pkg .price{font-size:2rem; font-weight:700; margin:.3rem 0 0;}
.pkg .per{font-size:.9rem; color:var(--muted); font-weight:400;}
.pkg ul{margin-top:1rem;}
.pkg .btn{margin-top:auto;}
.pkg-foot{margin-top:1.6rem;}
.launch{margin-top:1.2rem; display:grid; grid-template-columns:1fr 1.3fr; gap:1.4rem; align-items:center; background:var(--bg2); border:1px solid var(--line); border-radius:var(--radius); padding:1.8rem;}
.launch .price{font-size:1.8rem; font-weight:700;}
.note{color:var(--muted); font-size:.95rem; margin-top:1.4rem; text-align:center;}

/* ===== process ===== */
.steps{display:grid; grid-template-columns:repeat(6,1fr); gap:.8rem; margin-top:2.4rem;}
.step{background:#fff; border:1px solid var(--line); border-radius:14px; padding:1.2rem;}
.step .n{width:34px;height:34px;border-radius:50%;background:var(--brand);color:#fff;display:grid;place-items:center;font-weight:700;margin-bottom:.7rem;}
.step h4{font-size:1.05rem; font-weight:700;}
.step p{color:var(--muted); font-size:.85rem; margin-top:.2rem;}
.process-note{margin-top:1.6rem; background:var(--brand-soft); border-radius:14px; padding:1rem 1.3rem; color:var(--brand-dark); font-weight:600;}

/* ===== why ===== */
.why-sec{background:var(--bg2);}
.why-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1.4rem 2.4rem; margin-top:2.4rem;}
.why{display:flex; gap:1rem; align-items:flex-start;}
.why .ic{width:50px;height:50px;border-radius:14px;background:#fff;border:1px solid var(--line);color:var(--brand);display:grid;place-items:center;flex:none;}
.why .ic svg{width:26px;height:26px;}
.why h4{font-size:1.2rem; font-weight:700;}
.why p{color:var(--muted);}

/* ===== contact ===== */
.contact-sec{background:radial-gradient(120% 120% at 80% 0%, #2a0a1c 0%, #14141a 60%); color:#fff;}
.contact-sec .sec-title{color:#fff;}
.contact-sec .sec-sub{color:rgba(255,255,255,.75);}
.contact-grid{display:flex; gap:1rem; flex-wrap:wrap; margin-top:2rem; align-items:center;}
.contact-list{display:flex; flex-direction:column; gap:.9rem; margin-top:2rem;}
.contact-list a{display:inline-flex; align-items:center; gap:.8rem; font-size:1.1rem; color:rgba(255,255,255,.9);}
.contact-list .ic{width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.12);display:grid;place-items:center;}
.contact-list .ic svg{width:22px;height:22px;}

/* ===== footer ===== */
.site-footer{background:#0e0e13; color:rgba(255,255,255,.7); padding:48px 0 32px;}
.footer-top{display:flex; justify-content:space-between; gap:2rem; flex-wrap:wrap; align-items:flex-start;}
.footer-logo{height:30px;} .footer-logo .ico{fill:var(--brand);} .footer-logo .word{fill:#fff;}
.footer-links{display:flex; gap:1.4rem; flex-wrap:wrap;}
.footer-links a:hover{color:#fff;}
.footer-social{display:flex; gap:.6rem;}
.footer-social a{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.1);display:grid;place-items:center;transition:background .15s;}
.footer-social a:hover{background:var(--brand);}
.footer-social svg{width:20px;height:20px;color:#fff;}
.footer-bottom{margin-top:2rem; padding-top:1.4rem; border-top:1px solid rgba(255,255,255,.1); font-size:.9rem; text-align:center;}

/* ===== floating whatsapp ===== */
.wa-float{position:fixed; bottom:22px; inset-inline-end:22px; width:58px;height:58px;border-radius:50%;background:#25D366;display:grid;place-items:center;box-shadow:0 8px 24px rgba(37,211,102,.4); z-index:90; transition:transform .15s;}
.wa-float:hover{transform:scale(1.07);}
.wa-float svg{width:30px;height:30px;color:#fff;}

/* ===== reveal ===== */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:none;}

/* ===== mobile ===== */
@media (max-width:960px){
  .cols-5{grid-template-columns:repeat(2,1fr);}
  .sectors-wrap{grid-template-columns:1fr;}
  .steps{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:760px){
  section{padding:64px 0;}
  .burger{display:block;}
  .nav-links{position:fixed; inset:72px 0 auto 0; background:#fff; flex-direction:column; align-items:stretch; gap:0; padding:.5rem 0; border-bottom:1px solid var(--line); box-shadow:var(--shadow); transform:translateY(-130%); transition:transform .25s ease; max-height:calc(100vh - 72px); overflow:auto;}
  .nav-links.open{transform:none;}
  .nav-links a{padding:.9rem 24px; border-bottom:1px solid var(--line);}
  .nav .desktop-cta{display:none;}
  .cols-3,.cols-2,.cols-5,.pkgs,.sectors-others,.why-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:repeat(2,1fr);}
  .launch{grid-template-columns:1fr;}
  .footer-top{flex-direction:column; gap:1.4rem;}
}
@media (max-width:420px){.steps{grid-template-columns:1fr;}}
