/* ============================================================
   eidara.pk — design tokens
   Type: Plus Jakarta Sans (display) + Inter (body)
   Motif: the "rising line" — a single diagonal growth stroke
   used sparingly across hero, dividers and stat blocks.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --primary:#2563EB;
  --primary-dark:#1D4ED8;
  --primary-deep:#1E40AF;
  --dark:#0F172A;
  --dark-soft:#1E293B;
  --light:#E0F2FE;
  --bg:#F8FAFC;
  --white:#FFFFFF;
  --text:#334155;
  --text-soft:#64748B;
  --line:#E2E8F0;
  --success:#16A34A;
  --success-soft:#DCFCE7;
  --warning:#F59E0B;
  --warning-soft:#FEF3C7;
  --danger:#DC2626;
  --danger-soft:#FEE2E2;

  --display:'Plus Jakarta Sans', sans-serif;
  --body:'Inter', sans-serif;

  --radius-sm:6px;
  --radius:10px;
  --radius-lg:18px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow: 0 12px 28px -12px rgba(15,23,42,0.18);
  --shadow-lg: 0 24px 60px -20px rgba(15,23,42,0.35);
  --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 8px 20px -10px rgba(15,23,42,0.12);
  --gradient-brand: linear-gradient(135deg, #2563EB 0%, #1E3A8A 100%);
  --gradient-sky: linear-gradient(135deg, #E0F2FE 0%, #F8FAFC 100%);
  --container:1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  font-size:16px;
}
h1,h2,h3,h4{
  font-family:var(--display);
  color:var(--dark);
  margin:0;
  line-height:1.15;
  letter-spacing:-0.01em;
}
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;}
:focus-visible{outline:2px solid var(--primary);outline-offset:3px;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

.wrap{max-width:var(--container); margin:0 auto; padding:0 28px;}
.section{padding:96px 0;}
.section-tight{padding:64px 0;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:var(--radius-sm);
  font-weight:600;
  font-size:15px;
  font-family:var(--body);
  border:1px solid transparent;
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.btn:active{transform:translateY(1px);}
.btn-primary{background:var(--primary); color:#fff;}
.btn-primary:hover{background:var(--primary-dark);}
.btn-dark{background:var(--dark); color:#fff;}
.btn-dark:hover{background:var(--dark-soft);}
.btn-outline{background:transparent; border-color:rgba(255,255,255,0.32); color:#fff;}
.btn-outline:hover{border-color:#fff;}
.btn-ghost{background:transparent; border-color:var(--line); color:var(--dark);}
.btn-ghost:hover{border-color:var(--primary); color:var(--primary);}
.btn-block{width:100%;}

/* ---------- top nav ---------- */
.topbar{
  background:var(--dark);
  color:#CBD5E1;
  font-size:13px;
}
.topbar .wrap{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:8px; padding-bottom:8px;
}
.topbar a{color:#CBD5E1;}
.topbar a:hover{color:#fff;}
.topbar-links{display:flex; gap:18px;}

nav.mainnav{
  background:rgba(248,250,252,0.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
}
.mainnav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{display:flex; align-items:center; gap:10px;}
.brand img{height:42px; width:auto;}
.brand-name{font-family:var(--display); font-weight:700; font-size:19px; color:var(--dark);}
.brand-name span{color:var(--primary);}
.navlinks{display:flex; align-items:center; gap:6px;}
.navlinks a{
  padding:10px 16px;
  border-radius:var(--radius-sm);
  font-weight:500;
  font-size:14.5px;
  color:var(--text);
}
.navlinks a:hover{background:var(--light); color:var(--primary-dark);}
.navlinks a.active{color:var(--primary-dark); font-weight:600;}
.nav-cta{display:flex; align-items:center; gap:10px;}
.nav-toggle{display:none;}

@media (max-width:900px){
  .navlinks{
    position:fixed; inset:76px 0 0 0; background:var(--bg);
    flex-direction:column; align-items:stretch; padding:18px;
    gap:2px; display:none; overflow:auto;
  }
  .navlinks.open{display:flex;}
  .navlinks a{padding:14px 12px; border-bottom:1px solid var(--line); border-radius:0;}
  .nav-toggle{
    display:flex; align-items:center; justify-content:center;
    width:42px; height:42px; border-radius:var(--radius-sm);
    border:1px solid var(--line); background:#fff; cursor:pointer;
  }
  .nav-cta .btn-ghost{display:none;}
}

/* ---------- footer ---------- */
footer{background:var(--dark); color:#94A3B8; padding:64px 0 28px;}
.foot-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:44px; border-bottom:1px solid #1F2C44;
}
.foot-brand{display:flex; align-items:center; gap:10px; margin-bottom:14px;}
.foot-brand img{height:36px;}
.foot-brand-name{font-family:var(--display); font-weight:700; color:#fff; font-size:18px;}
.foot-tag{font-size:14px; line-height:1.7; max-width:34ch;}
.foot-col h4{color:#fff; font-size:13.5px; font-weight:600; margin-bottom:16px; font-family:var(--body);}
.foot-col ul{display:flex; flex-direction:column; gap:11px;}
.foot-col a{font-size:14px; color:#94A3B8;}
.foot-col a:hover{color:#fff;}
.foot-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:26px; font-size:13px; flex-wrap:wrap; gap:10px;
}
.foot-social{display:flex; gap:10px; flex-wrap:wrap;}
.foot-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid #1F2C44;
  display:flex; align-items:center; justify-content:center;
}
.foot-social a:hover{border-color:var(--primary); color:var(--primary);}

@media (max-width:820px){
  .foot-grid{grid-template-columns:1fr 1fr; gap:32px 24px;}
}

/* ---------- shared bits ---------- */
.kicker{
  font-family:var(--body); font-weight:600; font-size:13.5px;
  color:var(--primary-dark); margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.kicker::before{
  content:""; width:22px; height:2px; background:var(--primary); display:inline-block; border-radius:2px;
}
.section-head{max-width:640px; margin-bottom:52px;}
.section-head h2{font-size:clamp(26px,3.4vw,36px);}
.section-head p{margin-top:14px; font-size:16.5px; color:var(--text-soft);}
.center{text-align:center; margin-left:auto; margin-right:auto;}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 14px; border-radius:999px; font-size:13px; font-weight:600;
}
.pill-light{background:var(--light); color:var(--primary-deep);}
.pill-success{background:var(--success-soft); color:#15803D;}
.pill-warning{background:var(--warning-soft); color:#B45309;}

.divider-rise{
  height:64px; position:relative; overflow:hidden;
}
.divider-rise svg{position:absolute; inset:0; width:100%; height:100%;}

.page-hero{
  background:var(--dark);
  color:#E2E8F0;
  padding:70px 0 88px;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; right:-10%; top:-30%;
  width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,0.35), transparent 68%);
}
.page-hero .wrap{position:relative; z-index:1;}
.page-hero .kicker{color:#7DD3FC;}
.page-hero .kicker::before{background:#7DD3FC;}
.page-hero h1{color:#fff; font-size:clamp(30px,4.2vw,46px); max-width:20ch;}
.page-hero p.lede{margin-top:16px; font-size:17px; color:#B7C2D6; max-width:56ch;}
.crumbs{font-size:13.5px; color:#94A3B8; margin-bottom:18px;}
.crumbs a:hover{color:#fff;}

/* ---------- gradient text (used once, sparingly) ---------- */
.text-brand{
  background:var(--gradient-brand);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------- stat band ---------- */
.stat-band{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#fff;
}
.stat-item{
  padding:26px 22px;
  border-right:1px solid var(--line);
}
.stat-item:last-child{border-right:none;}
.stat-item .num{font-family:var(--display); font-weight:700; font-size:26px; color:var(--dark);}
.stat-item .lbl{font-size:13px; color:var(--text-soft); margin-top:4px; line-height:1.5;}
@media (max-width:820px){
  .stat-band{grid-template-columns:1fr 1fr;}
  .stat-item{border-bottom:1px solid var(--line);}
}

/* ---------- differentiator cards ---------- */
.diff-card{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  background:#fff;
  box-shadow:var(--shadow-card);
  transition:border-color .18s ease, box-shadow .18s ease;
}
.diff-card:hover{border-color:#BFDBFE; box-shadow:var(--shadow);}
.diff-num{
  font-family:var(--display);
  font-weight:700;
  font-size:13px;
  color:var(--primary);
  background:var(--light);
  width:30px; height:30px;
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}

/* ---------- FAQ (details/summary — accessible + SEO-friendly) ---------- */
.faq-item{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  font-weight:600;
  font-size:15px;
  color:var(--dark);
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .chev{
  flex-shrink:0; width:20px; height:20px;
  transition:transform .2s ease;
  color:var(--text-soft);
}
.faq-item[open] summary .chev{transform:rotate(180deg); color:var(--primary);}
.faq-item .faq-a{
  padding:0 22px 20px;
  font-size:14px;
  color:var(--text-soft);
  line-height:1.7;
}

/* ---------- trust badge row ---------- */
.trust-row{
  display:flex; align-items:center; gap:28px; flex-wrap:wrap;
}
.trust-item{display:flex; align-items:center; gap:9px; font-size:13.5px; color:#B7C2D6;}

.whatsapp-fab{
  position:fixed; right:22px; bottom:22px; z-index:60;
  width:56px; height:56px; border-radius:50%;
  background:var(--success); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(22,163,74,0.55);
}
.whatsapp-fab:hover{background:#128C42;}
