/* =====================================================================
   د. كفاح حلبية — Eve Clinic | موقع البيع
   هوية: موف غامق + تركواز/أخضر مريمي + موف فاتح | RTL | موبايل أولاً
   ===================================================================== */

:root {
  --purple: #6e2a63;
  --purple-dark: #4e1c46;
  --purple-soft: #9b5a8f;
  --teal: #4e8c80;
  --teal-dark: #3a6d63;
  --mauve: #a7758f;
  --gold: #c2a14e;
  --gold-soft: #e7d6a8;
  --wa: #25d366;
  --wa-dark: #1da851;

  --bg: #fbf8fa;
  --bg-alt: #f4eef2;
  --surface: #ffffff;
  --ink: #2a2230;
  --ink-soft: #6b6072;
  --line: #ece2e9;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(78, 28, 70, 0.08);
  --shadow-lg: 0 20px 50px rgba(78, 28, 70, 0.16);
  --container: 1140px;
  --font: "Tajawal", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

section { padding: 70px 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--purple-dark);
  line-height: 1.3;
}
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 22px; height: 22px; fill: currentColor; }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45); }

.btn-primary { background: linear-gradient(135deg, var(--purple), var(--mauve)); color: #fff; box-shadow: 0 10px 24px rgba(110, 42, 99, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-lg { padding: 18px 38px; font-size: 1.15rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand .brand-txt strong { display: block; color: var(--purple-dark); font-weight: 800; font-size: 1.05rem; line-height: 1.2; }
.brand .brand-txt span { color: var(--teal); font-size: 0.8rem; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink); font-weight: 600; font-size: 0.98rem; transition: color 0.15s; }
.nav a:hover { color: var(--purple); }
.header .btn-wa { padding: 11px 22px; font-size: 0.98rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--purple); border-radius: 3px; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, #f7eef4 0%, var(--bg) 55%);
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--teal-dark); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 60px; font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  color: var(--purple-dark);
  line-height: 1.25;
}
.hero-copy h1 .hl { color: var(--teal); }
.hero-copy .lead { font-size: 1.18rem; color: var(--ink-soft); margin: 18px 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust .ht { }
.hero-trust .ht b { display: block; font-size: 1.5rem; color: var(--purple); font-weight: 800; }
.hero-trust .ht span { font-size: 0.85rem; color: var(--ink-soft); }

.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .float-card {
  position: absolute;
  bottom: 22px; inset-inline-start: -18px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-visual .float-card .stars { color: var(--gold); font-size: 1.1rem; }
.hero-visual .float-card b { color: var(--purple-dark); display: block; }
.hero-visual .float-card span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--purple-dark); color: #fff; padding: 22px 0; }
.trustbar .container { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; text-align: center; }
.trustbar .ti { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.trustbar .ti .ic { font-size: 1.5rem; }

/* ---------- Offer ---------- */
.offer { background: var(--bg-alt); }
.offer-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  max-width: 980px; margin: 0 auto;
}
.offer-card .offer-img { background: #efe6ee; }
.offer-card .offer-img img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 38px; display: flex; flex-direction: column; }
.offer-body .ribbon {
  align-self: flex-start; background: var(--gold); color: #fff; font-weight: 700;
  padding: 6px 16px; border-radius: 60px; font-size: 0.85rem; margin-bottom: 16px;
}
.offer-body h3 { font-size: 1.8rem; color: var(--purple-dark); font-weight: 800; }
.offer-body .incl { list-style: none; margin: 18px 0; }
.offer-body .incl li { padding: 7px 0; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; }
.offer-body .incl li::before { content: "✦"; color: var(--teal); font-weight: 800; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin: 8px 0 6px; }
.price-row .now { font-size: 2.6rem; font-weight: 800; color: var(--purple); }
.price-row .now small { font-size: 1rem; font-weight: 600; }
.price-row .was { font-size: 1.3rem; color: #b94a4a; text-decoration: line-through; opacity: 0.8; }
.save-tag { color: var(--teal-dark); font-weight: 700; margin-bottom: 18px; }
.countdown { display: flex; gap: 10px; margin-bottom: 20px; }
.countdown .cd { background: var(--purple-dark); color: #fff; border-radius: 10px; padding: 8px 0; text-align: center; min-width: 58px; }
.countdown .cd b { display: block; font-size: 1.4rem; font-weight: 800; line-height: 1; }
.countdown .cd span { font-size: 0.7rem; opacity: 0.8; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: 14px; }
.service-card {
  background: var(--surface); border-radius: var(--radius-sm); padding: 16px 16px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #f3e7f0, #e6f0ed); font-size: 1.35rem; margin-bottom: 2px;
}
.service-card h3 { color: var(--purple-dark); font-size: 1rem; font-weight: 700; line-height: 1.4; }
.service-card p { display: none; }
.service-card .s-link { color: var(--teal-dark); font-weight: 700; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* ---------- Feature (educational) ---------- */
.feature { background: var(--bg-alt); }
.feature .container { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature.reverse .container { direction: ltr; }
.feature.reverse .feature-text { direction: rtl; }
.feature.reverse .feature-img { direction: rtl; }
.feature-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.feature-text h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--purple-dark); font-weight: 800; line-height: 1.3; }
.feature-text .flist { list-style: none; margin: 20px 0 26px; }
.feature-text .flist li { padding: 8px 0; display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; }
.feature-text .flist li .chk {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal);
  color: #fff; display: grid; place-items: center; font-size: 0.8rem; margin-top: 4px;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--surface); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--bg); border-radius: var(--radius); padding: 26px; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.review-card .stars { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.review-card p { color: var(--ink); font-size: 1rem; }
.review-card .who { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.review-card .who .av {
  width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--mauve));
  color: #fff; display: grid; place-items: center; font-weight: 800;
}
.review-card .who b { color: var(--purple-dark); display: block; }
.review-card .who span { font-size: 0.82rem; color: var(--ink-soft); }
.proof-imgs { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.proof-imgs img { height: 230px; width: auto; border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--line); }

/* ---------- Doctor / authority ---------- */
.doctor { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); color: #fff; }
.doctor .container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.doctor-photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 5px solid rgba(255,255,255,0.15); }
.doctor-text h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; }
.doctor-text .role { color: var(--gold-soft); font-weight: 700; margin: 6px 0 18px; font-size: 1.1rem; }
.doctor-text p { color: rgba(255,255,255,0.88); font-size: 1.08rem; margin-bottom: 14px; }
.doctor-creds { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.doctor-creds .cred { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 12px 18px; font-weight: 600; }

/* ---------- Lead form ---------- */
.lead { background: var(--bg-alt); }
.lead-card {
  max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow-lg); text-align: center;
}
.lead-card h2 { color: var(--purple-dark); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; }
.lead-card p { color: var(--ink-soft); margin: 10px 0 26px; }
.lead-form { display: grid; gap: 14px; }
.lead-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form input, .lead-form select, .lead-form textarea {
  font-family: var(--font); font-size: 1rem; padding: 15px 18px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); width: 100%;
  transition: border-color 0.15s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--purple-soft); }
.lead-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 8px; }
.lead-success { display: none; background: #e8f7ee; color: var(--wa-dark); border-radius: var(--radius-sm); padding: 16px; font-weight: 700; margin-top: 14px; }

/* ---------- Financing ---------- */
.financing { text-align: center; padding: 40px 0; background: var(--surface); }
.financing .pills { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.financing .pill { background: var(--bg-alt); border-radius: 12px; padding: 10px 22px; font-weight: 700; color: var(--purple-dark); }

/* ---------- Footer ---------- */
.footer { background: var(--purple-dark); color: rgba(255,255,255,0.8); padding-top: 60px; }
.footer .container { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 40px; align-items: start; }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 18px; font-weight: 800; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 36px; height: 3px; border-radius: 3px; background: var(--teal); }
.footer .brand-foot img { height: 58px; width: auto; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 16px; }
.footer .brand-foot p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; max-width: 320px; }
.footer a { color: rgba(255,255,255,0.82); display: block; padding: 6px 0; transition: color 0.15s; }
.footer a:hover { color: var(--gold-soft); }
/* عمود التواصل: محاذاة الأيقونة مع النص ومسافات متناسقة */
.footer .foot-contact a, .footer .foot-contact p {
  display: flex; align-items: center; gap: 8px; margin: 0; padding: 6px 0;
  color: rgba(255,255,255,0.82); font-size: 0.95rem;
}
.footer .foot-contact span:first-child { flex: none; width: 20px; text-align: center; }
.footer .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.12);
  display: grid; place-items: center; padding: 0; transition: background 0.15s, transform 0.15s;
}
.footer .socials a:hover { background: var(--teal); transform: translateY(-3px); }
.footer .socials svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 44px; padding: 22px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 200;
  width: 62px; height: 62px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  animation: wapulse 2.4s infinite;
}
.wa-float svg { width: 34px; height: 34px; fill: #fff; }
@keyframes wapulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

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

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero .container, .feature .container, .doctor .container { grid-template-columns: 1fr; }
  .feature.reverse .container { direction: rtl; }
  .hero-visual { order: -1; max-width: 440px; margin: 0 auto; }
  .doctor-photo { max-width: 360px; margin: 0 auto; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-card .offer-img { height: 260px; }
  .footer .container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .brand-foot { grid-column: 1 / -1; }
  /* القائمة المنسدلة تبدأ من اللوحي لتجنّب ازدحام الهيدر */
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; inset-inline: 0;
    background: #fff; padding: 18px 24px; gap: 14px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  section { padding: 44px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .lead-form .row2 { grid-template-columns: 1fr; }

  /* الفوتر على الجوال: متراص — عمودان + شعار فوق بعرض كامل */
  .footer { text-align: center; padding-top: 44px; }
  .footer .container { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .footer .brand-foot { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; }
  .footer .brand-foot img { height: 50px; margin-bottom: 12px; }
  .footer .brand-foot p { max-width: 300px; font-size: 0.9rem; }
  .footer h4 { padding-bottom: 10px; margin-bottom: 14px; font-size: 1.02rem; }
  .footer h4::after { position: static; display: block; margin: 8px auto 0; }
  .footer .foot-contact a[data-social] { display: none; } /* السوشيال موجود كأيقونات فوق */
  .footer .foot-contact a, .footer .foot-contact p { justify-content: center; font-size: 0.86rem; }
  .footer .col-links a { font-size: 0.92rem; }
  .footer .socials { justify-content: center; margin-top: 12px; }
  .footer-bottom { margin-top: 28px; }

  .hero-trust { gap: 18px; }
  .lead-card, .offer-body { padding: 24px; }
}

/* =====================================================================
   صفحة الهبوط المقنعة — أقسام إضافية
   ===================================================================== */

/* ---- الباقات/العروض المتعددة ---- */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.deal {
  background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
  border: 1px solid var(--line); display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.deal:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.deal.popular { border: 2px solid var(--gold); }
.deal .tag-pop {
  position: absolute; top: 14px; inset-inline-start: -34px; transform: rotate(-45deg);
  background: var(--gold); color: #fff; font-weight: 700; font-size: 0.78rem; padding: 4px 40px;
}
.deal h3 { color: var(--purple-dark); font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.deal .sub { color: var(--ink-soft); font-size: 0.92rem; min-height: 40px; }
.deal .price { margin: 14px 0 6px; }
.deal .price .now { font-size: 2rem; font-weight: 800; color: var(--purple); }
.deal .price .now small { font-size: 0.9rem; }
.deal .price .was { color: #b94a4a; text-decoration: line-through; margin-inline-start: 8px; font-size: 1.05rem; opacity: 0.8; }
.deal .price .ask { font-size: 1.15rem; font-weight: 700; color: var(--teal-dark); }
.deal ul { list-style: none; margin: 12px 0 18px; flex: 1; }
.deal ul li { padding: 6px 0; display: flex; gap: 9px; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.deal ul li::before { content: "✦"; color: var(--teal); }

/* ---- قسم الفيديو ---- */
.videos { background: var(--bg-alt); }
.video-main {
  max-width: 760px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #000; border: 6px solid #fff;
}
.video-main video { width: 100%; display: block; }
.video-note { text-align: center; color: var(--ink-soft); margin-top: 18px; }

/* ---- قبل / بعد ---- */
.ba { background: var(--surface); }
.ba-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ba-item {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(135deg, #f0e6ee, #e3eeeb); border: 1px dashed var(--purple-soft);
  display: grid; place-items: center; text-align: center;
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-item .ph { color: var(--purple-soft); padding: 16px; }
.ba-item .ph .ic { font-size: 2rem; display: block; margin-bottom: 6px; }
.ba-disc { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 18px; }

/* ---- لماذا نحن ---- */
.why { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); text-align: center; }
.why-card .ic { font-size: 2.2rem; margin-bottom: 12px; }
.why-card h4 { color: var(--purple-dark); font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---- خطوات الرحلة ---- */
.process { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { text-align: center; position: relative; padding: 0 10px; }
.step .num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--purple), var(--mauve)); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem; font-weight: 800;
}
.step h4 { color: var(--purple-dark); font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---- الأسئلة الشائعة ---- */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line); overflow: hidden; }
.faq-q {
  width: 100%; text-align: start; background: none; border: none; cursor: pointer;
  padding: 18px 22px; font-family: var(--font); font-weight: 700; font-size: 1.05rem; color: var(--purple-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .pm { color: var(--teal); font-size: 1.4rem; transition: transform 0.2s; flex: none; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--ink-soft); }
.faq-a div { padding: 0 22px 18px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ---- شريط CTA ثابت للجوال ---- */
.mobile-cta { display: none; }

/* ===== لوحي (Tablet) — عمودان ===== */
@media (max-width: 920px) {
  .offers-grid, .why-grid, .steps, .ba-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== جوال (Phone) — عمود واحد + تحسينات تجربة ===== *
   ملاحظة: هذا البلوك آخر بلوك عمداً ليتغلّب على بلوكات اللوحي أعلاه. */
@media (max-width: 640px) {
  /* كروت جمب بعض (عمودان) لتقصير الصفحة، والعروض تبقى عمود واحد لكثرة محتواها */
  .offers-grid { grid-template-columns: 1fr; }
  .why-grid, .steps { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* تصغير الكروت لتناسب الصفّين على الجوال */
  .service-card { padding: 18px 14px; }
  .service-card .ic { width: 46px; height: 46px; font-size: 1.4rem; margin-bottom: 12px; border-radius: 12px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.85rem; margin: 8px 0 12px; }
  .service-card .s-link { font-size: 0.85rem; }
  .why-card { padding: 20px 14px; }
  .why-card .ic { font-size: 1.9rem; margin-bottom: 8px; }
  .why-card h4 { font-size: 1rem; }
  .why-card p { font-size: 0.84rem; }
  .step { padding: 0 4px; }
  .step .num { width: 46px; height: 46px; font-size: 1.2rem; margin-bottom: 10px; }
  .step h4 { font-size: 1rem; }
  .step p { font-size: 0.85rem; }

  /* شريط CTA ثابت أسفل الشاشة */
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: fixed; bottom: 0; inset-inline: 0;
    z-index: 190; box-shadow: 0 -6px 20px rgba(78,28,70,0.18);
  }
  .mobile-cta a { padding: 16px; text-align: center; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.05rem; }
  .mobile-cta .m-wa { background: var(--wa); }
  .mobile-cta .m-call { background: var(--purple); }
  .mobile-cta svg { width: 20px; height: 20px; fill: #fff; }
  body { padding-bottom: 60px; }

  /* تنظيف الهيدر: نخفي زر الواتساب (الشريط السفلي يغطيه) ونصغّر الشعار */
  .header .btn-wa { display: none; }
  .brand img { height: 44px; }
  .brand .brand-txt strong { font-size: 0.98rem; }
  .brand .brand-txt span { font-size: 0.72rem; }

  /* نخفي زر الواتساب العائم (مكرر مع الشريط السفلي) */
  .wa-float { display: none; }

  /* أزرار CTA كاملة العرض = أسهل ضغط، وبادينق أقل يمنع تقصّ النص */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .btn-lg { padding: 16px 18px; font-size: 1.05rem; }
  .btn { font-size: 1rem; }
  .hero-copy h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .hero-copy .lead { font-size: 1.05rem; }

  /* شارة الـHero: خط أصغر وحواف مستطيلة لتبدو متناسقة عند الالتفاف */
  .hero-copy .badge { font-size: 0.78rem; border-radius: 14px; line-height: 1.5; padding: 8px 14px; }

  /* بطاقة التقييم العائمة: داخل الإطار وأصغر */
  .hero-visual .float-card { inset-inline-start: 10px; bottom: 12px; padding: 10px 14px; }
  .hero-visual .float-card .stars { font-size: 0.95rem; }

  /* شريط الثقة: عمودان مرتبان */
  .trustbar .container { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 10px; text-align: start; }
  .trustbar .ti { font-size: 0.9rem; gap: 8px; }
  .trustbar .ti .ic { font-size: 1.3rem; }

  /* صور الإثبات أصغر وقابلة للتمرير أفقياً */
  .proof-imgs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .proof-imgs img { height: 200px; flex: none; }

  /* مسافات أنعم */
  section { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .hero-trust { gap: 18px; }
  .lead-card, .offer-body { padding: 24px; }
}

/* ===== جوال صغير جداً (≤380px) ===== */
@media (max-width: 380px) {
  .countdown .cd { min-width: 0; flex: 1; }
  .countdown { gap: 7px; }
  .trustbar .container { grid-template-columns: 1fr; }
}

/* ---- قسم مقارنة تقنيات التضييق ---- */
.compare { background: var(--bg-alt); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.compare-card { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.compare-card .tag { display: inline-block; background: #eef6f3; color: var(--teal-dark); font-weight: 700; font-size: 0.82rem; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.compare-card h3 { color: var(--purple-dark); font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.compare-card ul { list-style: none; }
.compare-card li { padding: 9px 0; display: flex; gap: 11px; align-items: flex-start; color: var(--ink); font-size: 1rem; }
.compare-card li::before { content: "✓"; color: #fff; background: var(--teal); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 0.74rem; flex: none; margin-top: 3px; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }

/* ---- شارات وسائل الدفع (تقسيط) ---- */
.pay-badges { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 16px; }
.pay-badge { height: 56px; display: inline-flex; align-items: center; justify-content: center; padding: 0 30px; border-radius: 14px; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.5px; box-shadow: var(--shadow); }
.pay-badge.tabby { background: linear-gradient(135deg, #3ef0b6, #1ed79a); color: #15181d; }
.pay-badge.tamara { background: linear-gradient(120deg, #f7d98c, #f0ab8e, #e7a6c4, #b9a9e3, #a9c8e8); color: #1b1b2c; font-weight: 700; }

/* ---- الصفحات القانونية (خصوصية/شروط) ---- */
.legal { padding: 56px 0 70px; }
.legal .container { max-width: 820px; }
.legal h1 { color: var(--purple-dark); font-size: clamp(1.8rem, 5vw, 2.4rem); font-weight: 800; margin-bottom: 6px; }
.legal .updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 30px; }
.legal h2 { color: var(--purple); font-size: 1.3rem; font-weight: 800; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink); font-size: 1.02rem; line-height: 1.95; }
.legal ul { padding-inline-start: 22px; margin: 8px 0 4px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--teal-dark); font-weight: 700; }
.legal .back { display:inline-flex; align-items:center; gap:6px; color: var(--purple); font-weight:700; margin-top: 26px; }

/* ---- بطاقات الباقات (بوستر + التفاصيل بجانبه) ---- */
.pkg-list { display: grid; gap: 26px; max-width: 1000px; margin: 36px auto 0; }
.pkg-row { display: grid; grid-template-columns: 290px 1fr; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform 0.2s, box-shadow 0.2s; }
.pkg-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-row.popular { border: 2px solid var(--gold); }
.pkg-row .poster { background: var(--bg-alt); display: block; overflow: hidden; }
.pkg-row .poster img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.pkg-body { padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
.pkg-body .ribbon { align-self: flex-start; background: var(--gold); color: #fff; font-weight: 700; padding: 5px 14px; border-radius: 60px; font-size: 0.8rem; margin-bottom: 12px; }
.pkg-body h3 { font-size: 1.5rem; color: var(--purple-dark); font-weight: 800; }
.pkg-body .pkg-tag { color: var(--teal-dark); font-weight: 700; margin: 4px 0 14px; font-size: 1rem; }
.pkg-body .incl { list-style: none; margin: 0 0 16px; }
.pkg-body .incl li { padding: 5px 0; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; }
.pkg-body .incl li::before { content: "✦"; color: var(--teal); font-weight: 800; flex: none; }
.pkg-body .price-row { margin: 0 0 16px; }
@media (max-width: 760px) {
  .pkg-row { grid-template-columns: 1fr; }
  .pkg-row .poster img { height: 300px; }
  .pkg-body { padding: 22px 22px 26px; }
}

/* ---- ريلز الفيديو (شريط أفقي) ---- */
.reels-strip { display: flex; gap: 18px; overflow-x: auto; padding: 6px 2px 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.reels-strip::-webkit-scrollbar { height: 8px; }
.reels-strip::-webkit-scrollbar-thumb { background: var(--mauve); border-radius: 8px; }
.reels-strip::-webkit-scrollbar-track { background: var(--line); border-radius: 8px; }
.reel { position: relative; flex: 0 0 auto; width: 264px; aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff; background: #000; scroll-snap-align: center; }
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reels-hint { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 4px; }
@media (max-width: 640px) { .reel { width: 208px; } }

/* ---- اختبار: اكتشفي باقتكِ المثالية ---- */
.quiz { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); color: #fff; }
.quiz .section-head h2 { color: #fff; }
.quiz-card { max-width: 700px; margin: 0 auto; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); padding: 32px; backdrop-filter: blur(6px); }
.quiz-progress { height: 6px; background: rgba(255,255,255,0.18); border-radius: 6px; margin-bottom: 24px; overflow: hidden; }
.quiz-progress span { display: block; height: 100%; width: 50%; background: var(--gold); border-radius: 6px; transition: width 0.35s ease; }
.q-title { font-size: 1.4rem; font-weight: 800; text-align: center; margin-bottom: 20px; }
.q-options { display: grid; gap: 12px; }
.q-opt { background: #fff; color: var(--ink); border: 2px solid transparent; border-radius: 14px; padding: 15px 18px; font-family: inherit; font-size: 1.05rem; font-weight: 700; cursor: pointer; text-align: start; transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s; display: flex; align-items: center; gap: 12px; }
.q-opt:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.q-opt .e { font-size: 1.5rem; flex: none; }
.q-result { display: none; text-align: center; }
.q-result.show { display: block; animation: qpop 0.45s ease; }
@keyframes qpop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.q-result .rlabel { color: var(--gold-soft); font-weight: 700; margin-bottom: 12px; }
.q-result img { width: 190px; border-radius: 16px; box-shadow: var(--shadow-lg); margin: 0 auto 16px; border: 4px solid #fff; display: block; }
.q-result h3 { font-size: 1.6rem; font-weight: 800; }
.q-result .rprice { font-size: 1.9rem; font-weight: 800; color: var(--gold-soft); margin: 6px 0 18px; }
.q-restart { background: none; border: none; color: rgba(255,255,255,0.85); text-decoration: underline; cursor: pointer; margin-top: 16px; font-family: inherit; font-size: 0.9rem; }

/* ---- حاسبة التقسيط ---- */
.calc { background: var(--bg-alt); }
.calc-wrap { max-width: 680px; margin: 36px auto 0; }
.calc-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.calc-chip { background: #fff; border: 2px solid var(--line); border-radius: 60px; padding: 10px 18px; font-family: inherit; font-weight: 700; color: var(--ink); cursor: pointer; font-size: 0.95rem; transition: 0.15s; }
.calc-chip:hover { border-color: var(--mauve); }
.calc-chip.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.calc-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 32px; text-align: center; border: 1px solid var(--line); }
.calc-card .cname { color: var(--purple-dark); font-weight: 800; font-size: 1.3rem; }
.calc-card .cfull { color: var(--ink-soft); margin: 6px 0 18px; }
.calc-card .cfull b { color: var(--ink); font-size: 1.1rem; }
.calc-split { background: var(--bg-alt); border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.calc-split .clabel { color: var(--teal-dark); font-weight: 700; margin-bottom: 4px; }
.calc-split .cper { font-size: 2.4rem; font-weight: 800; color: var(--purple); line-height: 1.1; }
.calc-split .cper small { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.calc-badges { display: flex; gap: 10px; justify-content: center; margin: 14px 0 18px; }
.calc-note { color: var(--ink-soft); font-size: 0.84rem; margin-top: 12px; }
@media (max-width: 640px) { .calc-split .cper { font-size: 2rem; } .calc-card { padding: 24px; } }

/* ---- نفسية السعر: سطر التقسيط أسفل سعر الباقة ---- */
.pkg-inst { display: block; font-size: 0.82rem; color: var(--teal-dark); font-weight: 700; margin-top: 3px; }
.doctor-quote { border-inline-start: 3px solid var(--gold); padding-inline-start: 14px; margin: 6px 0 18px; font-style: italic; color: var(--purple-dark); font-weight: 600; line-height: 1.7; }
.hero-rea { margin-top: 14px; font-size: 0.84rem; color: var(--ink-soft); font-weight: 600; }

/* ---- تأطير القيمة: سعر مشطوب + توفير ---- */
.price-row .was { text-decoration: line-through; color: var(--ink-soft); font-size: 1.02rem; font-weight: 700; margin-inline-end: 8px; vertical-align: middle; }
.price-row .save { display: inline-block; background: #fdecee; color: #c0392b; font-weight: 800; font-size: 0.76rem; padding: 3px 10px; border-radius: 20px; margin-inline-start: 8px; vertical-align: middle; }

/* ---- بانر الهدية + عدّاد الإلحاح ---- */
.offer-banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 18px; text-align: center; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff; border-radius: var(--radius); padding: 18px 22px; margin-bottom: 30px; font-weight: 600; box-shadow: var(--shadow-lg); }
.offer-banner b { color: var(--gold-soft); }
.offer-banner .cd { background: rgba(255,255,255,0.16); border-radius: 10px; padding: 5px 14px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: 0.5px; white-space: nowrap; }
.offer-banner a { background: #fff; color: var(--purple-dark); padding: 10px 20px; border-radius: 30px; font-weight: 800; text-decoration: none; white-space: nowrap; transition: transform 0.15s; }
.offer-banner a:hover { transform: translateY(-2px); }

/* ---- ريل مميّز (من العمليات) ---- */
.reel.featured { position: relative; width: 300px; border-color: var(--gold); box-shadow: 0 16px 40px rgba(0,0,0,0.28); }
.reel-badge { position: absolute; top: 10px; inset-inline-start: 10px; z-index: 3; background: var(--gold); color: #fff; font-weight: 800; font-size: 0.74rem; padding: 5px 12px; border-radius: 30px; box-shadow: var(--shadow); pointer-events: none; }
@media (max-width: 640px) { .reel.featured { width: 240px; } }

/* ===== CTA band (حجز موعد) ===== */
.cta-band { background: linear-gradient(135deg, #f9f3f8, #f1e6ef); border-block: 1px solid var(--line, #e6dce4); padding: 40px 16px; text-align: center; }
.cta-band h3 { color: var(--purple-dark, #4e1c46); font-size: 1.45rem; margin-bottom: 6px; }
.cta-band p { color: #6b6072; margin-bottom: 18px; }
.cta-band .btn { min-width: 270px; }
/* السعر حسب الحالة */
.price-row .case-price { font-weight: 800; color: var(--purple-dark, #4e1c46); font-size: 1.02rem; }
/* نبض خفيف لزر الواتساب بالشريط السفلي */
@keyframes waPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } }
.mobile-cta .m-wa { animation: waPulse 2.4s infinite; }
