/*
 * Kunuz Al-Quran — main.css (حزمة الأقسام الثابتة الموحّدة)
 * مُجمّعة من مكونات GP Elements — تُحمَّل فقط عند تفعيل KUNUZ_THEME_SECTIONS
 * ملاحظة: أقسام البرامج/المعلمين الديناميكية لها ملفات CSS مستقلة
 */

:root {
  --kunuz-navy: #1A2535;
  --kunuz-gold: #C9A84C;
}

/* ══════════════ SECTION: top-bar ══════════════ */
.kztb {
  background: #111B28;
  height: 44px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,.18);
  z-index: 9998;
  transition: height .35s ease, opacity .35s ease;
}
.kztb::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #C9A84C 30%, #E0C56A 50%, #C9A84C 70%, transparent 100%);
  opacity: .8;
}
.kztb.is-closed {
  height: 0;
  opacity: 0;
  border-bottom: none;
  pointer-events: none;
}
.kztb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── الشعار ── */
.kztb__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
}
.kztb__brand-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg,#C9A84C,#E0C56A);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kztb__brand-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}
.kztb__brand-name em { font-style: normal; color: #C9A84C; }

/* ── الشرائح ── */
.kztb__ticker {
  flex: 1;
  position: relative;
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-width: 0;
}
.kztb__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .32s ease, transform .32s ease;
  pointer-events: none;
  padding: 0 8px;
  white-space: nowrap;
  will-change: opacity, transform;
}
.kztb__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.kztb__slide.is-exit {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .22s ease, transform .22s ease;
}
.kztb__text {
  font-size: 13.5px;
  font-weight: 700;
  color: #E8EDF3;
  letter-spacing: .1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kztb__text em {
  font-style: normal;
  color: #C9A84C;
  font-weight: 800;
}
.kztb__pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.32);
  color: #C9A84C;
  font-family: 'Cairo', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 11px;
  border-radius: 50px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.kztb__pill:hover {
  background: rgba(201,168,76,.24);
  border-color: rgba(201,168,76,.55);
  color: #E0C56A;
}

/* ── الضوابط ── */
.kztb__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.kztb__dots {
  display: flex;
  align-items: center;
  gap: 5px;
}
.kztb__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, transform .3s, width .3s;
  flex-shrink: 0;
}
.kztb__dot.is-active {
  background: #C9A84C;
  width: 14px;
  border-radius: 3px;
}
.kztb__dot:hover:not(.is-active) {
  background: rgba(255,255,255,.45);
  transform: scale(1.2);
}
.kztb__close {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  flex-shrink: 0;
  padding: 0;
}
.kztb__close:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .kztb__brand { display: none; }
}
@media (max-width: 640px) {
  .kztb { height: 40px; }
  .kztb__inner { height: 40px; padding: 0 12px; gap: 8px; }
  .kztb__dots  { display: none; }
  .kztb__pill  { display: none; }
  .kztb__text  { font-size: 12.5px; }
  .kztb__close { width: 20px; height: 20px; }
  .kztb__slide { transition: opacity .22s ease, transform .22s ease; }
  .kztb__slide.is-exit { transition: opacity .15s ease, transform .15s ease; }
}
@media (max-width: 400px) {
  .kztb__text { font-size: 12px; letter-spacing: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .kztb__slide,
  .kztb__slide.is-exit { transition: opacity .15s linear !important; transform: none !important; }
  .kztb__dot { transition: background .15s, width .15s; }
}
@media print { .kztb { display: none; } }

/* ══════════════ SECTION: header-nav ══════════════ */
.kunuz-nav {
  position: sticky;
  top: 0;
  z-index: 9997;
  background: #1A2535;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.kunuz-nav.scrolled {
  background: #111B28;
  border-bottom-color: rgba(201,168,76,0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.kunuz-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ══ اللوجو ══ */
.kunuz-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.kunuz-nav__logo-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg,#C9A84C,#E0C56A);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.kunuz-nav__logo:hover .kunuz-nav__logo-icon { transform: rotate(-5deg) scale(1.05); }
.kunuz-nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.kunuz-nav__logo-ar {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
}
.kunuz-nav__logo-ar span { color: #C9A84C; }
.kunuz-nav__logo-en {
  font-size: 10px;
  font-weight: 600;
  color: rgba(201,168,76,0.6);
  letter-spacing: 0.4px;
}

/* ══ روابط الناف ══ */
.kunuz-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}
.kunuz-nav__links a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.kunuz-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 3px; right: 50%; left: 50%;
  height: 2px;
  background: #C9A84C;
  border-radius: 2px;
  transition: right 0.25s, left 0.25s;
}
.kunuz-nav__links a:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.06);
}
.kunuz-nav__links a:hover::after,
.kunuz-nav__links a.active::after { right: 10%; left: 10%; }
.kunuz-nav__links a.active { color: #C9A84C; }

/* ══ زر CTA وحيد ══ */
.kunuz-nav__actions { flex-shrink: 0; }

.kunuz-nav__btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#C9A84C 0%,#E0C56A 50%,#B0912D 100%);
  background-size: 200% auto;
  color: #111B28;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 16px rgba(201,168,76,0.3);
  white-space: nowrap;
}
.kunuz-nav__btn-cta:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
}

/* ══ هامبرغر ══ */
.kunuz-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.kunuz-nav__hamburger:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
}
.kunuz-nav__hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #FFFFFF;
  transition: width 0.3s;
}
.kunuz-nav__hamburger span:nth-child(1) { width: 22px; }
.kunuz-nav__hamburger span:nth-child(2) { width: 15px; }
.kunuz-nav__hamburger span:nth-child(3) { width: 22px; }
.kunuz-nav__hamburger:hover span { width: 22px; }

/* ══ Overlay ══ */
.kunuz-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.kunuz-nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ══ موبايل بانال ══ */
.kunuz-nav__mobile {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 92vw);
  height: 100dvh;
  background: #1A2535;
  border-left: 1px solid rgba(201,168,76,0.15);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.kunuz-nav__mobile.open { right: 0; }

/* رأس البانال */
.kunuz-nav__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
}
.kunuz-nav__mobile-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.kunuz-nav__mobile-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg,#C9A84C,#E0C56A);
  display: flex; align-items: center; justify-content: center;
}
.kunuz-nav__mobile-logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.kunuz-nav__mobile-logo-ar {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
}
.kunuz-nav__mobile-logo-ar span { color: #C9A84C; }
.kunuz-nav__mobile-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: #94A3B8;
  flex-shrink: 0;
}
.kunuz-nav__mobile-close:hover {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.25);
  color: #EF4444;
}

/* روابط الموبايل */
.kunuz-nav__mobile-links {
  list-style: none;
  padding: 16px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kunuz-nav__mobile-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s, padding-right 0.2s;
  border: 1px solid transparent;
}
.kunuz-nav__mobile-links li a:hover,
.kunuz-nav__mobile-links li a.active {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.15);
  color: #C9A84C;
  padding-right: 20px;
}
.kunuz-nav__mobile-link-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.kunuz-nav__mobile-links li a:hover .kunuz-nav__mobile-link-icon,
.kunuz-nav__mobile-links li a.active .kunuz-nav__mobile-link-icon {
  background: rgba(201,168,76,0.12);
}

/* زر CTA الموبايل */
.kunuz-nav__mobile-btns {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.kunuz-nav__mobile-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg,#C9A84C 0%,#E0C56A 50%,#B0912D 100%);
  background-size: 200% auto;
  color: #111B28;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(201,168,76,0.3);
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
}
.kunuz-nav__mobile-btn-cta:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}

/* حقوق الملكية */
.kunuz-nav__mobile-copy {
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  flex-shrink: 0;
}
.kunuz-nav__mobile-copy p {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin: 0;
  line-height: 1.7;
}
.kunuz-nav__mobile-copy span { color: #C9A84C; }

/* ══ Responsive ══ */
@media (max-width: 1024px) {
  .kunuz-nav__links { display: none; }
  .kunuz-nav__actions { display: none; }
  .kunuz-nav__hamburger { display: flex; }
}
@media print { .kunuz-nav, .kunuz-nav__mobile, .kunuz-nav__overlay { display: none; } }

/* ══════════════ SECTION: hero ══════════════ */
.kunuz-hero {
  background: #1A2535;
  position: relative;
  overflow: hidden;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  padding: 80px 0 90px;
}

/* ══ خلفية آيات قرآنية ══ */
.kunuz-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.kunuz-hero__ayah-track {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  top: 0; left: 0;
  height: 100%;
}
.kunuz-hero__ayah-row {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 25%;
  animation: kunuz-scroll-rtl 38s linear infinite;
  opacity: 0.055;
}
.kunuz-hero__ayah-row:nth-child(2) { animation-direction: reverse; animation-duration: 45s; opacity: 0.04; }
.kunuz-hero__ayah-row:nth-child(3) { animation-duration: 52s; opacity: 0.05; }
.kunuz-hero__ayah-row:nth-child(4) { animation-direction: reverse; animation-duration: 40s; opacity: 0.035; }
.kunuz-hero__ayah-text {
  font-family: 'Amiri', serif;
  font-size: clamp(22px, 3vw, 36px);
  color: #C9A84C;
  letter-spacing: 0.03em;
  padding: 0 60px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}
@keyframes kunuz-scroll-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.kunuz-hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.kunuz-hero__glow2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,100,180,0.06) 0%, transparent 65%);
  bottom: -100px; left: 5%;
}

/* ══ Layout ══ */
.kunuz-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ══ Badge ══ */
.kunuz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #C9A84C;
  margin-bottom: 24px;
  animation: kunuz-fadeDown 0.6s ease both;
}
.kunuz-hero__badge-dot {
  width: 6px; height: 6px;
  background: #C9A84C;
  border-radius: 50%;
  animation: kunuz-pulse-dot 1.8s ease infinite;
}
@keyframes kunuz-pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}

/* ══ H1 ══ */
.kunuz-hero__h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0 0 20px;
  animation: kunuz-fadeDown 0.7s ease 0.1s both;
}
.kunuz-hero__h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #C9A84C, #E0C56A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══ وصف ══ */
.kunuz-hero__desc {
  font-size: 15.5px;
  color: #94A3B8;
  line-height: 1.85;
  margin: 0 0 28px;
  animation: kunuz-fadeDown 0.7s ease 0.2s both;
}

/* ══ ميزات ══ */
.kunuz-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: kunuz-fadeDown 0.7s ease 0.3s both;
}
.kunuz-hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 7px 13px;
}
.kunuz-hero__feature svg { color: #C9A84C; flex-shrink: 0; }

/* ══ أزرار ══ */
.kunuz-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  animation: kunuz-fadeDown 0.7s ease 0.4s both;
}

/* زر واتساب رئيسي */
.kunuz-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 22px rgba(37,211,102,0.35);
}
.kunuz-hero__cta-primary:hover {
  background: #1aad52;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* زر البرامج ثانوي */
.kunuz-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.08);
  color: #C9A84C;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(201,168,76,0.28);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.kunuz-hero__cta-secondary:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

/* ══ شريط ثقة ══ */
.kunuz-hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: kunuz-fadeDown 0.7s ease 0.5s both;
}
.kunuz-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kunuz-hero__trust-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kunuz-hero__trust-num {
  font-size: 20px;
  font-weight: 800;
  color: #C9A84C;
  line-height: 1;
}
.kunuz-hero__trust-label {
  font-size: 11.5px;
  color: #94A3B8;
  line-height: 1.35;
}
.kunuz-hero__trust-sep {
  width: 1px; height: 36px;
  background: rgba(148,163,184,0.18);
}

/* ══ البطاقة ══ */
.kunuz-hero__card {
  background: linear-gradient(145deg, #243347 0%, #1e2d40 100%);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  animation: kunuz-fadeLeft 0.8s ease 0.3s both;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), inset 0 1px 0 rgba(201,168,76,0.1);
}
.kunuz-hero__float-badge {
  position: absolute;
  top: -16px; left: 28px;
  background: linear-gradient(135deg, #C9A84C, #E0C56A);
  color: #111B28;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  padding: 7px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.kunuz-hero__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 22px;
  display: flex; align-items: center; gap: 10px;
}
.kunuz-hero__card-title::before {
  content: '';
  width: 4px; height: 22px;
  background: linear-gradient(180deg, #C9A84C, #E0C56A);
  border-radius: 2px;
  flex-shrink: 0;
}
.kunuz-hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kunuz-hero__card-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(15,25,40,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 13px 14px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.kunuz-hero__card-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.07);
  transform: translateY(-3px);
}
.kunuz-hero__card-item:hover .kunuz-ci { transform: scale(1.1); }
.kunuz-ci {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.kunuz-ci--gold   { background: linear-gradient(135deg,rgba(201,168,76,.22),rgba(201,168,76,.08)); }
.kunuz-ci--green  { background: linear-gradient(135deg,rgba(34,197,94,.22),rgba(34,197,94,.08)); }
.kunuz-ci--blue   { background: linear-gradient(135deg,rgba(59,130,246,.22),rgba(59,130,246,.08)); }
.kunuz-ci--purple { background: linear-gradient(135deg,rgba(168,85,247,.22),rgba(168,85,247,.08)); }
.kunuz-ci--indigo { background: linear-gradient(135deg,rgba(99,102,241,.22),rgba(99,102,241,.08)); }
.kunuz-ci--amber  { background: linear-gradient(135deg,rgba(245,158,11,.22),rgba(245,158,11,.08)); }
.kunuz-hero__card-item-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #CBD5E1;
  line-height: 1.4;
}
.kunuz-hero__card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kunuz-hero__card-footer-text { font-size: 12px; color: #94A3B8; }
.kunuz-hero__card-footer-text strong { color: #C9A84C; }
.kunuz-hero__card-rating { display: flex; align-items: center; gap: 3px; }
.kunuz-hero__card-rating svg { color: #F4C430; }
.kunuz-hero__card-rating span { font-size: 12px; font-weight: 700; color: #fff; margin-right: 3px; }

/* ══ Animations ══ */
@keyframes kunuz-fadeDown {
  from { opacity:0; transform:translateY(-18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes kunuz-fadeLeft {
  from { opacity:0; transform:translateX(28px); }
  to   { opacity:1; transform:translateX(0); }
}

/* ══════════════════════════════
   📱 MOBILE STYLES
══════════════════════════════ */
@media (max-width: 1024px) {
  .kunuz-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .kunuz-hero {
    padding: 44px 0 56px;
  }
  .kunuz-hero__inner {
    padding: 0 16px;
    gap: 36px;
  }
  .kunuz-hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .kunuz-hero__badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 18px;
  }
  .kunuz-hero__h1 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: center;
  }
  .kunuz-hero__desc {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 22px;
  }
  .kunuz-hero__features {
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
  }
  .kunuz-hero__feature {
    font-size: 12.5px;
    padding: 6px 12px;
  }
  .kunuz-hero__ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
  }
  .kunuz-hero__cta-primary,
  .kunuz-hero__cta-secondary {
    justify-content: center;
    width: 100%;
    font-size: 15px;
    padding: 15px 20px;
    border-radius: 14px;
  }
  .kunuz-hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .kunuz-hero__trust-sep { display: none; }
  .kunuz-hero__trust-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 12px;
    gap: 10px;
    justify-content: flex-start;
  }
  .kunuz-hero__trust-icon { width: 34px; height: 34px; border-radius: 9px; }
  .kunuz-hero__trust-num { font-size: 18px; }
  .kunuz-hero__trust-label { font-size: 11px; }
  .kunuz-hero__card {
    width: 100%;
    max-width: 100%;
    padding: 32px 16px 24px;
    border-radius: 20px;
    box-sizing: border-box;
  }
  .kunuz-hero__float-badge {
    font-size: 12px;
    padding: 7px 16px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .kunuz-hero__card-title {
    font-size: 16px;
    margin-bottom: 18px;
    justify-content: center;
  }
  .kunuz-hero__card-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .kunuz-hero__card-item {
    padding: 16px 18px;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  .kunuz-ci { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; }
  .kunuz-ci svg { width: 24px !important; height: 24px !important; }
  .kunuz-hero__card-item-text { font-size: 15px; font-weight: 700; }
  .kunuz-hero__card-footer { margin-top: 16px; padding-top: 14px; }
  .kunuz-hero__ayah-text { font-size: 17px; }
}

@media (max-width: 380px) {
  .kunuz-hero__h1 { font-size: 22px; }
  .kunuz-hero__cta-primary,
  .kunuz-hero__cta-secondary { font-size: 14px; padding: 13px 16px; }
  .kunuz-hero__card-item-text { font-size: 14px; }
}

@media print { .kunuz-hero { display: none; } }

/* ══════════════ SECTION: why-us ══════════════ */
.kunuz-why {
  background: #1A2535;
  padding: 100px 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}
.kunuz-why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}
.kunuz-why__bg-deco {
  position: absolute;
  font-family: 'Amiri', serif;
  font-size: 380px;
  color: rgba(201,168,76,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.kunuz-why__glow-1 {
  position: absolute;
  top: -150px; right: -100px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.kunuz-why__glow-2 {
  position: absolute;
  bottom: -150px; left: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.kunuz-why__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ══ رأس القسم ══ */
.kunuz-why__head {
  text-align: center;
  margin-bottom: 70px;
}
.kunuz-why__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 20px;
}
.kunuz-why__badge-dot {
  width: 7px; height: 7px;
  background: #C9A84C;
  border-radius: 50%;
  animation: kunuz-why-pulse 1.8s ease-in-out infinite;
}
@keyframes kunuz-why-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.7); }
}
.kunuz-why__h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 18px;
  line-height: 1.25;
}
.kunuz-why__h2 em { font-style: normal; color: #C9A84C; }
.kunuz-why__desc {
  font-size: 17px;
  font-weight: 600;
  color: #94A3B8;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
}

/* ══ الشبكة ══ */
.kunuz-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* ══ البطاقة — توسيط كامل ══ */
.kunuz-why__card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              background 0.35s, border-color 0.35s, box-shadow 0.35s;
  cursor: default;
  /* ═══ التوسيط ═══ */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.kunuz-why__card.kunuz-why-vis {
  opacity: 1;
  transform: translateY(0);
}
.kunuz-why__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.1);
}
.kunuz-why__card.kunuz-why-vis:hover { transform: translateY(-6px); }

.kunuz-why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  opacity: 0;
  transition: opacity 0.35s, left 0.35s, right 0.35s;
}
.kunuz-why__card:hover::before { opacity: 1; left: 10%; right: 10%; }

/* ── أيقونة ── */
.kunuz-why__card-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s;
}
.kunuz-why__card:hover .kunuz-why__card-icon { transform: scale(1.1) rotate(-6deg); }
.kunuz-why__card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.35s;
}
.kunuz-why__card:hover .kunuz-why__card-icon::after { opacity: 1; }

/* ── عنوان ── */
.kunuz-why__card-title {
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 12px;
  line-height: 1.3;
  transition: color 0.3s;
}
.kunuz-why__card:hover .kunuz-why__card-title { color: #C9A84C; }

/* ── وصف ── */
.kunuz-why__card-desc {
  font-size: 15px;
  font-weight: 600;
  color: #64748B;
  line-height: 1.85;
  margin: 0 0 20px;
  transition: color 0.3s;
}
.kunuz-why__card:hover .kunuz-why__card-desc { color: #94A3B8; }

/* ── تاق ── */
.kunuz-why__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ألوان البطاقات */
.kunuz-why__card--gold .kunuz-why__card-icon  { background: rgba(201,168,76,0.12); }
.kunuz-why__card--gold .kunuz-why__card-icon::after { border: 1.5px solid rgba(201,168,76,0.2); }
.kunuz-why__card--gold .kunuz-why__card-tag   { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); color: #C9A84C; }

.kunuz-why__card--green .kunuz-why__card-icon { background: rgba(22,163,74,0.12); }
.kunuz-why__card--green .kunuz-why__card-icon::after { border: 1.5px solid rgba(22,163,74,0.2); }
.kunuz-why__card--green .kunuz-why__card-tag  { background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2); color: #4ADE80; }

.kunuz-why__card--blue .kunuz-why__card-icon  { background: rgba(37,99,235,0.12); }
.kunuz-why__card--blue .kunuz-why__card-icon::after { border: 1.5px solid rgba(37,99,235,0.2); }
.kunuz-why__card--blue .kunuz-why__card-tag   { background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2); color: #60A5FA; }

.kunuz-why__card--purple .kunuz-why__card-icon { background: rgba(124,58,237,0.12); }
.kunuz-why__card--purple .kunuz-why__card-icon::after { border: 1.5px solid rgba(124,58,237,0.2); }
.kunuz-why__card--purple .kunuz-why__card-tag  { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); color: #A78BFA; }

.kunuz-why__card--orange .kunuz-why__card-icon { background: rgba(234,88,12,0.12); }
.kunuz-why__card--orange .kunuz-why__card-icon::after { border: 1.5px solid rgba(234,88,12,0.2); }
.kunuz-why__card--orange .kunuz-why__card-tag  { background: rgba(234,88,12,0.08); border: 1px solid rgba(234,88,12,0.2); color: #FB923C; }

.kunuz-why__card--teal .kunuz-why__card-icon  { background: rgba(13,148,136,0.12); }
.kunuz-why__card--teal .kunuz-why__card-icon::after { border: 1.5px solid rgba(13,148,136,0.2); }
.kunuz-why__card--teal .kunuz-why__card-tag   { background: rgba(13,148,136,0.08); border: 1px solid rgba(13,148,136,0.2); color: #2DD4BF; }

/* ══ شريط الإحصائيات ══ */
.kunuz-why__stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.15);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
}
.kunuz-why__stat {
  background: rgba(17,27,40,0.8);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.kunuz-why__stat:hover { background: rgba(26,37,53,0.95); }
.kunuz-why__stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,#C9A84C,#E0C56A);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.kunuz-why__stat:hover::before { transform: scaleX(1); }
.kunuz-why__stat-num {
  font-size: clamp(34px,3.5vw,48px);
  font-weight: 900;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.kunuz-why__stat-label {
  font-size: 15px;
  font-weight: 700;
  color: #94A3B8;
  line-height: 1.5;
}
.kunuz-why__stat-sub {
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  margin-top: 4px;
  display: block;
}

/* ══ CTA ══ */
.kunuz-why__cta {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(201,168,76,0.18);
  border-radius: 24px;
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kunuz-why__cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,#C9A84C,#E0C56A,#C9A84C);
}
.kunuz-why__cta-title {
  font-size: clamp(22px,2.8vw,32px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 14px;
}
.kunuz-why__cta-title em { font-style:normal; color:#C9A84C; }
.kunuz-why__cta-desc {
  font-size: 16px;
  font-weight: 600;
  color: #64748B;
  margin: 0 0 32px;
  line-height: 1.8;
}
.kunuz-why__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,#C9A84C 0%,#E0C56A 50%,#B0912D 100%);
  background-size: 200% auto;
  color: #111B28;
  font-family: 'Cairo', sans-serif;
  font-size: 17px;
  font-weight: 900;
  padding: 17px 48px;
  border-radius: 14px;
  text-decoration: none;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
}
.kunuz-why__cta-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}

/* ══ Responsive ══ */
@media (max-width: 1024px) {
  .kunuz-why__grid { grid-template-columns: repeat(2,1fr); }
  .kunuz-why__stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .kunuz-why { padding: 68px 0; }
  .kunuz-why__head { margin-bottom: 48px; }
  .kunuz-why__grid { grid-template-columns: 1fr; gap: 16px; }
  .kunuz-why__card { padding: 28px 22px; }
  .kunuz-why__card-icon { width: 54px; height: 54px; border-radius: 16px; }
  .kunuz-why__card-title { font-size: 18px; }
  .kunuz-why__card-desc { font-size: 14.5px; }
  .kunuz-why__stats { grid-template-columns: repeat(2,1fr); border-radius: 18px; }
  .kunuz-why__stat { padding: 26px 16px; }
  .kunuz-why__stat-label { font-size: 13.5px; }
  .kunuz-why__cta { padding: 36px 20px; }
  .kunuz-why__cta-btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; }
}
@media print { .kunuz-why { display: none; } }

/* ══════════════ SECTION: testimonials ══════════════ */
.kunuz-reviews {
  background: #F8F9FA;
  padding: 90px 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}
.kunuz-reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.kunuz-reviews__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ══ رأس القسم ══ */
.kunuz-reviews__head {
  text-align: center;
  margin-bottom: 64px;
}
.kunuz-reviews__head-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #C9A84C;
  margin-bottom: 18px;
}
.kunuz-reviews__head-badge-dot {
  width: 6px; height: 6px;
  background: #C9A84C;
  border-radius: 50%;
}
.kunuz-reviews__h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #1A2535;
  margin: 0 0 16px;
  line-height: 1.3;
}
.kunuz-reviews__h2 em {
  font-style: normal;
  color: #C9A84C;
}
.kunuz-reviews__desc {
  font-size: 16px;
  color: #6B7280;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ══ شريط النجوم ══ */
.kunuz-reviews__rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.kunuz-reviews__rating-score {
  font-size: 52px;
  font-weight: 800;
  color: #1A2535;
  line-height: 1;
}
.kunuz-reviews__rating-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kunuz-reviews__stars {
  display: flex;
  gap: 3px;
}
.kunuz-reviews__stars svg { color: #F59E0B; }
.kunuz-reviews__rating-count {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

/* ══ الشبكة ══ */
.kunuz-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

/* ══ البطاقة ══ */
.kunuz-reviews__card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s, border-color 0.3s;
}
.kunuz-reviews__card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 72px;
  color: rgba(201,168,76,0.12);
  font-family: 'Amiri', serif;
  line-height: 1;
  pointer-events: none;
}
.kunuz-reviews__card:hover {
  box-shadow: 0 16px 48px rgba(26,37,53,0.09);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.kunuz-reviews__card.kunuz-r-visible {
  opacity: 1;
  transform: translateY(0);
}
.kunuz-reviews__card.kunuz-r-visible:hover {
  transform: translateY(-4px);
}

/* ── النجوم ── */
.kunuz-reviews__card-stars {
  display: flex;
  gap: 3px;
}

/* ── النص ── */
.kunuz-reviews__card-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.85;
  margin: 0;
  flex: 1;
  font-family: 'Cairo', sans-serif;
}

/* ── الراوي ── */
.kunuz-reviews__card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
}
.kunuz-reviews__card-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A2535, #243347);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
  color: #C9A84C;
}
.kunuz-reviews__card-info { flex: 1; }
.kunuz-reviews__card-name {
  font-size: 14px;
  font-weight: 800;
  color: #1A2535;
  margin: 0 0 2px;
}
.kunuz-reviews__card-role {
  font-size: 12.5px;
  color: #6B7280;
  font-weight: 500;
}
.kunuz-reviews__card-flag {
  font-size: 20px;
  line-height: 1;
}

/* ══ البطاقة المميزة (featured) ══ */
.kunuz-reviews__card--featured {
  background: linear-gradient(135deg, #1A2535, #243347);
  border-color: rgba(201,168,76,0.25);
}
.kunuz-reviews__card--featured .kunuz-reviews__card-text {
  color: #E2E8F0;
}
.kunuz-reviews__card--featured .kunuz-reviews__card-name {
  color: #FFFFFF;
}
.kunuz-reviews__card--featured .kunuz-reviews__card-role {
  color: #94A3B8;
}
.kunuz-reviews__card--featured .kunuz-reviews__card-author {
  border-top-color: rgba(255,255,255,0.08);
}
.kunuz-reviews__card--featured::before {
  color: rgba(201,168,76,0.18);
}
.kunuz-reviews__card--featured:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ══ شريط دول ══ */
.kunuz-reviews__countries {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.kunuz-reviews__countries-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #6B7280;
  white-space: nowrap;
}
.kunuz-reviews__countries-flags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.kunuz-reviews__country {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
}

/* ══ CTA ══ */
.kunuz-reviews__cta {
  text-align: center;
  background: linear-gradient(135deg, #1A2535, #243347);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.kunuz-reviews__cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E0C56A, #C9A84C);
}
.kunuz-reviews__cta-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.kunuz-reviews__cta-sub {
  font-size: 14.5px;
  color: #94A3B8;
  margin: 0 0 24px;
  line-height: 1.7;
}
.kunuz-reviews__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #C9A84C 0%, #E0C56A 50%, #B0912D 100%);
  background-size: 200% auto;
  color: #111B28;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 22px rgba(201,168,76,0.35);
}
.kunuz-reviews__cta-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

/* ══ Responsive ══ */
@media (max-width: 1024px) {
  .kunuz-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .kunuz-reviews { padding: 60px 0; }
  .kunuz-reviews__head { margin-bottom: 36px; }
  .kunuz-reviews__desc { font-size: 15px; }
  .kunuz-reviews__rating-score { font-size: 42px; }
  .kunuz-reviews__rating-bar { margin-bottom: 36px; }
  .kunuz-reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .kunuz-reviews__card { padding: 24px 20px; }
  .kunuz-reviews__card-text { font-size: 15px; }
  .kunuz-reviews__countries { padding: 18px 16px; gap: 8px; }
  .kunuz-reviews__cta { padding: 32px 20px; }
  .kunuz-reviews__cta-title { font-size: 18px; }
  .kunuz-reviews__cta-btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; }
}
@media print { .kunuz-reviews { display: none; } }

/* ══════════════ SECTION: pricing ══════════════ */
/* ═══ Variables ═══ */
:root {
  --kp6-bg:         #0E1C2E;
  --kp6-card:       #132032;
  --kp6-card-star:  #1a2e48;
  --kp6-gold:       #C9A84C;
  --kp6-gold-lt:    #E8D080;
  --kp6-gold-dk:    #A07830;
  --kp6-indigo:     #6366F1;
  --kp6-indigo-lt:  #A5B4FC;
  --kp6-green:      #22C55E;
  --kp6-green-lt:   #86EFAC;
  --kp6-text:       #F1F5F9;
  --kp6-muted:      #94A3B8;
  --kp6-dim:        #475569;
  --kp6-wa:         #25D366;
}

.kp6 {
  background: var(--kp6-bg);
  padding: 110px 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}

/* ── خلفية ديناميكية ── */
.kp6::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 10%, rgba(201,168,76,.07) 0%, transparent 60%),
    radial-gradient(ellipse 500px 350px at 10% 80%, rgba(99,102,241,.06) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 50% 110%, rgba(34,197,94,.04) 0%, transparent 60%);
  pointer-events: none;
}

/* خط ذهبي علوي */
.kp6::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--kp6-gold) 40%, var(--kp6-gold-lt) 50%, var(--kp6-gold) 60%, transparent 100%);
}

/* ديكور نص الخلفية */
.kp6__deco {
  position: absolute;
  font-family: 'Amiri', serif;
  font-size: 340px; font-weight: 700;
  color: rgba(201,168,76,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%,-52%);
  white-space: nowrap;
  pointer-events: none; user-select: none;
  letter-spacing: 0.1em;
}

.kp6__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; z-index: 1;
}

/* ═══ رأس القسم ═══ */
.kp6__head {
  text-align: center;
  margin-bottom: 52px;
}
.kp6__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 100px; padding: 7px 22px;
  font-size: 13.5px; font-weight: 800; color: var(--kp6-gold);
  letter-spacing: .4px; margin-bottom: 22px;
}
.kp6__badge-dot {
  width: 6px; height: 6px;
  background: var(--kp6-gold); border-radius: 50%;
  animation: kp6pulse 2s ease-in-out infinite;
}
@keyframes kp6pulse {
  0%,100%{ opacity:1; transform:scale(1) }
  50%    { opacity:.35; transform:scale(.65) }
}

.kp6__h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900; color: var(--kp6-text);
  margin: 0 0 16px; line-height: 1.2;
}
.kp6__h2 em { font-style: normal; color: var(--kp6-gold); }

.kp6__desc {
  font-size: 16.5px; font-weight: 600;
  color: var(--kp6-muted); line-height: 1.9;
  max-width: 520px; margin: 0 auto;
}

/* ═══ Toggle ═══ */
.kp6__toggle-wrap {
  display: flex; justify-content: center;
  margin-bottom: 56px;
}
.kp6__toggle {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 100px; padding: 5px; gap: 3px;
}
.kp6__tbtn {
  font-family: 'Cairo', sans-serif;
  font-size: 14px; font-weight: 800;
  color: var(--kp6-dim); background: transparent; border: none;
  border-radius: 100px; padding: 11px 28px;
  cursor: pointer; white-space: nowrap;
  transition: color .3s, background .3s, box-shadow .3s;
}
.kp6__tbtn:hover:not(.on) { color: var(--kp6-muted); }
.kp6__tbtn.on {
  background: linear-gradient(135deg, var(--kp6-gold) 0%, var(--kp6-gold-lt) 60%, var(--kp6-gold-dk) 100%);
  color: #0E1C2E; font-weight: 900;
  box-shadow: 0 4px 18px rgba(201,168,76,.38);
}

/* ═══ شبكة البطاقات ═══ */
.kp6__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
  align-items: start;
}

/* ═══ البطاقة الأساسية ═══ */
.kp6__card {
  border-radius: 28px;
  overflow: visible;
  display: flex; flex-direction: column;
  position: relative;
  opacity: 0; transform: translateY(32px);
  transition: opacity .55s cubic-bezier(.22,.68,0,1.2),
              transform .55s cubic-bezier(.22,.68,0,1.2);
}
.kp6__card.on { opacity: 1; transform: translateY(0); }

/* ── إطار داخلي ── */
.kp6__card-inner {
  background: var(--kp6-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  overflow: hidden;
  flex: 1; display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.22,.68,0,1.2),
              box-shadow .35s, border-color .35s;
}
.kp6__card:hover .kp6__card-inner {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

/* ── البطاقة المميزة (star) ── */
.kp6__card--star { margin-top: -10px; }
.kp6__card--star .kp6__card-inner {
  background: var(--kp6-card-star);
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 0 0 1px rgba(201,168,76,.1),
              0 12px 40px rgba(0,0,0,.4),
              0 0 80px rgba(201,168,76,.06);
}
.kp6__card--star:hover .kp6__card-inner {
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 0 0 1px rgba(201,168,76,.2),
              0 36px 80px rgba(0,0,0,.55),
              0 0 100px rgba(201,168,76,.1);
}

/* ── بادج شائع ── */
.kp6__popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--kp6-gold) 0%, var(--kp6-gold-lt) 50%, var(--kp6-gold-dk) 100%);
  color: #0E1C2E; font-family: 'Cairo', sans-serif;
  font-size: 12.5px; font-weight: 900;
  padding: 5px 20px; border-radius: 100px;
  white-space: nowrap; z-index: 10;
  box-shadow: 0 4px 16px rgba(201,168,76,.5),
              0 1px 0 rgba(255,255,255,.3) inset;
  letter-spacing: .5px;
}

/* ── شريط لوني ── */
.kp6__stripe {
  height: 3px; width: 100%; flex-shrink: 0;
}
.kp6__card--star   .kp6__stripe {
  background: linear-gradient(90deg, var(--kp6-gold-dk), var(--kp6-gold-lt), var(--kp6-gold), var(--kp6-gold-lt), var(--kp6-gold-dk));
  background-size: 200% auto;
  animation: kp6shimmer 3s linear infinite;
}
.kp6__card--group  .kp6__stripe { background: linear-gradient(90deg,#4338CA,#818CF8,#6366F1); }
.kp6__card--bundle .kp6__stripe { background: linear-gradient(90deg,#16A34A,#4ADE80,#22C55E); }
@keyframes kp6shimmer { 0%{background-position:0%} 100%{background-position:200%} }

/* ── رأس البطاقة ── */
.kp6__card-head {
  padding: 28px 26px 0;
}
.kp6__card--star .kp6__card-head { padding-top: 34px; }

/* أيقونة + اسم */
.kp6__card-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.kp6__icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s;
}
.kp6__card:hover .kp6__icon { transform: scale(1.12) rotate(-6deg); }

.kp6__card--star   .kp6__icon { background:linear-gradient(135deg,rgba(201,168,76,.25),rgba(201,168,76,.1)); border:1px solid rgba(201,168,76,.3); }
.kp6__card--group  .kp6__icon { background:linear-gradient(135deg,rgba(99,102,241,.25),rgba(99,102,241,.1)); border:1px solid rgba(99,102,241,.3); }
.kp6__card--bundle .kp6__icon { background:linear-gradient(135deg,rgba(34,197,94,.25),rgba(34,197,94,.1));  border:1px solid rgba(34,197,94,.3); }

.kp6__name {
  font-size: 20px; font-weight: 900;
  color: var(--kp6-text); margin: 0 0 4px; line-height: 1.2;
}
.kp6__sub {
  font-size: 13px; font-weight: 700;
  color: var(--kp6-dim);
}

/* ═══ زر السعر / CTA ═══ */
.kp6__cta-wrap {
  padding: 0 20px 22px;
}
.kp6__price-btn {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; border-radius: 18px;
  padding: 16px 20px;
  transition: transform .25s, box-shadow .25s, filter .25s;
  position: relative; overflow: hidden;
}
.kp6__price-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s;
}
.kp6__price-btn:hover { transform: translateY(-3px) scale(1.015); }
.kp6__price-btn:hover::after { background: rgba(255,255,255,.06); }

.kp6__card--star   .kp6__price-btn {
  background: linear-gradient(135deg, #B8922A 0%, var(--kp6-gold) 40%, var(--kp6-gold-lt) 65%, var(--kp6-gold-dk) 100%);
  background-size: 200% auto;
  box-shadow: 0 6px 28px rgba(201,168,76,.55), 0 1px 0 rgba(255,255,255,.2) inset;
}
.kp6__card--group  .kp6__price-btn {
  background: linear-gradient(135deg, #3730A3, #4F46E5, #6366F1);
  box-shadow: 0 6px 28px rgba(99,102,241,.45), 0 1px 0 rgba(255,255,255,.12) inset;
}
.kp6__card--bundle .kp6__price-btn {
  background: linear-gradient(135deg, #14532D, #16A34A, #22C55E);
  box-shadow: 0 6px 28px rgba(34,197,94,.4), 0 1px 0 rgba(255,255,255,.12) inset;
}
.kp6__price-btn:hover { background-position: right center; }

/* واتساب أيقونة */
.kp6__wa-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(0,0,0,.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* نص السعر */
.kp6__price-text { flex: 1; min-width: 0; }
.kp6__price-lbl {
  font-size: 11px; font-weight: 800; letter-spacing: .5px;
  margin-bottom: 4px; opacity: .7;
}
.kp6__card--star   .kp6__price-lbl { color: #0E1C2E; }
.kp6__card--group  .kp6__price-lbl { color: #C7D2FE; }
.kp6__card--bundle .kp6__price-lbl { color: #BBF7D0; }

.kp6__price-val {
  font-size: 15.5px; font-weight: 900; line-height: 1.3;
}
.kp6__card--star   .kp6__price-val { color: #0E1C2E; }
.kp6__card--group  .kp6__price-val { color: #FFFFFF; }
.kp6__card--bundle .kp6__price-val { color: #FFFFFF; }

.kp6__price-per { display: none; }
.kp6__price-per.on { display: block; }

/* سهم */
.kp6__arrow {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .25s;
}
.kp6__price-btn:hover .kp6__arrow { transform: translateX(-4px); }
.kp6__card--star   .kp6__arrow svg { stroke: #0E1C2E; }
.kp6__card--group  .kp6__arrow svg { stroke: #FFFFFF; }
.kp6__card--bundle .kp6__arrow svg { stroke: #FFFFFF; }

/* ═══ فاصل ═══ */
.kp6__div {
  height: 1px; margin: 0 20px;
  background: rgba(255,255,255,.06);
}
.kp6__card--star .kp6__div { background: rgba(201,168,76,.1); }

/* ═══ مميزات ═══ */
.kp6__feats {
  padding: 22px 22px 26px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.kp6__feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 700;
  color: #CBD5E1; line-height: 1.4;
  transition: color .25s;
}
.kp6__card:hover .kp6__feat { color: #F1F5F9; }

.kp6__check {
  width: 24px; height: 24px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kp6__card--star   .kp6__check { background: rgba(201,168,76,.18); }
.kp6__card--group  .kp6__check { background: rgba(99,102,241,.18); }
.kp6__card--bundle .kp6__check { background: rgba(34,197,94,.18); }

.kp6__check svg { flex-shrink: 0; }
.kp6__card--star   .kp6__check svg { stroke: var(--kp6-gold-lt); }
.kp6__card--group  .kp6__check svg { stroke: var(--kp6-indigo-lt); }
.kp6__card--bundle .kp6__check svg { stroke: var(--kp6-green-lt); }

/* ═══ شريط الضمانات ═══ */
.kp6__guar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-bottom: 44px;
}
.kp6__guar-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 22px 14px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: background .3s, border-color .3s, transform .3s;
}
.kp6__guar-item:hover {
  background: rgba(201,168,76,.05);
  border-color: rgba(201,168,76,.22);
  transform: translateY(-5px);
}
.kp6__guar-icon {
  width: 50px; height: 50px; border-radius: 15px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.18);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.kp6__guar-item:hover .kp6__guar-icon { transform: scale(1.12) rotate(-6deg); }
.kp6__guar-title { font-size: 14px; font-weight: 900; color: var(--kp6-text); }
.kp6__guar-desc  { font-size: 12.5px; font-weight: 600; color: var(--kp6-dim); line-height: 1.6; }

/* ═══ CTA أسفل ═══ */
.kp6__bottom-cta {
  border-radius: 26px; overflow: hidden;
  position: relative;
}
/* خلفية gradient غنية */
.kp6__bottom-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a2240 0%, #112d52 50%, #0a2240 100%);
}
.kp6__bottom-cta::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--kp6-gold), var(--kp6-gold-lt), var(--kp6-gold), transparent);
}
.kp6__bottom-cta-glow {
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.kp6__bottom-cta-inner {
  position: relative; z-index: 1;
  padding: 52px 40px;
  text-align: center;
  /* بوردر حقيقي */
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 26px;
}
.kp6__cta-title {
  font-size: clamp(22px, 2.8vw, 34px); font-weight: 900;
  color: var(--kp6-text); margin: 0 0 12px;
}
.kp6__cta-title em { font-style: normal; color: var(--kp6-gold); }
.kp6__cta-desc {
  font-size: 16px; font-weight: 600;
  color: var(--kp6-muted); line-height: 1.85;
  margin: 0 0 34px;
}
.kp6__cta-btns {
  display: flex; justify-content: center; align-items: center;
  gap: 14px; flex-wrap: wrap;
}
.kp6__cta-btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--kp6-wa); color: #FFFFFF;
  font-family: 'Cairo', sans-serif;
  font-size: 16.5px; font-weight: 900;
  padding: 16px 44px; border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 6px 26px rgba(37,211,102,.38);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.kp6__cta-btn-wa:hover {
  background: #1aad52;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,.52);
}
.kp6__cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(201,168,76,.35);
  color: var(--kp6-gold);
  font-family: 'Cairo', sans-serif;
  font-size: 15px; font-weight: 800;
  padding: 15px 32px; border-radius: 16px;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .25s;
}
.kp6__cta-btn-ghost:hover {
  border-color: rgba(201,168,76,.7);
  background: rgba(201,168,76,.07);
  transform: translateY(-3px);
}

/* ═══ Responsive ═══ */
@media (max-width: 960px) {
  .kp6__grid {
    grid-template-columns: 1fr;
    max-width: 440px; margin-left: auto; margin-right: auto;
  }
  .kp6__card--star { margin-top: 0; }
  .kp6__guar { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .kp6 { padding: 72px 0; }
  .kp6__toggle { width: 100%; border-radius: 16px; flex-direction: column; padding: 6px; }
  .kp6__tbtn { width: 100%; padding: 12px 16px; text-align: center; border-radius: 12px; }
  .kp6__toggle-wrap { padding: 0 4px; }
  .kp6__grid { max-width: 100%; gap: 16px; }
  .kp6__card-head { padding: 22px 18px 0; }
  .kp6__card--star .kp6__card-head { padding-top: 30px; }
  .kp6__cta-wrap { padding: 0 14px 18px; }
  .kp6__price-btn { padding: 15px 16px; border-radius: 16px; }
  .kp6__wa-icon { width: 40px; height: 40px; border-radius: 12px; }
  .kp6__feats { padding: 18px 16px 22px; gap: 13px; }
  .kp6__feat { font-size: 14px; }
  .kp6__guar { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .kp6__guar-item { padding: 18px 10px; }
  .kp6__guar-title { font-size: 13px; }
  .kp6__guar-desc { font-size: 12px; }
  .kp6__bottom-cta-inner { padding: 36px 18px; }
  .kp6__cta-btns { flex-direction: column; }
  .kp6__cta-btn-wa,
  .kp6__cta-btn-ghost { width: 100%; justify-content: center; padding: 15px 20px; font-size: 15px; }
}
@media print { .kp6 { display: none; } }

/* ══════════════ SECTION: faq ══════════════ */
.kunuz-faq {
  background: #F8F9FA;
  padding: 90px 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}
.kunuz-faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.kunuz-faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══ رأس القسم ══ */
.kunuz-faq__head {
  text-align: center;
  margin-bottom: 60px;
}
.kunuz-faq__head-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 18px;
}
.kunuz-faq__head-badge-dot {
  width: 6px; height: 6px;
  background: #C9A84C;
  border-radius: 50%;
}
.kunuz-faq__h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #1A2535;
  margin: 0 0 16px;
  line-height: 1.3;
}
.kunuz-faq__h2 em {
  font-style: normal;
  color: #C9A84C;
}
.kunuz-faq__desc {
  font-size: 16px;
  font-weight: 600;
  color: #4B5563;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* ══ قائمة الأسئلة ══ */
.kunuz-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
}

/* ══ سؤال واحد ══ */
.kunuz-faq__item {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s, box-shadow 0.3s;
}
.kunuz-faq__item.kunuz-faq-visible {
  opacity: 1;
  transform: translateY(0);
}
.kunuz-faq__item.open {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 30px rgba(26,37,53,0.07);
}

/* ── رأس السؤال ── */
.kunuz-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.kunuz-faq__question-text {
  font-size: 16px;
  font-weight: 800;
  color: #1A2535;
  line-height: 1.5;
  flex: 1;
  transition: color 0.3s;
}
.kunuz-faq__item.open .kunuz-faq__question-text {
  color: #C9A84C;
}
.kunuz-faq__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.35s;
}
.kunuz-faq__item.open .kunuz-faq__icon {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  transform: rotate(45deg);
}

/* ── الجواب ── */
.kunuz-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.kunuz-faq__item.open .kunuz-faq__answer {
  max-height: 600px;
}
.kunuz-faq__answer-inner {
  padding: 0 28px 24px;
  border-top: 1px solid #F1F5F9;
}
.kunuz-faq__item.open .kunuz-faq__answer-inner {
  border-top-color: rgba(201,168,76,0.15);
}
.kunuz-faq__answer-text {
  font-size: 15px;
  font-weight: 600;
  color: #4B5563;
  line-height: 1.85;
  margin: 16px 0 0;
}
.kunuz-faq__answer-text strong {
  color: #1A2535;
  font-weight: 800;
}

/* ── تمييز السؤال الأول ── */
.kunuz-faq__item:first-child {
  border-color: rgba(201,168,76,0.3);
}
.kunuz-faq__item:first-child .kunuz-faq__question-text {
  color: #C9A84C;
}
.kunuz-faq__item:first-child .kunuz-faq__icon {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
}

/* ══ CTA ══ */
.kunuz-faq__cta {
  text-align: center;
  background: linear-gradient(135deg, #1A2535, #243347);
  border-radius: 20px;
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
}
.kunuz-faq__cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E0C56A, #C9A84C);
}
.kunuz-faq__cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px;
}
.kunuz-faq__cta-sub {
  font-size: 15px;
  font-weight: 600;
  color: #94A3B8;
  margin: 0 0 28px;
  line-height: 1.7;
}
.kunuz-faq__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,#C9A84C 0%,#E0C56A 50%,#B0912D 100%);
  background-size: 200% auto;
  color: #111B28;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 22px rgba(201,168,76,0.35);
}
.kunuz-faq__cta-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

/* ══ Responsive ══ */
@media (max-width: 640px) {
  .kunuz-faq { padding: 60px 0; }
  .kunuz-faq__head { margin-bottom: 40px; }
  .kunuz-faq__desc { font-size: 15px; }
  .kunuz-faq__question { padding: 18px 20px; }
  .kunuz-faq__question-text { font-size: 15px; }
  .kunuz-faq__answer-inner { padding: 0 20px 20px; }
  .kunuz-faq__answer-text { font-size: 14.5px; }
  .kunuz-faq__icon { width: 32px; height: 32px; }
  .kunuz-faq__cta { padding: 32px 20px; }
  .kunuz-faq__cta-title { font-size: 19px; }
  .kunuz-faq__cta-sub { font-size: 14.5px; }
  .kunuz-faq__cta-btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; }
}
@media print { .kunuz-faq { display: none; } }

/* ══════════════ SECTION: final-cta ══════════════ */
.kunuz-cta-final {
  background: #1A2535;
  padding: 100px 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}

/* ── خلفية ديكورية ── */
.kunuz-cta-final__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Amiri', serif;
  font-size: clamp(100px, 16vw, 200px);
  color: rgba(201,168,76,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.kunuz-cta-final__glow-1 {
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.kunuz-cta-final__glow-2 {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.kunuz-cta-final__line-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}
.kunuz-cta-final__line-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.kunuz-cta-final__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ══ بادج ══ */
.kunuz-cta-final__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 28px;
}
.kunuz-cta-final__badge-dot {
  width: 7px; height: 7px;
  background: #C9A84C;
  border-radius: 50%;
  animation: kunuz-pulse 1.8s ease-in-out infinite;
}
@keyframes kunuz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ══ العنوان ══ */
.kunuz-cta-final__h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 20px;
  line-height: 1.3;
}
.kunuz-cta-final__h2 em {
  font-style: normal;
  color: #C9A84C;
}

/* ══ وصف ══ */
.kunuz-cta-final__desc {
  font-size: 17px;
  font-weight: 600;
  color: #94A3B8;
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto 44px;
}
.kunuz-cta-final__desc strong { color: #E2E8F0; }

/* ══ الأزرار ══ */
.kunuz-cta-final__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.kunuz-cta-final__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,#C9A84C 0%,#E0C56A 50%,#B0912D 100%);
  background-size: 200% auto;
  color: #111B28;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 17px 42px;
  border-radius: 14px;
  text-decoration: none;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(201,168,76,0.4);
}
.kunuz-cta-final__btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}
.kunuz-cta-final__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #E2E8F0;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.kunuz-cta-final__btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ══ شريط ثقة ══ */
.kunuz-cta-final__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.kunuz-cta-final__trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: #94A3B8;
}
.kunuz-cta-final__trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ══ Responsive ══ */
@media (max-width: 640px) {
  .kunuz-cta-final { padding: 72px 0; }
  .kunuz-cta-final__desc { font-size: 15.5px; }
  .kunuz-cta-final__btns { flex-direction: column; gap: 12px; }
  .kunuz-cta-final__btn-primary,
  .kunuz-cta-final__btn-secondary { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; }
  .kunuz-cta-final__trust { gap: 20px; }
  .kunuz-cta-final__trust-item { font-size: 13px; }
}
@media print { .kunuz-cta-final { display: none; } }

/* ══════════════ SECTION: footer ══════════════ */
.kunuz-footer {
  background: #111B28;
  padding: 72px 0 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}
.kunuz-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}
.kunuz-footer__glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.kunuz-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ══ الشبكة الرئيسية ══ */
.kunuz-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ══ عمود الهوية ══ */
.kunuz-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.kunuz-footer__brand-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #C9A84C, #E0C56A);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kunuz-footer__brand-name {
  display: flex;
  flex-direction: column;
}
.kunuz-footer__brand-ar {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}
.kunuz-footer__brand-en {
  font-size: 11px;
  font-weight: 600;
  color: #C9A84C;
  letter-spacing: 0.5px;
}
.kunuz-footer__brand-desc {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  line-height: 1.85;
  margin: 0 0 24px;
  max-width: 320px;
}

/* ── واتساب بارز ── */
.kunuz-footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #FFFFFF;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  margin-bottom: 28px;
}
.kunuz-footer__wa-btn:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── سوشيال ── */
.kunuz-footer__social {
  display: flex;
  gap: 10px;
}
.kunuz-footer__social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  color: #94A3B8;
}
.kunuz-footer__social-link:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  color: #C9A84C;
  transform: translateY(-2px);
}

/* ══ أعمدة الروابط ══ */
.kunuz-footer__col-title {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.kunuz-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: -1px; right: 0;
  width: 32px; height: 2px;
  background: #C9A84C;
  border-radius: 2px;
}
.kunuz-footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kunuz-footer__links a {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s, gap 0.2s;
}
.kunuz-footer__links a:hover {
  color: #C9A84C;
  gap: 10px;
}
.kunuz-footer__links a svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.kunuz-footer__links a:hover svg { opacity: 1; }

/* ══ عمود التواصل ══ */
.kunuz-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.kunuz-footer__contact-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.kunuz-footer__contact-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #64748B;
  line-height: 1.6;
}
.kunuz-footer__contact-text a {
  color: #C9A84C;
  text-decoration: none;
  font-weight: 700;
}
.kunuz-footer__contact-text a:hover { text-decoration: underline; }

/* ══ شريط نهاية ══ */
.kunuz-footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.kunuz-footer__bottom-copy {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.kunuz-footer__bottom-copy span { color: #C9A84C; }
.kunuz-footer__bottom-links {
  display: flex;
  gap: 20px;
}
.kunuz-footer__bottom-links a {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.kunuz-footer__bottom-links a:hover { color: #C9A84C; }

/* ══ Responsive ══ */
@media (max-width: 1024px) {
  .kunuz-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .kunuz-footer__brand { grid-column: 1 / -1; }
  .kunuz-footer__brand-desc { max-width: 100%; }
}
@media (max-width: 640px) {
  .kunuz-footer { padding: 52px 0 0; }
  .kunuz-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .kunuz-footer__brand { grid-column: auto; }
  .kunuz-footer__wa-btn { width: 100%; justify-content: center; }
  .kunuz-footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
  .kunuz-footer__bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
}
@media print { .kunuz-footer { display: none; } }

/* ══════════════ SECTION: whatsapp-float ══════════════ */
.kwa3 {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* ══ الزر الرئيسي ══ */
.kwa3__btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ecc71, #25D366, #1aad52);
  box-shadow:
    0 8px 28px rgba(37,211,102,.5),
    0 2px 8px rgba(0,0,0,.18),
    0 1px 0 rgba(255,255,255,.2) inset;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  border: none;
}
.kwa3__btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.2);
}
.kwa3__btn:active { transform: scale(.95); }

/* نبضتان */
.kwa3__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  animation: kwa3ring 2.4s ease-out infinite;
  pointer-events: none;
}
.kwa3__ring:nth-child(2) { animation-delay: .9s; }
@keyframes kwa3ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* نقطة أونلاين */
.kwa3__online {
  position: absolute;
  top: 2px; right: 2px;
  width: 15px; height: 15px;
  background: #22C55E;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 1px 5px rgba(34,197,94,.5);
  animation: kwa3blink 3.5s ease-in-out infinite;
}
@keyframes kwa3blink {
  0%,85%,100% { opacity:1 }
  92% { opacity:.25 }
}

/* ══ البالون ══ */
.kwa3__bubble {
  background: #ffffff;
  border-radius: 16px 16px 16px 4px;
  padding: 11px 14px 11px 12px;
  box-shadow:
    0 8px 30px rgba(0,0,0,.13),
    0 2px 8px rgba(0,0,0,.07),
    0 0 0 1px rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-8px) scale(.94);
  transform-origin: bottom left;
  transition:
    opacity .32s cubic-bezier(.22,.68,0,1.2),
    transform .32s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
  white-space: nowrap;
  position: relative;
}
.kwa3__bubble.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

/* أيقونة واتساب داخل البالون */
.kwa3__bubble-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(145deg, #2ecc71, #25D366);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(37,211,102,.35);
}

/* النص */
.kwa3__bubble-text {
  font-family: 'Cairo', sans-serif;
}
.kwa3__bubble-title {
  font-size: 13.5px; font-weight: 900;
  color: #1A2535; line-height: 1.3;
  display: block; margin-bottom: 2px;
}
.kwa3__bubble-sub {
  font-size: 11.5px; font-weight: 700;
  color: #64748B; display: flex; align-items: center; gap: 4px;
}
.kwa3__bubble-sub::before {
  content: '';
  width: 6px; height: 6px;
  background: #22C55E; border-radius: 50%;
  flex-shrink: 0;
  animation: kwa3blink 2.5s ease-in-out infinite;
}

/* زر إغلاق */
.kwa3__close {
  position: absolute;
  top: -7px; left: -7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #64748B;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, background .2s, transform .2s;
  z-index: 2;
}
.kwa3__bubble.show .kwa3__close { opacity: 1; }
.kwa3__close:hover { background: #EF4444; transform: scale(1.15); }

/* ══ Responsive ══ */
@media (max-width: 640px) {
  .kwa3 { bottom: 20px; left: 16px; }
  .kwa3__btn { width: 56px; height: 56px; }
  .kwa3__bubble { padding: 9px 12px 9px 10px; }
  .kwa3__bubble-title { font-size: 13px; }
  .kwa3__bubble-sub { font-size: 11px; }
  .kwa3__bubble-icon { width: 32px; height: 32px; }
}
@media print { .kwa3 { display: none; } }
