/* ================================================
   Flat Rate — Zid Store CSS
   Brand Colors: #C0392B (Red) | #1A1A1A (Dark) | #F2F2F2 (Light)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

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

body {
  font-family: 'Tajawal', Arial, sans-serif;
  direction: rtl;
  background: #F2F2F2;
  color: #1A1A1A;
}

/* ── NAV ──────────────────────────────────── */
.nav {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  width: 40px;
  height: 40px;
  background: #C0392B;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon i {
  color: #fff;
  font-size: 20px;
}

.nav-brand {
  font-size: 17px;
  font-weight: 900;
  color: #1A1A1A;
  letter-spacing: -0.5px;
}

.nav-brand em {
  color: #C0392B;
  font-style: normal;
}

.nav-sub {
  font-size: 10px;
  color: #aaa;
  font-weight: 500;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #C0392B;
}

.nav-cta {
  background: #C0392B;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Tajawal', Arial, sans-serif;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #a93226;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: #1A1A1A;
  padding: 72px 40px 60px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero-dec1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.10);
}

.hero-dec2 {
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.07);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(192, 57, 43, 0.18);
  border: 1px solid rgba(192, 57, 43, 0.45);
  color: #f09595;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  color: #C0392B;
  font-style: normal;
}

.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.85;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-red {
  background: #C0392B;
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Tajawal', Arial, sans-serif;
  transition: background 0.2s;
}

.btn-red:hover {
  background: #a93226;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  padding: 15px 32px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Tajawal', Arial, sans-serif;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-it {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.trust-it i {
  color: #C0392B;
  font-size: 15px;
}

/* ── STATS BAND ───────────────────────────── */
.stats-band {
  background: #C0392B;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 22px 16px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-cell:last-child {
  border-left: none;
}

.stat-n {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}

.stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.70);
  margin-top: 3px;
}

/* ── SECTIONS ─────────────────────────────── */
.sec {
  padding: 60px 40px;
}

.sec-tag {
  font-size: 11px;
  font-weight: 700;
  color: #C0392B;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sec-title {
  font-size: 26px;
  font-weight: 900;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 8px;
}

.sec-sub {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.75;
}

/* ── PACKAGES ─────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.pkg {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #eaeaea;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pkg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.pkg.top {
  border: 2px solid #C0392B;
}

.pkg-badge-row {
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pkg-badge {
  background: #C0392B;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 16px;
  border-radius: 20px;
}

.pkg-badge.vip {
  background: #1A1A1A;
}

.pkg-imgbox {
  height: 150px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pkg.top .pkg-imgbox {
  background: #fdedec;
}

.pkg-imgbox img {
  max-height: 130px;
  max-width: 90%;
  object-fit: contain;
  padding: 10px;
}

.pkg-body {
  padding: 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pkg-name {
  font-size: 16px;
  font-weight: 900;
  color: #1A1A1A;
  text-align: center;
}

.pkg-desc {
  font-size: 12px;
  color: #777;
  text-align: center;
  line-height: 1.65;
  background: #f9f9f9;
  border-radius: 9px;
  padding: 9px;
}

.pkg-cases {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fdedec;
  border-radius: 9px;
  padding: 9px;
}

.pkg-cases i {
  color: #C0392B;
  font-size: 16px;
}

.pkg-cases span {
  font-size: 13px;
  color: #922b21;
  font-weight: 700;
}

.pkg-price {
  text-align: center;
}

.pkg-amount {
  font-size: 28px;
  font-weight: 900;
  color: #1A1A1A;
}

.pkg-amount sup {
  font-size: 14px;
  font-weight: 700;
  vertical-align: super;
}

.pkg-period {
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
}

.pkg-btn {
  margin-top: auto;
  border: none;
  border-radius: 11px;
  padding: 13px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  font-family: 'Tajawal', Arial, sans-serif;
  transition: background 0.2s;
}

.pkg-btn.main {
  background: #C0392B;
  color: #fff;
}

.pkg-btn.main:hover {
  background: #a93226;
}

.pkg-btn.ghost {
  background: #f5f5f5;
  color: #1A1A1A;
  border: 1px solid #e8e8e8;
}

.pkg-btn.ghost:hover {
  background: #eaeaea;
}

/* ── COMPARE TABLE ────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  max-width: 840px;
  margin: 0 auto;
}

.ctable {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 500px;
}

.ctable th {
  background: #1A1A1A;
  color: #fff;
  padding: 13px 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Tajawal', Arial, sans-serif;
}

.ctable th:first-child {
  text-align: right;
  background: #C0392B;
  min-width: 160px;
}

.ctable th.hl {
  background: #C0392B;
}

.ctable td {
  padding: 11px 14px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  color: #555;
  font-size: 13px;
}

.ctable td:first-child {
  text-align: right;
  font-weight: 600;
  color: #1A1A1A;
}

.ctable tr:nth-child(even) td {
  background: #fafafa;
}

.ctable tr:last-child td {
  border-bottom: none;
}

.ctable td.hl {
  background: #fdedec;
}

.chk {
  color: #C0392B;
  font-size: 17px;
}

.crs {
  color: #d8d8d8;
  font-size: 17px;
}

/* ── WHY US ───────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid #eaeaea;
  text-align: center;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #fdedec;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.why-icon i {
  color: #C0392B;
  font-size: 24px;
}

.why-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.why-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* ── STEPS ────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 16px 12px;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  font-weight: 900;
  font-family: 'Tajawal', Arial, sans-serif;
}

.step-num.red {
  background: #C0392B;
  color: #fff;
}

.step-num.dark {
  background: #1A1A1A;
  color: #fff;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* ── FAQ ──────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}

.faq-q {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid #eaeaea;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-q:hover {
  border-color: #C0392B;
}

.faq-head {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-ans {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-top: 12px;
  display: none;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
}

.faq-q.open .faq-ans {
  display: block;
}

.fa {
  color: #C0392B;
  transition: transform 0.25s;
  flex-shrink: 0;
  font-size: 18px;
}

.faq-q.open .fa {
  transform: rotate(180deg);
}

/* ── CTA BAND ─────────────────────────────── */
.cta {
  background: #C0392B;
  padding: 60px 40px;
  text-align: center;
}

.cta h2 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.cta-btn {
  background: #fff;
  color: #C0392B;
  border: none;
  border-radius: 14px;
  padding: 16px 44px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  font-family: 'Tajawal', Arial, sans-serif;
  transition: transform 0.15s;
}

.cta-btn:hover {
  transform: scale(1.03);
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: #1A1A1A;
  padding: 40px 32px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-icon {
  width: 36px;
  height: 36px;
  background: #C0392B;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
}

.footer-brand em {
  color: #C0392B;
  font-style: normal;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #C0392B;
}

.footer-copy {
  font-size: 12px;
  color: #444;
}

/* ── DIVIDER ──────────────────────────────── */
.hr {
  height: 1px;
  background: #eaeaea;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 50px 20px 40px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec {
    padding: 44px 20px;
  }

  .sec-title {
    font-size: 22px;
  }

  .pkg-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .why-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 22px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-grid,
  .why-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    gap: 12px;
  }
}

/* ── PRODUCT PAGE ─────────────────────────── */
.product-page { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.breadcrumb { font-size: 13px; color: #888; margin-bottom: 28px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: #C0392B; text-decoration: none; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.product-main-img { width: 100%; border-radius: 16px; border: 1px solid #eaeaea; }
.product-name { font-size: 26px; font-weight: 900; color: #1A1A1A; margin-bottom: 16px; }
.product-price-wrap { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.product-price, .product-sale-price { font-size: 28px; font-weight: 900; color: #C0392B; }
.product-original-price { font-size: 18px; color: #bbb; text-decoration: line-through; }
.product-price-period { font-size: 14px; color: #aaa; }
.product-short-desc { font-size: 14px; color: #666; line-height: 1.75; margin-bottom: 16px; }
.product-cases-badge { display: flex; align-items: center; gap: 8px; background: #fdedec; border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; }
.product-cases-badge i { color: #C0392B; font-size: 18px; }
.product-cases-badge span { font-size: 14px; color: #922b21; font-weight: 700; }
.product-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.product-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; }
.product-features li i { color: #C0392B; font-size: 16px; flex-shrink: 0; }
.product-form { margin-bottom: 20px; }
.option-group { margin-bottom: 14px; }
.option-label { font-size: 13px; font-weight: 700; color: #1A1A1A; display: block; margin-bottom: 8px; }
.option-values { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill input { display: none; }
.option-pill span { display: block; padding: 7px 14px; border: 1.5px solid #eaeaea; border-radius: 8px; font-size: 13px; cursor: pointer; transition: all .2s; }
.option-pill input:checked + span { border-color: #C0392B; background: #fdedec; color: #C0392B; font-weight: 700; }
.btn-add-cart { width: 100%; background: #C0392B; color: #fff; border: none; border-radius: 12px; padding: 15px; font-size: 16px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Tajawal', Arial, sans-serif; transition: background .2s; }
.btn-add-cart:hover:not(:disabled) { background: #a93226; }
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; }
.trust-badges { display: flex; gap: 16px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #888; }
.trust-badge i { color: #C0392B; font-size: 16px; }
.product-description-section { border-top: 1px solid #eaeaea; padding-top: 40px; margin-bottom: 40px; }
.product-description-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.product-description { font-size: 14px; color: #555; line-height: 1.85; }
.related-products h2 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.related-card { background: #fff; border-radius: 14px; border: 1px solid #eaeaea; text-decoration: none; overflow: hidden; transition: transform .2s; }
.related-card:hover { transform: translateY(-2px); }
.related-card img { width: 100%; height: 120px; object-fit: contain; background: #f7f7f7; padding: 8px; }
.related-name { font-size: 13px; font-weight: 700; color: #1A1A1A; padding: 8px 10px 4px; }
.related-price { font-size: 13px; color: #C0392B; font-weight: 700; padding: 0 10px 10px; }

/* ── CART PAGE ────────────────────────────── */
.cart-page { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
.cart-title { font-size: 24px; font-weight: 900; margin-bottom: 28px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }
.cart-item { display: flex; gap: 16px; align-items: center; background: #fff; border-radius: 14px; padding: 16px; border: 1px solid #eaeaea; margin-bottom: 12px; }
.cart-item-img img { width: 70px; height: 70px; object-fit: contain; border-radius: 8px; background: #f7f7f7; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-bottom: 4px; }
.cart-item-options { font-size: 12px; color: #888; margin-bottom: 4px; }
.cart-item-price { font-size: 15px; font-weight: 800; color: #C0392B; }
.cart-item-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.qty-control { display: flex; align-items: center; gap: 6px; border: 1px solid #eaeaea; border-radius: 8px; overflow: hidden; }
.qty-btn { width: 30px; height: 30px; border: none; background: #f5f5f5; cursor: pointer; font-size: 16px; }
.qty-value { font-size: 14px; font-weight: 700; width: 28px; text-align: center; }
.cart-remove { background: none; border: none; cursor: pointer; color: #bbb; font-size: 18px; }
.cart-remove:hover { color: #C0392B; }
.cart-summary { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid #eaeaea; height: fit-content; }
.cart-summary h2 { font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: #555; margin-bottom: 12px; }
.summary-row.total { font-size: 16px; font-weight: 800; color: #1A1A1A; border-top: 1px solid #eaeaea; padding-top: 12px; }
.summary-row.discount { color: #C0392B; }
.coupon-form { display: flex; gap: 8px; margin: 16px 0; }
.coupon-form input { flex: 1; border: 1px solid #eaeaea; border-radius: 8px; padding: 9px 12px; font-size: 13px; font-family: 'Tajawal', Arial, sans-serif; }
.coupon-form button { background: #1A1A1A; color: #fff; border: none; border-radius: 8px; padding: 9px 14px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Tajawal', Arial, sans-serif; }
.btn-checkout { display: flex; align-items: center; justify-content: center; gap: 8px; background: #C0392B; color: #fff; text-decoration: none; border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 800; transition: background .2s; }
.btn-checkout:hover { background: #a93226; }
.cart-trust { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: #aaa; margin-top: 12px; }
.cart-trust i { color: #C0392B; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty i { font-size: 56px; color: #eaeaea; margin-bottom: 16px; display: block; }
.cart-empty p { font-size: 16px; color: #aaa; margin-bottom: 20px; }

/* ── PRODUCTS PAGE ────────────────────────── */
.products-page { padding: 48px 24px; }
.products-header { text-align: center; margin-bottom: 36px; }

/* ── NAV CART ICON ────────────────────────── */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cart { position: relative; color: #1A1A1A; font-size: 22px; text-decoration: none; }
.cart-count { position: absolute; top: -6px; left: -6px; background: #C0392B; color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: #1A1A1A; }

/* ── FAQ INTERACTIVE ──────────────────────── */
.faq-q { cursor: pointer; }

/* ── RESPONSIVE PRODUCT & CART ────────────── */
@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 66px; right: 0; left: 0; background: #fff; flex-direction: column; padding: 16px 24px; border-bottom: 1px solid #eaeaea; z-index: 99; }
  .nav-links.open { display: flex; }
}

/* ── LANDING PAGE ─────────────────────────── */
.lp-body { background: #F2F2F2; }

/* Sticky header strip */
.lp-topbar {
  background: #1A1A1A;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-topbar-logo { display: flex; align-items: center; gap: 8px; }
.lp-topbar-icon { width: 32px; height: 32px; background: #C0392B; border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.lp-topbar-icon i { color: #fff; font-size: 16px; }
.lp-topbar-brand { font-size: 14px; font-weight: 900; color: #fff; letter-spacing: -0.3px; }
.lp-topbar-brand em { color: #C0392B; font-style: normal; }
.lp-topbar-cta { background: #C0392B; color: #fff; border: none; border-radius: 7px; padding: 8px 18px; font-size: 13px; font-weight: 800; cursor: pointer; font-family: 'Tajawal', Arial, sans-serif; text-decoration: none; }

/* Hero */
.lp-hero { background: #1A1A1A; padding: 60px 24px 50px; text-align: center; overflow: hidden; position: relative; }
.lp-hero::before { content: ''; position: absolute; top: -80px; left: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(192,57,43,0.10); }
.lp-hero::after { content: ''; position: absolute; bottom: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(192,57,43,0.07); }
.lp-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(192,57,43,0.18); border: 1px solid rgba(192,57,43,0.45); color: #f09595; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: 1px; }
.lp-hero h1 { font-size: 34px; font-weight: 900; color: #fff; line-height: 1.28; margin-bottom: 14px; max-width: 540px; margin-left: auto; margin-right: auto; }
.lp-hero h1 em { color: #C0392B; font-style: normal; }
.lp-hero p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 440px; margin: 0 auto 28px; line-height: 1.85; }
.lp-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.lp-btn-main { background: #C0392B; color: #fff; border: none; border-radius: 11px; padding: 14px 32px; font-size: 15px; font-weight: 800; cursor: pointer; font-family: 'Tajawal', Arial, sans-serif; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .2s; }
.lp-btn-main:hover { background: #a93226; color: #fff; }
.lp-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 11px; padding: 14px 28px; font-size: 15px; cursor: pointer; font-family: 'Tajawal', Arial, sans-serif; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s; }
.lp-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.lp-trust-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.lp-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.42); font-size: 12px; }
.lp-trust-item i { color: #C0392B; font-size: 14px; }

/* Stats band */
.lp-stats { background: #C0392B; display: grid; grid-template-columns: repeat(4,1fr); }
.lp-stat { padding: 20px 12px; text-align: center; border-left: 1px solid rgba(255,255,255,0.15); }
.lp-stat:last-child { border-left: none; }
.lp-stat-n { font-size: 24px; font-weight: 900; color: #fff; }
.lp-stat-l { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* Problem section */
.lp-problem { padding: 52px 24px; background: #fff; }
.lp-problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; max-width: 800px; margin: 0 auto; }
.lp-prob-card { background: #f9f9f9; border-radius: 14px; padding: 20px 16px; border-right: 3px solid #C0392B; border-radius: 0 14px 14px 0; }
.lp-prob-icon { width: 38px; height: 38px; background: #fdedec; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.lp-prob-icon i { color: #C0392B; font-size: 18px; }
.lp-prob-title { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-bottom: 5px; }
.lp-prob-desc { font-size: 12px; color: #777; line-height: 1.65; }

/* Packages landing */
.lp-packages { padding: 52px 24px; background: #F2F2F2; }
.lp-pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; max-width: 960px; margin: 0 auto; }
.lp-pkg { background: #fff; border-radius: 20px; border: 1.5px solid #eaeaea; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.lp-pkg:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.09); }
.lp-pkg.featured { border: 2px solid #C0392B; }
.lp-pkg-badge-row { height: 22px; display: flex; justify-content: center; align-items: center; }
.lp-pkg-badge { background: #C0392B; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 14px; border-radius: 20px; font-family: 'Tajawal', Arial, sans-serif; }
.lp-pkg-badge.vip { background: #1A1A1A; }
.lp-pkg-imgbox { height: 140px; background: #f7f7f7; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lp-pkg.featured .lp-pkg-imgbox { background: #fdedec; }
.lp-pkg-imgbox img { max-height: 120px; max-width: 85%; object-fit: contain; padding: 10px; }
.lp-pkg-body { padding: 18px 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.lp-pkg-name { font-size: 15px; font-weight: 900; color: #1A1A1A; text-align: center; }
.lp-pkg-cases { display: flex; align-items: center; justify-content: center; gap: 5px; background: #fdedec; border-radius: 8px; padding: 8px; }
.lp-pkg-cases i { color: #C0392B; font-size: 15px; }
.lp-pkg-cases span { font-size: 12px; color: #922b21; font-weight: 700; }
.lp-pkg-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.lp-pkg-features li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #555; }
.lp-pkg-features li i { color: #C0392B; font-size: 13px; flex-shrink: 0; }
.lp-pkg-price { text-align: center; }
.lp-pkg-amount { font-size: 26px; font-weight: 900; color: #1A1A1A; }
.lp-pkg-amount sup { font-size: 13px; vertical-align: super; }
.lp-pkg-period { font-size: 11px; color: #aaa; margin-top: 1px; }
.lp-pkg-btn { margin-top: auto; border: none; border-radius: 11px; padding: 13px; font-size: 14px; font-weight: 800; cursor: pointer; width: 100%; font-family: 'Tajawal', Arial, sans-serif; text-decoration: none; display: block; text-align: center; transition: background .2s; }
.lp-pkg-btn.main { background: #C0392B; color: #fff; }
.lp-pkg-btn.main:hover { background: #a93226; }
.lp-pkg-btn.ghost { background: #f5f5f5; color: #1A1A1A; border: 1px solid #e8e8e8; }
.lp-pkg-btn.ghost:hover { background: #eaeaea; }

/* Social proof */
.lp-proof { padding: 52px 24px; background: #fff; }
.lp-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; max-width: 860px; margin: 0 auto; }
.lp-review { background: #f9f9f9; border-radius: 14px; padding: 18px; border: 1px solid #eaeaea; }
.lp-review-stars { color: #C0392B; font-size: 13px; margin-bottom: 8px; }
.lp-review-text { font-size: 13px; color: #555; line-height: 1.75; margin-bottom: 12px; }
.lp-review-author { font-size: 13px; font-weight: 700; color: #1A1A1A; }
.lp-review-role { font-size: 11px; color: #aaa; }

/* FAQ landing */
.lp-faq { padding: 52px 24px; background: #F2F2F2; }
.lp-faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 600px; margin: 0 auto; }
.lp-faq-item { background: #fff; border-radius: 12px; padding: 15px 18px; border: 1px solid #eaeaea; cursor: pointer; transition: border-color .2s; }
.lp-faq-item:hover { border-color: #C0392B; }
.lp-faq-q { font-size: 13px; font-weight: 700; color: #1A1A1A; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.lp-faq-a { font-size: 12px; color: #666; line-height: 1.8; margin-top: 10px; display: none; padding-top: 10px; border-top: 1px solid #f5f5f5; }
.lp-faq-item.open .lp-faq-a { display: block; }
.lp-faq-arr { color: #C0392B; transition: transform .2s; flex-shrink: 0; }
.lp-faq-item.open .lp-faq-arr { transform: rotate(180deg); }

/* Final CTA */
.lp-final-cta { background: #C0392B; padding: 60px 24px; text-align: center; position: relative; overflow: hidden; }
.lp-final-cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.07); }
.lp-final-cta h2 { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.lp-final-cta p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.lp-final-btn { background: #fff; color: #C0392B; border: none; border-radius: 14px; padding: 16px 44px; font-size: 16px; font-weight: 900; cursor: pointer; font-family: 'Tajawal', Arial, sans-serif; text-decoration: none; display: inline-block; transition: transform .15s; }
.lp-final-btn:hover { transform: scale(1.03); color: #C0392B; }
.lp-final-guarantee { display: flex; align-items: center; justify-content: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 16px; }
.lp-final-guarantee i { font-size: 15px; }

/* LP Footer */
.lp-footer { background: #1A1A1A; padding: 24px; text-align: center; }
.lp-footer-copy { font-size: 12px; color: #444; }
.lp-footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.lp-footer-links a { font-size: 12px; color: #666; text-decoration: none; }
.lp-footer-links a:hover { color: #C0392B; }

/* Responsive */
@media (max-width: 768px) {
  .lp-hero h1 { font-size: 24px; }
  .lp-stats { grid-template-columns: repeat(2,1fr); }
  .lp-pkg-grid, .lp-problem-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lp-pkg-grid, .lp-problem-grid, .lp-reviews-grid { grid-template-columns: 1fr; }
  .lp-hero h1 { font-size: 22px; }
}