/* LANDING-01 · صفحة البيع قبل الدخول. نفس ألوان الهوية وخطّها في styles.css. */
:root {
  --ink: #16231f;
  --ink-deep: #101614;
  --slate: #5f6a66;
  --line: #dfe7e3;
  --paper: #f7f8f4;
  --white: #ffffff;
  --green: #176b52;
  --green-deep: #0f4f3c;
  --green-mist: #eaf4ef;
  --sand: #d9b36c;
  --font: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 50px rgb(16 22 20 / 10%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.wrap {
  width: min(1180px, 100% - 32px);
  margin-inline: auto;
}

/* ---------- header ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.top-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 22px;
  margin-inline-start: auto;
}

.links a {
  color: var(--slate);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.links a:hover { color: var(--green); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-small { min-height: 42px; padding: 0 20px; }

.btn-solid { color: var(--white); background: var(--green); }
.btn-solid:hover { background: var(--green-deep); }

.btn-line { color: var(--ink); border: 1.5px solid var(--line); background: var(--white); }
.btn-line:hover { border-color: var(--green); }

.btn-light { color: var(--green-deep); background: var(--white); }
.btn-ghost-light { color: var(--white); border: 1.5px solid rgb(255 255 255 / 45%); }

.btn-whatsapp { color: var(--white); background: #1f8f4e; }
.btn-whatsapp:hover { background: #17753f; }

.wa-float {
  position: fixed;
  z-index: 20;
  inset-inline-start: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1f8f4e;
  box-shadow: 0 10px 28px rgb(16 22 20 / 28%);
  transition: transform 0.15s ease;
}

.wa-float:hover { transform: scale(1.06); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-row.center { justify-content: center; }

/* ---------- stage: full-bleed site footage ---------- */
.stage {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(88vh, 820px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep) url("/site/shots/stage-poster.jpg") center / cover no-repeat;
}

.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.stage-video.is-fading { opacity: 0; }

.stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgb(16 22 20 / 88%) 0%, rgb(16 22 20 / 55%) 45%, rgb(16 22 20 / 25%) 100%);
}

.stage-copy {
  position: relative;
  padding: 0 0 88px;
}

.eyebrow.light {
  color: var(--white);
  background: rgb(255 255 255 / 14%);
  backdrop-filter: blur(6px);
}

.stage-title {
  max-width: 900px;
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 1.15;
}

.stage-title span { color: var(--sand); }

.stage-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 86%);
  font-size: 1.15rem;
}

.hero-h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* ---------- hero ---------- */
.hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(900px 420px at 85% 0%, var(--green-mist), transparent 70%),
    linear-gradient(180deg, var(--paper), var(--white));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 14px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-mist);
  font-size: 0.85rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height: 1.22;
  font-weight: 800;
  text-wrap: balance;
}

h1 span {
  display: block;
  margin-top: 8px;
  color: var(--green);
}

.lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--sand);
}

.hero-shot {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-shot img { border-radius: var(--radius); }

/* ---------- sections ---------- */
.band { padding: 84px 0; }
.band.soft { background: var(--paper); }

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.3;
  font-weight: 800;
  text-wrap: balance;
}

.section-lede {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--slate);
}

.cards {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.band.soft .card { background: var(--white); }

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.card p { margin: 0; color: var(--slate); }

.num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 10px;
  color: var(--green);
  background: var(--green-mist);
  font-size: 1.1rem;
}

.card.role ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card.role li {
  position: relative;
  padding-inline-start: 22px;
  margin-top: 10px;
  color: var(--slate);
}

.card.role li::before,
.checks li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--green);
  font-weight: 800;
}

.card.mini { padding: 22px; }
.card.mini h3 { font-size: 1.02rem; }
.card.mini p { font-size: 0.95rem; }

/* ---------- flow ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.flow li {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: step;
}

.flow li::before {
  content: counter(step, arabic-indic);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
}

.flow strong { display: block; font-size: 1.1rem; }
.flow span { display: block; margin-top: 6px; color: var(--slate); font-size: 0.92rem; line-height: 1.7; }

/* ---------- egypt ---------- */
.egypt-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.checks {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding: 18px 22px;
  padding-inline-start: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate);
}

.checks li::before { inset-inline-start: 20px; top: 18px; }
.checks strong { color: var(--ink); }

/* ---------- closing ---------- */
.closing { padding: 0 0 84px; }

.closing-box {
  padding: 64px 32px;
  border-radius: calc(var(--radius) + 8px);
  color: var(--white);
  background:
    radial-gradient(600px 300px at 15% 0%, rgb(217 179 108 / 25%), transparent 70%),
    linear-gradient(135deg, var(--green), var(--green-deep));
  text-align: center;
}

.closing-box p { max-width: 560px; margin: 14px auto 0; color: rgb(255 255 255 / 85%); }

/* ---------- footer ---------- */
.foot {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.9rem;
}

.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.foot nav { display: flex; gap: 18px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--green); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .flow { grid-template-columns: repeat(2, 1fr); }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .links { display: none; }
  .top-row { justify-content: space-between; }
  .hero { padding: 44px 0 56px; }
  .hero-grid, .egypt-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards.three { grid-template-columns: 1fr; }
  .band { padding: 60px 0; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .flow, .cards.four { grid-template-columns: 1fr; }
  .cta-row .btn { flex: 1 1 100%; }
  .card { padding: 22px; }
  .closing-box { padding: 44px 20px; }
}
