/* لاندنج الصفحة الرئيسية — متماسك مع ألوان الـ Hero (داكن/ذهبي/كريم) + مينيمال + موبايل أولاً */
.tawla-home-landing {
  /* يعتمد على :root في tokens.css */
  --land-accent: var(--tawla-orange);
  --land-accent-ink: #1a1410;
  --land-ink: var(--tawla-ink);
  --land-muted: var(--tawla-muted, rgba(31, 31, 31, 0.62));
  --land-page: #faf7f2;
  --land-surface: #fffefc;
  --land-elev: #fff;
  --land-line: rgba(26, 20, 16, 0.09);
  --land-line-soft: rgba(26, 20, 16, 0.05);
  --land-hero-dark: #1a1410;
  --land-shadow: 0 1px 0 var(--land-line-soft), 0 8px 32px rgba(26, 20, 16, 0.04);
  --land-shadow-hover: 0 12px 40px rgba(26, 20, 16, 0.07);
  --land-r-md: 18px;
  --land-r-lg: 22px;
  --land-px: clamp(1rem, 4.2vw, 1.5rem);
  font-family: var(--tawla-font-ar, "Zain", Tahoma, system-ui, sans-serif);
  color: var(--land-ink);
  background: var(--land-page);
  -webkit-font-smoothing: antialiased;
}

.tawla-landing {
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

/* عرض شريط الـ CTA حتى تابلت — كان يُخفى عند 861px فطالما الشاشة أوسع لا يظهر */
@media (min-width: 1024px) {
  .tawla-landing {
    padding-bottom: 0;
  }
  .tawla-land-mcta {
    display: none !important;
  }
  .tawla-landing .tawla-sticky-support {
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  }
}

.tawla-landing .tawla-sticky-support {
  bottom: calc(4.2rem + env(safe-area-inset-bottom, 0px));
  z-index: 10040;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.tawla-home-landing .tawla-container {
  width: min(1120px, 92vw);
  padding-inline: 0;
}

.tawla-land-h2 {
  font-size: clamp(1.35rem, 4.5vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.55em;
  line-height: 1.28;
  color: var(--land-ink);
}

.tawla-land-h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35em;
  letter-spacing: -0.02em;
}

.tawla-land-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--land-muted);
  margin-inline-start: 0.35em;
  letter-spacing: 0.02em;
}

.tawla-land-mono {
  font-family: var(--tawla-font-ar, "Zain", Tahoma, sans-serif);
  font-style: normal;
  font-weight: 600;
}

.tawla-land-lead {
  color: var(--land-muted);
  font-size: clamp(0.98rem, 2.8vw, 1.05rem);
  line-height: 1.6;
  margin: 0 0 0.9em;
}

.tawla-land-section {
  padding: clamp(2.25rem, 7vw, 3.25rem) 0;
}

.tawla-land-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.94rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tawla-land-btn--primary {
  background: var(--land-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.32);
}
.tawla-land-btn--primary:hover,
.tawla-land-btn--primary:focus-visible {
  filter: brightness(1.04);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.38);
}

.tawla-land-btn--secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--land-ink);
  border: 1px solid var(--land-line);
  box-shadow: 0 1px 0 var(--land-line-soft);
}
.tawla-land-btn--secondary:hover,
.tawla-land-btn--secondary:focus-visible {
  background: #fff;
  border-color: rgba(197, 160, 89, 0.45);
  color: var(--land-accent-ink);
}

.tawla-land-btn--xl {
  min-height: 50px;
  font-size: 1.02rem;
  padding-inline: 1.75rem;
}

.tawla-land-btn--pulse {
  animation: tawla-land-breathe 2.4s ease-in-out infinite;
}
@keyframes tawla-land-breathe {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.28);
  }
  50% {
    box-shadow: 0 8px 28px rgba(197, 160, 89, 0.4);
  }
}

.tawla-land-inline {
  color: var(--land-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 160, 89, 0.45);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.tawla-land-inline:hover {
  border-color: var(--land-accent);
  color: #a67c3a;
}

/* بانر علوي — وقع الـ Hero: داكن + لمسة ذهبية */
.tawla-land-promo {
  position: sticky;
  top: 0;
  z-index: 35;
  background: linear-gradient(105deg, #14100c 0%, var(--land-hero-dark) 48%, #221a14 100%);
  color: rgba(255, 250, 245, 0.95);
  text-align: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
  animation: tawla-land-glow 4s ease-in-out infinite;
}
@keyframes tawla-land-glow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.03);
  }
}

.tawla-land-promo__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem var(--land-px);
  box-sizing: border-box;
}

.tawla-land-promo__text {
  margin: 0;
  font-weight: 600;
  font-size: clamp(0.86rem, 2.4vw, 0.95rem);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.tawla-land-promo__sep {
  margin: 0 0.4em;
  opacity: 0.35;
  color: var(--land-accent);
}

.tawla-land-stats {
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.06) 0%, var(--land-page) 100%);
  border-bottom: 1px solid var(--land-line);
}

.tawla-land-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 3vw, 1.35rem);
  text-align: center;
}
@media (min-width: 700px) {
  .tawla-land-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tawla-land-stat__value {
  display: block;
  font-size: clamp(1.6rem, 4.2vw, 2rem);
  font-weight: 800;
  color: #a67c3a;
  font-variant-numeric: tabular-nums;
  min-height: 1.2em;
  letter-spacing: -0.03em;
}
.tawla-land-stat__value--text {
  color: var(--land-hero-dark);
}
.tawla-land-stat__label {
  display: block;
  margin-top: 0.32em;
  color: var(--land-muted);
  font-size: clamp(0.86rem, 2.2vw, 0.9rem);
  line-height: 1.45;
  max-width: 20rem;
  margin-inline: auto;
}

.tawla-land-prob__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
}
@media (min-width: 700px) {
  .tawla-land-prob__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.tawla-land-prob__card {
  background: var(--land-elev);
  border-radius: var(--land-r-md);
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--land-line);
  box-shadow: var(--land-shadow);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.tawla-land-prob__card:hover {
  box-shadow: var(--land-shadow-hover);
  border-color: rgba(197, 160, 89, 0.2);
}
.tawla-land-prob__ico {
  flex-shrink: 0;
  color: var(--land-accent);
  opacity: 0.9;
}
.tawla-land-prob__card p {
  margin: 0;
  line-height: 1.55;
  color: var(--land-muted);
  font-size: 0.94rem;
}

.tawla-land-sol {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: var(--land-r-lg);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--land-shadow);
}
.tawla-land-sol__tag {
  color: #8a6028;
  margin-inline-end: 0.2em;
}
.tawla-land-sol__lead,
.tawla-land-sol__sub {
  margin: 0.25em 0 0;
  line-height: 1.55;
  font-size: 0.96rem;
}

.tawla-land-why__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .tawla-land-why__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.tawla-land-why__card {
  background: var(--land-elev);
  border-radius: var(--land-r-md);
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid var(--land-line);
  box-shadow: var(--land-shadow);
}
.tawla-land-why__card p {
  margin: 0;
  color: var(--land-muted);
  line-height: 1.55;
  font-size: 0.93rem;
}
.tawla-land-why__card--trust {
  border-color: rgba(197, 160, 89, 0.35);
  background: linear-gradient(160deg, #fff 0%, rgba(255, 250, 240, 0.85) 100%);
}

.tawla-land-steps .tawla-land-h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.tawla-land-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
/* ثلاث أعمدة فقط على شاشات عريضة — يمنع ضيق البطاقات وقص النص في RTL */
@media (min-width: 960px) {
  .tawla-land-steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
  }
}
.tawla-land-steps__list li {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  background: var(--land-elev);
  border-radius: var(--land-r-lg);
  padding: 1.2rem 1.2rem 1.25rem;
  position: relative;
  border: 1px solid var(--land-line);
  box-shadow: var(--land-shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.tawla-land-steps__list li:hover {
  border-color: rgba(197, 160, 89, 0.22);
  box-shadow: var(--land-shadow-hover);
}

.tawla-land-steps__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}
.tawla-land-steps__num {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--land-hero-dark);
  color: var(--land-accent);
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.tawla-land-steps__head .tawla-land-h3 {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  line-height: 1.35;
  font-size: 1.08rem;
  text-align: start;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.tawla-land-steps__list p {
  margin: 0;
  color: var(--land-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  text-align: start;
  padding-inline-start: 0.15rem;
}
.tawla-land-steps__time {
  text-align: center;
  color: var(--land-muted);
  margin: 1.25em 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 40rem;
  margin-inline: auto;
}
.tawla-land-steps__cta-wrap {
  text-align: center;
  margin: 1.2em 0 0;
}

.tawla-land-feat__grid {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .tawla-land-feat__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}
.tawla-land-feat__grid li {
  display: flex;
  gap: 0.55rem;
  background: var(--land-elev);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--land-line);
}
.tawla-land-check {
  color: var(--land-accent);
  flex-shrink: 0;
  margin-top: 0.12rem;
}
.tawla-land-feat__grid p {
  margin: 0.1em 0 0;
  color: var(--land-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.tawla-land-preview {
  background: var(--land-surface);
  border-block: 1px solid var(--land-line);
}

.tawla-land-preview__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 1.75rem);
  align-items: center;
}
@media (min-width: 800px) {
  .tawla-land-preview__row {
    grid-template-columns: 1fr 1fr;
  }
}
.tawla-land-preview__mock {
  text-align: center;
}
.tawla-land-preview__img {
  max-width: min(88vw, 280px);
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: var(--land-shadow-hover);
}

.tawla-land-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0.85rem 0 0;
  margin-inline: calc(-1 * var(--land-px));
  padding-inline: var(--land-px);
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.4) transparent;
}
.tawla-land-table {
  width: 100%;
  min-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--land-elev);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--land-line);
  font-size: clamp(0.86rem, 2.1vw, 0.92rem);
}
.tawla-land-table th,
.tawla-land-table td {
  padding: 0.7rem 0.75rem;
  text-align: start;
  border-bottom: 1px solid var(--land-line);
}
.tawla-land-table tr:last-child td {
  border-bottom: 0;
}
.tawla-land-table thead th {
  background: rgba(26, 20, 16, 0.04);
  font-weight: 700;
  color: var(--land-ink);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.tawla-land-compare__note {
  font-size: 0.88rem;
  color: var(--land-muted);
  margin: 0.75rem 0 0;
  line-height: 1.5;
  padding: 0 var(--land-px);
}

.tawla-land-testi__grid {
  list-style: none;
  margin: 0.4em 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .tawla-land-testi__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tawla-land-testi__card {
  background: var(--land-elev);
  border-radius: var(--land-r-md);
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--land-line);
  box-shadow: var(--land-shadow);
}
.tawla-land-testi__quote {
  margin: 0 0 0.5em;
  line-height: 1.55;
  color: var(--land-ink);
  font-size: 0.95rem;
}
.tawla-land-testi__who {
  margin: 0;
  color: var(--land-muted);
  font-size: 0.86rem;
}

.tawla-land-faq__item {
  border: 1px solid var(--land-line);
  border-radius: 14px;
  margin-bottom: 0.45rem;
  background: var(--land-elev);
  overflow: hidden;
}
.tawla-land-faq__q {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0.85rem 0.95rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: rgba(26, 20, 16, 0.02);
  border: 0;
  color: var(--land-ink);
  min-height: 48px;
  font-size: 0.94rem;
  line-height: 1.35;
}
.tawla-land-faq__q[aria-expanded="true"] {
  background: rgba(197, 160, 89, 0.08);
  color: var(--land-hero-dark);
}
.tawla-land-faq__a {
  padding: 0.65rem 0.95rem 0.95rem;
  background: var(--land-elev);
  border-top: 1px solid var(--land-line);
}
.tawla-land-faq__a p {
  margin: 0;
  line-height: 1.6;
  color: var(--land-muted);
  font-size: 0.92rem;
}

.tawla-land-trust__row {
  list-style: none;
  margin: 0.4em 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .tawla-land-trust__row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.tawla-land-trust__row li {
  text-align: center;
  background: var(--land-elev);
  border-radius: 14px;
  padding: 0.95rem 0.85rem;
  border: 1px solid var(--land-line);
  box-shadow: var(--land-shadow);
}
.tawla-land-trust__ico {
  color: var(--land-accent);
  display: flex;
  justify-content: center;
  margin: 0 0 0.25em;
}
.tawla-land-trust__row p {
  margin: 0.25em 0 0;
  font-size: 0.86rem;
  color: var(--land-muted);
  line-height: 1.4;
}

.tawla-land-urge {
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.09) 0%, rgba(250, 247, 242, 0.9) 100%);
  border-block: 1px solid rgba(197, 160, 89, 0.2);
}
.tawla-land-urge .tawla-container {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}
.tawla-land-urge .tawla-land-h2 {
  text-align: center;
  margin-inline: auto;
}
.tawla-land-urge__num {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  margin: 0 0 0.55em;
  color: var(--land-ink);
}
.tawla-land-urge__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--land-ink);
  align-items: center;
}
.tawla-land-urge__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  text-align: center;
}

.tawla-land-mega {
  text-align: center;
  background: linear-gradient(165deg, #fff 0%, rgba(197, 160, 89, 0.12) 45%, #faf5ec 100%);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
}
.tawla-land-mega__title {
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.3em;
  color: var(--land-hero-dark);
}
.tawla-land-mega__sub {
  margin: 0 0 0.45em;
  color: var(--land-muted);
  font-size: 1rem;
}
.tawla-land-mega__badges {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--land-ink);
}
@media (min-width: 600px) {
  .tawla-land-mega__badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.15rem;
  }
}
.tawla-land-mega__badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* طفل body — فوق الهيدر (40) وتحت نافذات الإدمن الكبيرة */
.tawla-land-mcta {
  position: fixed;
  z-index: 10050;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.5rem 1rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #15110d 0%, #0a0806 48%, #050403 100%);
  color: #fff8f0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(197, 160, 89, 0.28);
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease;
  isolation: isolate;
}
.tawla-land-mcta:hover,
.tawla-land-mcta:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #1a1510 0%, #0f0c09 55%, #080605 100%);
  outline: none;
}
.tawla-land-mcta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tawla-orange), transparent);
  opacity: 0.5;
  pointer-events: none;
}
.tawla-land-mcta__label {
  pointer-events: none;
}
