:root {
  --blue: #246bff;
  --orange: #ff9f1c;
  --ink: #172033;
  --muted: #5c667a;
  --line: #e8ebf0;
  --soft: #f6f3ee;
  --green: #1fa96b;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Noto Kufi Arabic", "Inter", "Noto Sans SC", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

body[data-lang="en"] {
  font-family: "Inter", "Noto Kufi Arabic", sans-serif;
}

body[data-lang="zh"] {
  font-family: "Noto Sans SC", "Inter", sans-serif;
}

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

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

.shell {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.compact {
  width: min(860px, calc(100% - 44px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 52px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(232, 235, 240, .75);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 4px solid var(--blue);
  border-left-color: var(--orange);
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

.brand-text {
  font-size: 16px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 600;
}

.main-nav a {
  opacity: .86;
}

.main-nav a:hover {
  color: var(--blue);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid #d8e0ec;
  border-radius: 999px;
}

.lang-btn {
  min-width: 32px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}

.lang-btn.active {
  background: var(--blue);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #111827;
  box-shadow: 0 8px 20px rgba(255, 159, 28, .22);
}

.btn-small {
  min-height: 28px;
  padding-inline: 14px;
  font-size: 11px;
}

.btn-outline {
  min-height: 36px;
  background: #fff;
  border-color: #111827;
  color: #111827;
}

.hero {
  position: relative;
  min-height: 380px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 230, 190, .9), transparent 34%),
    radial-gradient(circle at 84% 26%, rgba(132, 221, 244, .72), transparent 38%),
    linear-gradient(115deg, #faf0df 0%, #eaf7ff 52%, #e4e6f3 100%);
  text-align: center;
  padding: 42px 28px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: #6d7482;
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  max-width: 780px;
  margin: 14px auto 12px;
  font-size: clamp(33px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 670px;
  margin: 0 auto;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-cta span {
  color: #7a8392;
  font-size: 12px;
}

.hero-art {
  position: relative;
  height: 170px;
  margin: 18px auto 0;
  width: min(680px, 100%);
}

.dashboard-card,
.campaign-preview {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 40px rgba(30, 40, 70, .14);
  backdrop-filter: blur(10px);
}

.campaign-preview {
  left: 50%;
  bottom: -6px;
  width: 320px;
  height: 156px;
  transform: translateX(-50%);
  border-radius: 16px 16px 0 0;
  padding: 20px;
}

.phone-top {
  width: 86px;
  height: 10px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #d9e2ef;
}

.ad-tile {
  display: grid;
  place-items: center;
  height: 100px;
  border-radius: 10px;
  background: radial-gradient(circle, #ffb35c 0 20%, #f6812c 21% 100%);
  color: #fff;
}

.ad-tile span {
  font-size: 12px;
}

.ad-tile strong {
  font-size: 27px;
  line-height: 1;
}

.panel-left {
  left: 40px;
  bottom: 14px;
  width: 180px;
  min-height: 112px;
  border-radius: 12px;
  padding: 15px;
  transform: rotate(-7deg);
}

.panel-right {
  right: 18px;
  bottom: 26px;
  width: 185px;
  min-height: 100px;
  border-radius: 12px;
  padding: 14px;
  transform: rotate(8deg);
}

.mini-bar,
.meter,
.meter i {
  display: block;
  border-radius: 999px;
}

.mini-bar {
  width: 72px;
  height: 9px;
  background: var(--blue);
  margin-bottom: 12px;
}

.stat-row,
.report-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.stat-row strong,
.report-line strong {
  color: var(--blue);
}

.meter {
  height: 7px;
  margin-top: 12px;
  background: #e7ecf5;
}

.meter i {
  height: 100%;
  background: var(--orange);
}

.social-dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-inline-end: 4px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  direction: ltr;
}

.fb { background: #1877f2; }
.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.wa { background: #25d366; }

.panel-right p {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.platform-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.bubble {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 38px;
  padding-inline: 14px;
  border-radius: 999px;
  background: #fff;
  color: #526071;
  box-shadow: 0 8px 24px rgba(16, 24, 40, .12);
  font-size: 12px;
  font-weight: 800;
}

.bubble.gradient {
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.bubble.blue {
  color: #fff;
  background: #1877f2;
}

.bubble.green {
  color: #fff;
  background: #25d366;
}

.section {
  margin-top: 82px;
}

.service-scope {
  display: none;
}

.section h2,
.trust h2,
.faq h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head span {
  display: block;
  margin-bottom: 8px;
  color: #536173;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.section-head h2 {
  margin-bottom: 10px;
}

.section-head p {
  margin: 0;
  color: #526071;
  font-size: 14px;
}

.scope-tags {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.scope-tags span {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(36, 107, 255, .1), transparent 38%),
    #f7f4ef;
  color: #243044;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.scope-tags span::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-inline-end: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 159, 28, .12);
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.story-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-body {
  padding: 23px 24px 28px;
}

.card-body span,
.feature-card span,
.wide-feature span,
.customer-card span {
  display: block;
  color: #536173;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.card-body h3 {
  margin: 8px 0 8px;
  font-size: 18px;
}

.card-body p {
  min-height: 66px;
  margin: 0 0 18px;
  color: #566274;
  font-size: 12px;
}

.card-body a,
.customer-card a {
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
}

.trust {
  margin-top: 52px;
  text-align: center;
}

.trust h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badges span {
  min-width: 86px;
  padding: 10px 12px;
  border: 1px solid #f0a53d;
  border-bottom: 5px solid #f05b36;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card,
.wide-feature,
.plans {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 100%, rgba(136, 216, 244, .45), transparent 32%),
    radial-gradient(circle at 0 100%, rgba(255, 173, 110, .22), transparent 28%),
    #f7f4ef;
}

.feature-card {
  min-height: 430px;
  padding: 34px 34px 0;
}

.feature-card h2,
.wide-feature h2 {
  margin: 8px 0 10px;
  font-size: 30px;
  line-height: 1.12;
}

.feature-card h2::first-letter,
.wide-feature h2::first-letter {
  color: var(--blue);
}

.feature-card p,
.wide-feature p,
.plans p {
  max-width: 580px;
  margin: 0 0 20px;
  color: #526071;
  font-size: 13px;
}

.mock-app {
  display: flex;
  gap: 14px;
  width: 88%;
  height: 190px;
  margin-top: 34px;
  border-radius: 14px 14px 0 0;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 32, 51, .13);
  padding: 18px;
}

.mock-sidebar {
  width: 42px;
  border-radius: 10px;
  background: linear-gradient(#e8f0ff, #ffffff);
}

.mock-content {
  flex: 1;
  padding-top: 16px;
}

.mock-content strong {
  display: block;
  margin-bottom: 14px;
}

.mock-content span {
  display: block;
  height: 20px;
  margin-bottom: 10px;
  border-radius: 7px;
  background: #edf2f8;
}

.social-stack {
  position: relative;
  height: 180px;
  margin-top: 36px;
}

.post-card {
  width: 260px;
  height: 150px;
  margin-inline-start: auto;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)),
    url("https://images.unsplash.com/photo-1607082350899-7e105aa886ae?auto=format&fit=crop&w=700&q=80") center/cover;
  box-shadow: 0 18px 38px rgba(23, 32, 51, .15);
}

.social-icons {
  position: absolute;
  inset-inline-end: 10px;
  bottom: 10px;
  display: flex;
  gap: 9px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 51, .14);
}

.social-icons i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.social-icons i:nth-child(2) {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icons i:nth-child(3) {
  background: #111827;
}

.social-icons i:nth-child(4) {
  background: #25d366;
}

.wide-feature {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  margin-top: 18px;
  padding: 34px;
}

.wide-feature ul,
.plan-cards ul {
  margin: 0 0 22px;
  padding-inline-start: 18px;
  color: #2f3b4d;
  font-size: 13px;
}

.report-card {
  align-self: end;
  min-height: 260px;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 38px rgba(23, 32, 51, .13);
  padding: 28px 24px;
}

.report-line {
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eef1f5;
}

.report-line strong {
  border-radius: 999px;
  padding: 4px 10px;
  background: #eaf2ff;
  font-size: 11px;
}

.full-bleed {
  width: 100%;
  overflow: hidden;
}

.customer-section h2 {
  margin: 0;
  flex: 1;
}

.case-section {
  margin-bottom: 72px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #f7f4ef;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 6.2;
  object-fit: cover;
  background: #eef3f8;
  border-bottom: 1px solid #e2e8f0;
}

.case-body {
  padding: 24px 26px 28px;
}

.case-body span {
  display: block;
  color: #536173;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.case-body p {
  margin: 0;
  color: #536173;
  font-size: 13px;
}

.carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  text-align: center;
}

.carousel-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d8e0ec;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .08);
}

.carousel-btn:disabled {
  cursor: not-allowed;
  opacity: .38;
  transform: none;
}

.customer-viewport {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.customer-row {
  --carousel-step: 0px;
  --carousel-card-width: 280px;
  display: flex;
  gap: 18px;
  width: max-content;
  max-width: none;
  direction: ltr;
  transform: translateX(calc(var(--carousel-index, 0) * var(--carousel-step) * -1));
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.customer-row.is-dragging {
  transition: none;
}

.customer-row[data-scope-carousel]:not(.is-ready) .customer-card {
  display: none;
}

.customer-card {
  flex: 0 0 var(--carousel-card-width);
  width: var(--carousel-card-width);
  min-width: var(--carousel-card-width);
  max-width: var(--carousel-card-width);
  overflow: hidden;
  border-radius: 8px;
  background: #f7f4ef;
}

[dir="rtl"] .customer-card {
  direction: rtl;
}

[dir="ltr"] .customer-card {
  direction: ltr;
}

.customer-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.customer-card span,
.customer-card h3,
.customer-card p,
.customer-card a {
  margin-inline: 18px;
}

.customer-card span {
  margin-top: 18px;
}

.customer-card h3 {
  min-height: 50px;
  margin-top: 7px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.32;
}

.customer-card p {
  color: #647083;
  font-size: 12px;
}

.customer-card a {
  margin-bottom: 22px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cdd4df;
}

.slider-dots .active {
  background: var(--blue);
}

.logo-band {
  margin-top: 50px;
  text-align: center;
}

.logo-band p {
  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
}

.country-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.country-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 58px;
  animation: country-scroll 28s linear infinite;
  direction: ltr;
}

.country-marquee:hover .country-track {
  animation-play-state: paused;
}

.country-track span {
  flex: 0 0 auto;
  color: #a1a8b2;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes country-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.plans {
  margin-top: 76px;
  padding: 42px 44px;
}

.plans h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.plan-cards article {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
}

.plan-cards h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.faq {
  width: min(760px, calc(100% - 44px));
  margin: 84px auto 0;
}

.faq h2 {
  font-size: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: inline-end;
  color: #647083;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 14px 0 0;
  color: #536173;
  font-size: 13px;
}

.site-footer {
  margin-top: 96px;
  padding: 48px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand p {
  max-width: 310px;
  color: #647083;
  font-size: 13px;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
}

.site-footer a:not(.brand):not(.btn) {
  display: block;
  margin: 7px 0;
  color: #536173;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  color: #7a8392;
  font-size: 11px;
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, .34);
}

.floating-wa svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: currentColor;
}

[dir="rtl"] .floating-wa {
  right: auto;
  left: 24px;
}

@media (max-width: 940px) {
  .site-header {
    height: auto;
    min-height: 58px;
    flex-wrap: wrap;
    padding: 10px 18px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cards.three,
  .feature-grid,
  .wide-feature,
  .plan-cards,
  .footer-main,
  .case-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 520px;
  }

  .panel-left,
  .panel-right {
    display: none;
  }

  .campaign-preview {
    width: min(320px, 88%);
  }

  .story-card img {
    height: 230px;
  }

  .carousel-head {
    justify-content: space-between;
    text-align: start;
  }

  .logo-band div,
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .shell,
  .compact,
  .faq {
    width: calc(100% - 28px);
  }

  .brand-text {
    font-size: 14px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    margin-top: 8px;
    border-radius: 14px;
    padding: 28px 16px 0;
  }

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

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    margin-top: 58px;
  }

  .section h2,
  .trust h2,
  .faq h2 {
    font-size: 24px;
  }

  .feature-card,
  .wide-feature,
  .plans {
    padding: 24px;
  }

  .feature-card h2,
  .wide-feature h2 {
    font-size: 25px;
  }

  .scope-tags {
    grid-template-columns: 1fr;
  }


  .mock-app,
  .post-card {
    width: 100%;
  }
}
