:root {
  --purple: #b98ae0;
  --purple-dark: #68467f;
  --purple-soft: #f6f0fb;
  --lime: #91c83e;
  --ink: #261d2d;
  --muted: #756d7b;
  --line: #e9dff0;
  --paper: #fffdfd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cairo", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 20;
}
.brand img { width: 88px; height: 52px; object-fit: contain; }
nav { display: flex; gap: 34px; font-size: 14px; font-weight: 700; }
nav a { transition: color .2s; }
nav a:hover { color: var(--purple-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 16px;
  color: #fff;
  background: var(--purple-dark);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(104, 70, 127, .18);
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(104, 70, 127, .25); }
.button-small { min-height: 42px; padding: 0 21px; border-radius: 13px; font-size: 13px; }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 40px;
  padding: 45px 0 80px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 9px; background: var(--lime); }
.hero h1 {
  margin: 18px 0;
  font-size: clamp(52px, 6.4vw, 90px);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--purple); font-style: normal; }
.hero-copy > p { max-width: 590px; color: var(--muted); font-size: 18px; line-height: 2; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 32px; }
.text-link { font-weight: 800; font-size: 14px; }
.text-link span { color: var(--lime); font-size: 20px; margin-right: 4px; }
.trust-row { display: flex; gap: 38px; margin-top: 48px; }
.trust-row div { display: grid; }
.trust-row strong { font-size: 15px; }
.trust-row span { color: var(--muted); font-size: 12px; }

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.blob { position: absolute; border-radius: 50%; filter: blur(1px); }
.blob-one { width: 470px; height: 470px; background: var(--purple-soft); }
.blob-two { width: 190px; height: 190px; background: rgba(145, 200, 62, .18); left: 0; bottom: 20px; }
.phone {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(38, 29, 45, .1);
  border-radius: 38px;
  background: #17141a;
  box-shadow: 0 35px 70px rgba(57, 39, 69, .22);
}
.phone img { width: 100%; border-radius: 31px; }
.phone-main { width: 270px; position: relative; transform: rotate(-3deg); z-index: 2; }
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border: 1px solid rgba(38, 29, 45, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 40px rgba(57, 39, 69, .13);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}
.card-top { right: 2%; top: 16%; }
.status-dot { width: 9px; height: 9px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(145, 200, 62, .15); }
.card-bottom { left: 0; bottom: 12%; display: grid; gap: 1px; }
.card-bottom span { color: var(--muted); font-size: 11px; font-weight: 600; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 650px; margin: 0 auto 55px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2, .showcase-copy h2, .final-cta h2 {
  margin: 14px 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: -.035em;
}
.section-heading p, .showcase-copy > p { color: var(--muted); line-height: 1.9; }

.services { border-top: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  min-height: 290px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  transition: transform .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-7px); border-color: var(--purple); }
.service-card.featured { background: var(--purple-soft); }
.service-card img { width: 125px; height: 125px; margin: 0 auto; object-fit: contain; }
.service-card h3 { margin: 16px 0 4px; font-size: 18px; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.regions {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: var(--purple-soft);
}
.regions-list { display: grid; gap: 20px; }
.regions-loading,
.regions-empty {
  padding: 38px;
  border: 1px dashed rgba(104, 70, 127, .22);
  border-radius: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, .65);
  text-align: center;
}
.region-card {
  padding: 32px;
  border: 1px solid rgba(185, 138, 224, .22);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 45px rgba(62, 40, 76, .06);
}
.region-card-header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.region-city {
  display: flex;
  align-items: center;
  gap: 12px;
}
.region-pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--purple-dark);
  font-size: 18px;
}
.region-city h3 { margin: 0; font-size: 23px; }
.region-count {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
}
.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.district-chip {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.regions-more { margin-top: 28px; text-align: center; }

.app-showcase { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.showcase-copy { max-width: 520px; }
.showcase-copy ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0; margin: 28px 0 36px; }
.showcase-copy li { position: relative; padding-right: 25px; font-size: 14px; font-weight: 700; }
.showcase-copy li::before { content: "✓"; position: absolute; right: 0; color: var(--lime); font-weight: 900; }
.screens { height: 600px; position: relative; display: grid; place-items: center; }
.screens::before { content: ""; position: absolute; width: 490px; height: 490px; border-radius: 50%; background: var(--purple-soft); }
.phone-side, .phone-front { width: 245px; position: absolute; }
.phone-side { right: 4%; transform: rotate(6deg) scale(.9); opacity: .8; }
.phone-front { left: 14%; z-index: 2; transform: rotate(-4deg); }

.final-cta {
  min-height: 300px;
  padding: 55px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 36px;
  color: #fff;
  background: linear-gradient(125deg, var(--purple-dark), #8d60a9);
}
.eyebrow.light { color: #fff; opacity: .78; }
.final-cta h2 { margin-bottom: 5px; }
.final-cta p { margin: 0; opacity: .72; }
.button-light { color: var(--purple-dark); background: #fff; flex-shrink: 0; }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 80px auto 0;
  padding: 45px 0;
  display: grid;
  justify-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
footer .footer-logo { width: 90px; }
footer p { margin: 0; }
.footer-links { display: flex; gap: 25px; color: var(--ink); font-weight: 700; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.social-links a {
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 0;
  transition: color .2s, border-color .2s, background .2s;
}
.social-links a::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.social-links a[href*="instagram.com"]::before { background-image: url("/assets/social-instagram.svg"); }
.social-links a[href*="tiktok.com"]::before { background-image: url("/assets/social-tiktok.svg"); }
.social-links a[href*="x.com"]::before { background-image: url("/assets/social-x.svg"); }
.social-links a:hover {
  border-color: var(--purple);
  background: #fff;
  transform: translateY(-2px);
}
.accepted-payments {
  margin: 8px 0 4px;
  display: grid;
  justify-items: center;
}
.accepted-payments img {
  width: min(100%, 420px);
  max-height: 58px;
  object-fit: contain;
}

.faq-section { max-width: 920px; }
.homepage-faq { display: grid; gap: 12px; margin-top: 34px; }
.homepage-faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(74, 52, 91, .06);
}
.homepage-faq summary { cursor: pointer; font-weight: 800; color: var(--ink); }
.homepage-faq p { margin: 12px 0 0; color: var(--muted); line-height: 1.9; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 530px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .app-showcase { grid-template-columns: 1fr; text-align: center; }
  .showcase-copy { margin: auto; }
  .showcase-copy ul { text-align: right; }
}

@media (max-width: 600px) {
  .site-header { width: calc(100% - 28px); height: 72px; }
  .brand img { width: 76px; }
  .hero, .section { width: calc(100% - 28px); }
  .hero { min-height: auto; padding: 55px 0 70px; gap: 25px; }
  .hero h1 { font-size: 50px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .trust-row { gap: 20px; margin-top: 35px; }
  .trust-row span { font-size: 10px; }
  .hero-visual { min-height: 485px; }
  .blob-one { width: 360px; height: 360px; }
  .phone-main { width: 225px; }
  .floating-card { padding: 11px 13px; font-size: 11px; }
  .card-top { right: -3%; }
  .card-bottom { left: -2%; }
  .section { padding-block: 75px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; flex-direction: row; align-items: center; gap: 15px; }
  .service-card img { width: 105px; height: 105px; margin: 0; }
  .regions { width: 100%; }
  .region-card { padding: 22px 18px; border-radius: 22px; }
  .region-card-header { align-items: flex-start; }
  .region-city h3 { font-size: 20px; }
  .district-chip { padding: 9px 12px; font-size: 12px; }
  .app-showcase { gap: 10px; }
  .showcase-copy ul { grid-template-columns: 1fr; }
  .screens { height: 510px; }
  .screens::before { width: 350px; height: 350px; }
  .phone-side, .phone-front { width: 200px; }
  .phone-side { right: -5%; }
  .phone-front { left: 2%; }
  .final-cta { width: calc(100% - 28px); padding: 45px 25px; flex-direction: column; text-align: center; border-radius: 28px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .hero-visual, .service-card, .region-card, .showcase-copy, .screens {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .visible { opacity: 1; transform: translateY(0); }
}
