/* ============================================================
   فسحة — Fusha marketing site
   Deep green + warm gold + cream · Arabic RTL · Tajawal
   ============================================================ */

:root {
  --green-950: #07291F;
  --green-900: #0A3A2D;
  --green-800: #0E4D3C;
  --green-700: #14573F;
  --green-600: #1B6B4F;
  --green-100: #E3EFE9;
  --gold: #C9A227;
  --gold-bright: #D4AF37;
  --gold-pale: #F0E2B6;
  --cream: #FAF7F0;
  --cream-dark: #F1EBDD;
  --white: #FFFFFF;
  --ink: #1C2B26;
  --muted: #5C6B64;
  --danger: #C0392B;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(14, 77, 60, 0.08);
  --shadow-lift: 0 18px 44px rgba(14, 77, 60, 0.14);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
}

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

/* Enforce [hidden] — overrides any display set by component classes */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn-lg { min-height: 56px; padding: 16px 36px; font-size: 1.08rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--green-950);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { box-shadow: 0 10px 26px rgba(201, 162, 39, 0.5); transform: translateY(-2px); }
.btn-gold:hover:active { transform: scale(0.97); }

.btn-outline {
  background: transparent;
  color: var(--green-800);
  box-shadow: inset 0 0 0 2px var(--green-800);
}
.btn-outline:hover { background: var(--green-800); color: var(--cream); }

.btn-green {
  background: var(--green-800);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(14, 77, 60, 0.25);
}
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-green:hover:active { transform: scale(0.97); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  box-shadow: inset 0 0 0 1.5px #D8D2C2;
}
.btn-ghost:hover { color: var(--green-800); box-shadow: inset 0 0 0 1.5px var(--green-800); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright) 55%, #B8901C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.navbar.is-scrolled {
  background: rgba(250, 247, 240, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(14, 77, 60, 0.1);
  padding: 8px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: -0.5px;
}
.brand-light .brand-name { color: var(--cream); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-inline-start: auto;
}
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: color 0.2s var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-out);
}
.nav-link:hover { color: var(--green-800); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }
.nav-cta-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: none;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--green-800);
  transition: transform 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 4l6 24-6 24-6-24z M4 28l24-6 24 6-24 6z' fill='none' stroke='%230E4D3C' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 22px;
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-800);
  box-shadow: var(--shadow-soft);
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--green-900);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 32ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

/* store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-badges-center { justify-content: center; margin-top: 44px; }
.store-badges-col { flex-direction: column; align-items: flex-start; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 8px 20px;
  background: var(--green-950);
  color: var(--cream);
  border-radius: 13px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(7, 41, 31, 0.3); }
.store-badge:active { transform: scale(0.97); }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.25; text-align: start; }
.store-badge-text small { font-size: 0.7rem; opacity: 0.75; }
.store-badge-text strong { font-size: 0.98rem; font-weight: 700; }

/* collage */
.hero-visual { position: relative; }
.collage {
  position: relative;
  height: 540px;
}
.collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  border: 5px solid var(--white);
  background: var(--white);
}
.collage-card img { width: 100%; height: 100%; object-fit: cover; }

.collage-main {
  inset-inline-start: 12%;
  top: 30px;
  width: 62%;
  height: 470px;
  transform: rotate(-2.5deg);
  z-index: 2;
}
.collage-main figcaption {
  position: absolute;
  inset-inline: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(250, 247, 240, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-900);
}
.collage-price { color: var(--gold); font-size: 0.85rem; white-space: nowrap; }

.collage-top {
  top: 0;
  inset-inline-end: 0;
  width: 44%;
  height: 180px;
  transform: rotate(3.5deg);
  z-index: 3;
}
.collage-bottom {
  bottom: 0;
  inset-inline-end: 4%;
  width: 46%;
  height: 200px;
  transform: rotate(-3deg);
  z-index: 3;
}

.floating-pin {
  position: absolute;
  top: 6%;
  inset-inline-start: 6%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 50% 50% 50% 14px;
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.45);
  animation: floatY 4s ease-in-out infinite;
}
.collage-blob {
  position: absolute;
  inset-inline-end: -60px;
  bottom: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 10px 0 70px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  position: relative;
  background: var(--white);
  border: 1px solid #EFE9DA;
  border-radius: var(--radius-md);
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.stat-card-live .stat-number { color: var(--gold); }
.stat-label { display: block; margin-top: 4px; color: var(--muted); font-weight: 500; font-size: 0.95rem; }

.stat-live-badge {
  position: absolute;
  top: -11px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  background: var(--green-800);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 54px;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; }
.section-head-light .section-title { color: var(--cream); }
.section-head-light .section-sub { color: rgba(250, 247, 240, 0.72); }
.section-head-light .section-eyebrow { background: rgba(212, 175, 55, 0.16); color: var(--gold-bright); }

/* ============================================================
   FOUNDING OFFER
   ============================================================ */
.founding {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(700px 420px at 8% 110%, rgba(212, 175, 55, 0.1), transparent 60%),
    linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  overflow: hidden;
}
.founding-pattern, .iraq-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath d='M32 6l7 26-7 26-7-26z M6 32l26-7 26 7-26 7z' fill='none' stroke='%23D4AF37' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.tier-card {
  position: relative;
  padding: 30px 22px 26px;
  background: rgba(250, 247, 240, 0.06);
  border: 1px solid rgba(250, 247, 240, 0.14);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--cream);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.tier-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25); }

.tier-medal {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
}
.tier-gold .tier-medal { background: rgba(212, 175, 55, 0.18); color: var(--gold-bright); }
.tier-silver .tier-medal { background: rgba(200, 208, 214, 0.14); color: #C8D0D6; }
.tier-bronze .tier-medal { background: rgba(205, 133, 63, 0.16); color: #D99A66; }
.tier-founder .tier-medal { background: rgba(212, 175, 55, 0.14); color: var(--gold-pale); }

.tier-range { display: block; font-size: 0.9rem; font-weight: 700; opacity: 0.8; margin-bottom: 8px; }
.tier-value { font-size: 1.5rem; font-weight: 800; line-height: 1.35; margin-bottom: 12px; }
.tier-gold .tier-value { color: var(--gold-bright); }

.tier-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.tier-gold .tier-tag { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--green-950); }
.tier-silver .tier-tag { background: rgba(200, 208, 214, 0.18); color: #DDE3E8; }
.tier-bronze .tier-tag { background: rgba(205, 133, 63, 0.2); color: #E8B488; }
.tier-founder .tier-tag { background: rgba(212, 175, 55, 0.16); color: var(--gold-pale); }

.tier-gold {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.tier-guarantee {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(250, 247, 240, 0.2);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--gold-pale);
}

.founding-progress {
  max-width: 720px;
  margin: 52px auto 0;
  text-align: center;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(250, 247, 240, 0.85);
  font-size: 0.95rem;
}
.progress-meta strong { color: var(--gold-bright); }
.progress-track {
  height: 14px;
  background: rgba(250, 247, 240, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 999px;
  transition: width 1.1s var(--ease-out);
}
.founding-cta { margin-top: 30px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 96px 0; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.how-col {
  background: var(--white);
  border: 1px solid #EFE9DA;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
}
.how-col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gold-pale);
}
.how-col-title svg { color: var(--gold); flex-shrink: 0; }

.steps { list-style: none; }
.step {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 30px;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  inset-inline-start: 23px;
  top: 50px;
  bottom: 4px;
  width: 0;
  border-inline-start: 2px dotted var(--gold);
  opacity: 0.55;
}
.step-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 6px 14px rgba(14, 77, 60, 0.25);
}
.step-body h4 { font-size: 1.07rem; font-weight: 700; color: var(--green-900); margin-bottom: 4px; }
.step-body p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   APP SHOWCASE
   ============================================================ */
.showcase {
  padding: 96px 0;
  background: var(--cream-dark);
}
.phones-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 56px;
}
.phone-wrap { text-align: center; }

.phone {
  position: relative;
  width: min(290px, 100%);
  margin: 0 auto 22px;
  aspect-ratio: 9 / 18.6;
  background: var(--green-950);
  border-radius: 42px;
  padding: 11px;
  box-shadow: 0 30px 60px rgba(7, 41, 31, 0.3), inset 0 0 0 2px rgba(212, 175, 55, 0.25);
  transition: transform 0.25s var(--ease-out);
}
.phone:hover { transform: translateY(-6px); }
.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  background: var(--green-950);
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--cream);
  padding: 44px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: start;
}

/* customer mock */
.mock-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.mock-search svg { color: var(--gold); flex-shrink: 0; }
.mock-chips { display: flex; gap: 7px; }
.mock-chip {
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #E8E1D0;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}
.mock-chip-active { background: var(--green-800); border-color: var(--green-800); color: var(--cream); }

.mock-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.mock-card-img { position: relative; height: 118px; }
.mock-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mock-heart {
  position: absolute;
  top: 9px;
  inset-inline-end: 9px;
  display: grid;
  place-items: center;
  width: 27px; height: 27px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}
.mock-card-body { padding: 11px 13px 13px; display: flex; flex-direction: column; gap: 3px; }
.mock-card-row { display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.mock-card-row strong { font-size: 0.85rem; color: var(--green-900); }
.mock-rating { display: inline-flex; align-items: center; gap: 3px; font-size: 0.74rem; font-weight: 700; color: var(--ink); }
.mock-loc { font-size: 0.72rem; color: var(--muted); }
.mock-price { font-size: 0.88rem; font-weight: 800; color: var(--green-800); margin-top: 2px; }
.mock-price small { font-weight: 500; color: var(--muted); }

.mock-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 9px 6px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.mock-nav-item { color: #A8B3AD; display: grid; place-items: center; width: 30px; height: 30px; }
.mock-nav-active { color: var(--green-800); }

/* owner mock */
.phone-owner { background: #F4F1E8; }
.mock-owner-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--green-900);
}
.mock-avatar {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 800;
}
.mock-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mock-tile {
  background: var(--white);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.mock-tile strong { font-size: 1.05rem; font-weight: 800; color: var(--green-800); }
.mock-tile span { font-size: 0.68rem; color: var(--muted); font-weight: 500; }
.mock-tile-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); }
.mock-tile-gold strong, .mock-tile-gold span { color: var(--green-950); }

.mock-booking {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
}
.mock-booking-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.mock-booking-muted .mock-booking-dot { background: #B9C4BE; }
.mock-booking-body { display: flex; flex-direction: column; min-width: 0; }
.mock-booking-body strong { font-size: 0.76rem; color: var(--green-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-booking-body span { font-size: 0.68rem; color: var(--muted); }
.mock-booking-badge {
  margin-inline-start: auto;
  padding: 2px 9px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  flex-shrink: 0;
}
.mock-btn {
  margin-top: auto;
  padding: 11px;
  border: none;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.82rem;
  pointer-events: none;
}

.phone-caption { font-size: 1.2rem; font-weight: 800; color: var(--green-900); margin-bottom: 4px; }
.phone-caption-sub { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   IRAQ MAP
   ============================================================ */
.iraq {
  position: relative;
  padding: 96px 0 110px;
  background: linear-gradient(170deg, var(--green-950), var(--green-900) 60%, var(--green-800));
  overflow: hidden;
}
.iraq-stage {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.iraq-svg {
  display: block;
  width: min(480px, 78%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}
.iraq-path { stroke-dasharray: none; }

.map-pin .pin-core { fill: var(--gold-bright); }
.map-pin .pin-pulse {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: pinPulse 2.6s ease-out infinite;
  animation-delay: var(--pin-delay, 0s);
}
@keyframes pinPulse {
  0% { opacity: 0.9; transform: scale(0.4); }
  70% { opacity: 0; transform: scale(2.4); }
  100% { opacity: 0; transform: scale(2.4); }
}

.map-prop {
  position: absolute;
  width: 215px;
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease-out);
  z-index: 3;
}
.map-prop:hover { transform: translateY(-4px); }
.map-prop img { height: 105px; width: 100%; object-fit: cover; }
.map-prop-body { padding: 10px 14px 13px; display: flex; flex-direction: column; gap: 2px; }
.map-prop-body strong { color: var(--green-900); font-size: 0.95rem; }
.map-prop-body span { color: var(--muted); font-size: 0.8rem; }

.map-prop-1 { top: 4%; inset-inline-start: 0; transform: rotate(-2deg); }
.map-prop-2 { top: 38%; inset-inline-end: 0; transform: rotate(2deg); }
.map-prop-3 { bottom: 2%; inset-inline-start: 4%; transform: rotate(1.5deg); }
.map-prop-4 { top: 2%; inset-inline-end: 5%; transform: rotate(-1.5deg); }

/* ============================================================
   TRUST
   ============================================================ */
.trust { padding: 96px 0; }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}
.badge-card {
  background: var(--white);
  border: 1px solid #EFE9DA;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.badge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 22px;
  margin-bottom: 18px;
}
.badge-green { background: rgba(27, 107, 79, 0.1); color: var(--green-600); }
.badge-blue { background: rgba(41, 98, 174, 0.1); color: #2962AE; }
.badge-gold { background: rgba(201, 162, 39, 0.13); color: var(--gold); }
.badge-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--green-900); margin-bottom: 8px; }
.badge-card p { color: var(--muted); font-size: 0.95rem; }

.guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: rgba(27, 107, 79, 0.07);
  border: 1px solid rgba(27, 107, 79, 0.14);
  border-radius: 999px;
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.95rem;
}
.guarantee svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   REGISTRATION FORM
   ============================================================ */
.register {
  padding: 96px 0;
  background:
    radial-gradient(700px 380px at 92% 0%, rgba(212, 175, 55, 0.1), transparent 60%),
    var(--cream-dark);
}
.register-container { max-width: 780px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #EFE9DA;
  box-shadow: var(--shadow-lift);
  padding: 38px clamp(20px, 5vw, 46px) 42px;
  overflow: hidden;
}

/* wizard progress */
.wizard-progress { margin-bottom: 34px; }
.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex: 1;
}
.wizard-dot {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--muted);
  font-weight: 800;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.wizard-label { font-size: 0.8rem; font-weight: 700; color: var(--muted); transition: color 0.3s var(--ease-out); }
.wizard-step.is-active .wizard-dot {
  background: var(--green-800);
  color: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(14, 77, 60, 0.12);
}
.wizard-step.is-active .wizard-label { color: var(--green-800); }
.wizard-step.is-done .wizard-dot { background: var(--gold); color: var(--green-950); }

.wizard-bar { height: 6px; background: var(--cream-dark); border-radius: 999px; overflow: hidden; }
.wizard-bar-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--green-700), var(--gold));
  border-radius: 999px;
  transition: width 0.4s var(--ease-out);
}

/* honeypot — visually removed, still focusable-skipped */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* steps */
.form-step {
  display: none;
  border: none;
}
.form-step.is-active { display: block; animation: stepIn 0.35s var(--ease-out); }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(-26px); }
  to { opacity: 1; transform: none; }
}
.form-step.anim-back.is-active { animation-name: stepInBack; }
@keyframes stepInBack {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: none; }
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 24px;
  padding: 0;
}

.field { margin-bottom: 20px; }
.field label, .field-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.req { color: var(--danger); }
.opt { color: var(--muted); font-weight: 400; font-size: 0.85rem; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid #E4DCC8;
  border-radius: 13px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C6B64' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-inline-end: 16px;
  padding-inline-start: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 87, 63, 0.1);
}
.field input[dir="ltr"] { text-align: end; }

.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}

.field-hint { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.field-error {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--danger);
  margin-top: 6px;
}
.field-error.is-visible { display: block; }
.field-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.char-counter { font-size: 0.8rem; color: var(--muted); margin-inline-start: auto; margin-top: 6px; font-variant-numeric: tabular-nums; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-row-4 { grid-template-columns: repeat(4, 1fr); }

/* pills */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  min-height: 48px;
  padding: 10px 20px;
  border: 1.5px solid #E4DCC8;
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--muted);
  transition: transform 0.15s var(--ease-out), background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.pill:hover { border-color: var(--green-700); color: var(--green-800); }
.pill:active { transform: scale(0.97); }
.pill.is-selected {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--cream);
  box-shadow: 0 6px 14px rgba(14, 77, 60, 0.22);
}

/* price input */
.price-input { position: relative; }
.price-input input { padding-inline-start: 64px; }
.price-unit {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  padding: 0 16px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green-800);
  background: rgba(201, 162, 39, 0.12);
  border-start-start-radius: 13px;
  border-end-start-radius: 13px;
  pointer-events: none;
}

/* switch */
.toggle-row { display: flex; align-items: center; gap: 12px; margin: 26px 0 14px; }
.toggle-label { font-weight: 700; cursor: pointer; }
.switch { position: relative; display: inline-block; width: 52px; height: 30px; flex-shrink: 0; cursor: pointer; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch-track {
  position: absolute;
  inset: 0;
  background: #DDD5C2;
  border-radius: 999px;
  transition: background-color 0.25s var(--ease-out);
  pointer-events: none;
}
.switch-track::after {
  content: '';
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 24px; height: 24px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease-out);
}
.switch input:checked + .switch-track { background: var(--green-700); }
.switch input:checked + .switch-track::after { transform: translateX(-22px); }
.switch input:focus-visible + .switch-track { outline: 3px solid var(--gold); outline-offset: 2px; }

.shift-fields { padding: 6px 0 4px; }

/* collapsible */
.collapsible-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  margin: 18px 0 0;
  background: var(--cream);
  border: 1.5px dashed #D9D0BA;
  border-radius: 13px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-800);
  transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
.collapsible-toggle:hover { border-color: var(--green-700); }
.collapsible-toggle .chev { transition: transform 0.25s var(--ease-out); }
.collapsible-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.collapsible { padding-top: 20px; }

/* amenities */
.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 14px;
  background: var(--cream);
  border: 1.5px solid #E4DCC8;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
  user-select: none;
}
.amenity:hover { border-color: var(--green-700); }
.amenity input { position: absolute; opacity: 0; pointer-events: none; }
.amenity-box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid #C9C0A8;
  border-radius: 6px;
  background: var(--white);
  transition: background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  position: relative;
}
.amenity-box::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF7F0' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5l5 5 10-11'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.amenity input:checked ~ .amenity-box { background: var(--green-800); border-color: var(--green-800); }
.amenity input:checked ~ .amenity-box::after { opacity: 1; transform: scale(1); }
.amenity input:focus-visible ~ .amenity-box { outline: 3px solid var(--gold); outline-offset: 2px; }
.amenity:has(input:checked) { border-color: var(--green-800); background: rgba(14, 77, 60, 0.05); }

/* dropzone */
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 40px 22px;
  border: 2px dashed #CBBE96;
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--green-800);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.dropzone:hover, .dropzone.is-dragover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
}
.dropzone.is-dragover { transform: scale(1.01); }
.dropzone svg { color: var(--gold); margin-bottom: 4px; }
.dropzone strong { font-size: 1.02rem; }
.dropzone span { font-size: 0.85rem; color: var(--muted); }

.previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-soft);
  animation: previewIn 0.3s var(--ease-out);
}
@keyframes previewIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: none; }
}
.preview img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove {
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border: none;
  border-radius: 50%;
  background: rgba(28, 43, 38, 0.75);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  transition: background-color 0.2s var(--ease-out), transform 0.15s var(--ease-out);
}
.preview-remove:hover { background: var(--danger); }
.preview-remove:active { transform: scale(0.9); }
.preview-order {
  position: absolute;
  bottom: 5px;
  inset-inline-start: 5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: rgba(14, 77, 60, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* Cloudflare Turnstile */
.turnstile-field { align-items: flex-start; }
.turnstile-field #turnstileContainer { min-height: 65px; }

/* review summary */
.review-summary {
  margin-top: 26px;
  padding: 22px 24px;
  background: var(--cream);
  border: 1.5px solid var(--gold-pale);
  border-radius: var(--radius-md);
}
.review-summary h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-800);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.review-summary h4 svg { color: var(--gold); }
.review-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 18px;
  font-size: 0.92rem;
}
.review-grid dt { font-weight: 700; color: var(--muted); white-space: nowrap; }
.review-grid dd { color: var(--ink); overflow-wrap: anywhere; }

/* form nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #F0EADB;
}
.form-nav .btn { min-width: 130px; }
#submitBtn { flex: 1; }
#submitBtn[disabled] { opacity: 0.7; cursor: wait; transform: none; }

.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(7, 41, 31, 0.25);
  border-top-color: var(--green-950);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: -4px;
  margin-inline-end: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* success card */
.success-card {
  text-align: center;
  padding: 30px 10px 14px;
  animation: stepIn 0.45s var(--ease-out);
}
.success-check { margin-bottom: 18px; }
.success-circle {
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: drawCircle 0.7s var(--ease-out) 0.1s forwards;
}
.success-tick {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCircle 0.45s var(--ease-out) 0.65s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
.success-card h3 { font-size: 1.7rem; font-weight: 800; color: var(--green-900); margin-bottom: 8px; }
.success-card p { color: var(--muted); margin-bottom: 6px; }
.success-ref { margin: 14px 0 24px !important; }
.success-ref code {
  padding: 4px 14px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

/* toast */
.toast {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(20px);
  z-index: 200;
  max-width: min(480px, calc(100vw - 40px));
  padding: 15px 24px;
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: translateX(50%) translateY(0); }
.toast.toast-success { background: var(--green-700); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 96px 0; }
.faq-container { max-width: 760px; }

.accordion-item {
  background: var(--white);
  border: 1px solid #EFE9DA;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.accordion-item:has(.accordion-head[aria-expanded="true"]) {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-soft);
}
.accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 60px;
  padding: 17px 22px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--green-900);
  text-align: start;
}
.accordion-head .chev { flex-shrink: 0; color: var(--gold); transition: transform 0.3s var(--ease-out); }
.accordion-head[aria-expanded="true"] .chev { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.accordion-body p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--green-900), var(--green-950));
  color: rgba(250, 247, 240, 0.82);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-tag { margin: 16px 0 20px; font-size: 0.95rem; max-width: 30ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(250, 247, 240, 0.08);
  color: var(--gold-bright);
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.socials a:hover { background: rgba(212, 175, 55, 0.2); transform: translateY(-3px); }
.socials a:active { transform: scale(0.95); }

.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 {
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.footer-col a { transition: color 0.2s var(--ease-out); width: fit-content; }
.footer-col a:hover { color: var(--gold-bright); }

.footer .store-badge { background: rgba(250, 247, 240, 0.06); }

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(250, 247, 240, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(250, 247, 240, 0.4);
}
.footer-legal a {
  color: rgba(250, 247, 240, 0.55);
  transition: color 0.2s var(--ease-out);
}
.footer-legal a:hover { color: var(--gold-bright); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { gap: 36px; }
  .collage { height: 470px; }
  .collage-main { height: 410px; }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-prop { width: 190px; }
  .map-prop img { height: 92px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 22px;
    background: rgba(250, 247, 240, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 30px rgba(14, 77, 60, 0.14);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s var(--ease-out), opacity 0.28s var(--ease-out), visibility 0.28s;
  }
  .nav-links.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-link { padding: 13px 14px; font-size: 1.05rem; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 10px; }
  .hamburger { display: flex; margin-inline-start: auto; }
  .navbar { background: rgba(250, 247, 240, 0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }

  .hero { padding: 120px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero .store-badges { justify-content: center; }
  .collage { height: 420px; max-width: 480px; margin-inline: auto; }
  .collage-main { height: 360px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { padding-bottom: 56px; }

  .founding, .how, .showcase, .iraq, .trust, .register, .faq { padding: 72px 0; }

  .how-grid { grid-template-columns: 1fr; }
  .phones-grid { grid-template-columns: minmax(0, 360px); gap: 44px; }

  .badges-grid { grid-template-columns: 1fr; }

  .iraq-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .iraq-svg { width: min(420px, 92%); margin-bottom: 12px; }
  .map-prop {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
  }
  .map-prop img { width: 110px; height: 76px; flex-shrink: 0; }
  .map-prop:hover { transform: none; }

  .field-row, .field-row-4 { grid-template-columns: 1fr 1fr; }
  .amenities { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 36px); }

  .hero-title { font-size: 1.9rem; }
  .hero-ctas .btn { width: 100%; }
  .collage { height: 340px; }
  .collage-main { height: 290px; width: 68%; inset-inline-start: 4%; }
  .collage-top { width: 48%; height: 130px; }
  .collage-bottom { width: 50%; height: 145px; inset-inline-end: 0; }
  .floating-pin { width: 48px; height: 48px; }
  .collage-main figcaption { flex-direction: column; align-items: flex-start; gap: 2px; font-size: 0.82rem; padding: 8px 12px; }

  .stats-grid { gap: 12px; }
  .stat-card { padding: 22px 12px 18px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.82rem; }

  .tiers-grid { grid-template-columns: 1fr; }

  .wizard-label { font-size: 0.68rem; }
  .wizard-dot { width: 34px; height: 34px; font-size: 0.9rem; }

  .field-row, .field-row-4 { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .form-card { padding: 28px 18px 32px; }
  .form-nav { flex-wrap: wrap; }
  .form-nav .btn { flex: 1; min-width: 110px; }

  .pills { gap: 8px; }
  .pill { padding: 10px 16px; font-size: 0.9rem; flex: 1 1 calc(50% - 8px); }

  .review-grid { grid-template-columns: 1fr; gap: 2px; }
  .review-grid dt { margin-top: 8px; }

  .phone { width: min(265px, 88vw); }

  .progress-meta { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   BRAND LOGO (real app icon replaces SVG leaf)
   ============================================================ */
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-light .brand-logo { filter: brightness(0) invert(1); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(20px);
  background: var(--green-900);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  max-width: min(440px, calc(100vw - 40px));
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.toast-error { background: #a92a1e; }
.toast-show {
  opacity: 1;
  transform: translateX(50%) translateY(0);
  pointer-events: auto;
}

/* ============================================================
   SUCCESS ANIMATION
   ============================================================ */
.success-circle {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.success-tick {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}
.success-circle.draw { stroke-dashoffset: 0; }
.success-tick.draw { stroke-dashoffset: 0; }

/* ============================================================
   REVIEW SUMMARY
   ============================================================ */
.rv-row { display: contents; }
.review-grid { grid-template-columns: auto 1fr; }

/* ============================================================
   UPLOAD STATES
   ============================================================ */
.dropzone.uploading { opacity: 0.7; cursor: wait; }
.dropzone.drag-over {
  border-color: var(--green-600);
  background: var(--green-100);
  transform: scale(1.01);
}

/* ============================================================
   NEAR LIMIT COUNTER
   ============================================================ */
.char-counter.near-limit { color: #e06c00; font-weight: 700; }
.char-counter.is-over { color: var(--danger); font-weight: 700; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .floating-pin, .pin-pulse, .live-dot { animation: none !important; }
}
