:root {
  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --soft: #f8fafc;
  --brand: #9dc3aa;
  --brand-dark: #5f8f72;
  --blue: #1976d2;
  --gold: #d7a900;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: max-content;
}

.nav-links span {
  font-weight: 700;
  color: var(--text);
}

.nav-links small,
.nav-cta small {
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links small {
  color: var(--brand-dark);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  flex-direction: column;
  gap: 3px;
  line-height: 1.15;
  text-align: center;
}

.nav-cta small {
  color: var(--brand);
}

.robot-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at left center, rgba(157, 195, 170, 0.18), transparent 34%);
}

.robot-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 10px 0;
  animation: robotMarquee 34s linear infinite;
}

.robot-marquee:hover .robot-marquee-track {
  animation-play-state: paused;
}

.robot-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 9px 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.robot-pill:first-child,
.robot-pill:nth-child(6) {
  margin-left: 20px;
}

.robot-pill img {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.robot-pill strong {
  color: var(--ink);
}

.robot-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(157, 195, 170, 0.18);
}

@keyframes robotMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.button {
  padding: 15px 22px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.download-button {
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(135deg, #0f172a, #1f2937) !important;
}

.download-button span {
  color: var(--brand);
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 12% 18%, rgba(157, 195, 170, 0.36), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 110px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(25, 118, 210, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.78fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.16rem;
  line-height: 1.75;
  color: #475569;
}

.ar-line,
.ar-note,
.ar-card,
.levels small {
  font-family: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  direction: rtl;
  text-align: right;
}

.ar-line {
  margin: 18px 0 20px;
  padding: 18px 22px;
  border-right: 6px solid var(--brand-dark);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(157, 195, 170, 0.08), rgba(157, 195, 170, 0.22));
  color: #0f172a;
  font-size: 1.22rem;
  line-height: 1.95;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.hero-ar {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(1.28rem, 2.4vw, 1.75rem);
  line-height: 1.85;
}

.ar-note {
  margin-top: 20px;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.ar-card {
  margin-top: 16px;
  padding: 12px 14px;
  color: #0f172a;
  background: rgba(157, 195, 170, 0.16);
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-ar-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-ar-points span {
  padding: 11px 16px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.arabic-panel,
.arabic-strip {
  direction: rtl;
  text-align: right;
  border: 1px solid rgba(95, 143, 114, 0.3);
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
}

.arabic-panel {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
}

.arabic-panel.compact {
  margin-top: 24px;
}

.arabic-panel h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.arabic-panel p {
  margin: 0;
  color: #1f2937;
  font-size: 1.12rem;
  line-height: 2;
  font-weight: 700;
}

.arabic-strip {
  margin: 0 0 28px;
  padding: 18px 22px;
  border-radius: 18px;
  color: #0f172a;
  font-size: 1.16rem;
  line-height: 1.9;
  font-weight: 700;
}

.arabic-strip strong {
  color: var(--brand-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-card,
.image-panel,
.showcase-image {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card {
  padding: 16px;
  transform: rotate(1deg);
}

.hero-card img {
  border-radius: 18px;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-column,
.feature-grid,
.showcase,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.section p,
.card p,
.check-list {
  font-size: 1.02rem;
  line-height: 1.75;
}

.levels {
  display: grid;
  gap: 14px;
}

.levels article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.levels strong {
  color: var(--ink);
  font-size: 1.5rem;
}

.levels span {
  color: var(--text);
  font-weight: 600;
}

.levels small {
  display: block;
  grid-column: 2;
  color: #0f172a;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 800;
  padding-top: 4px;
}

.image-panel {
  padding: 14px;
  width: min(100%, 380px);
  justify-self: center;
}

.image-panel img,
.showcase-image img {
  border-radius: 18px;
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(157, 195, 170, 0.22);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(157, 195, 170, 0.24);
  color: var(--brand-dark);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.pricing-card.free {
  border-color: rgba(95, 143, 114, 0.45);
  background: linear-gradient(180deg, rgba(157, 195, 170, 0.18), #fff);
}

.pricing-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(157, 195, 170, 0.18);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card h3 {
  margin-top: 18px;
}

.price {
  margin: 14px 0;
  color: var(--ink);
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pricing-card ul {
  padding-left: 18px;
  margin: 12px 0;
  color: var(--text);
  line-height: 1.7;
}

.pricing-ar {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 800;
  line-height: 1.8;
  text-align: right;
}

.showcase-image {
  padding: 14px;
}

.founder-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.founder-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.founder-highlights {
  display: grid;
  gap: 14px;
}

.founder-photo {
  width: min(100%, 320px);
  justify-self: center;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.founder-highlights article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(157, 195, 170, 0.16), #fff);
}

.founder-highlights strong,
.founder-highlights span {
  display: block;
}

.founder-highlights strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.founder-highlights span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.section-dark {
  background: var(--ink);
  color: #cbd5e1;
}

.section-dark h2,
.section-dark .eyebrow {
  color: #fff;
}

.section-dark .eyebrow {
  color: var(--brand);
}

.section-dark .ar-on-dark {
  color: #e2e8f0;
  background: rgba(157, 195, 170, 0.11);
  border-right-color: var(--brand);
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card p {
  margin: 0 0 18px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: #fff;
  font-weight: 700;
}

.download-card-button,
.whatsapp-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 900;
  text-align: center;
}

.download-card-button {
  background: #fff;
  color: var(--ink) !important;
}

.download-card-button span,
.whatsapp-button span {
  font-size: 0.95rem;
  line-height: 1.4;
}

.whatsapp-button {
  background: var(--brand);
  color: #0f172a !important;
}

.footer {
  background: #07111f;
  color: #94a3b8;
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.download-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(157, 195, 170, 0.34), transparent 32%),
    linear-gradient(160deg, #f8fafc 0%, #ffffff 48%, #edf6f0 100%);
}

.download-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 20px;
}

.download-panel {
  width: min(1080px, 100%);
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.download-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--ink);
  font-weight: 900;
}

.download-brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.download-panel h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4rem);
}

.download-ar {
  max-width: 100%;
}

.download-copy,
.download-note {
  font-size: 1.05rem;
  line-height: 1.75;
}

.download-status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.download-status span {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.download-status p {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.manual-download {
  width: 100%;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.manual-download span {
  color: var(--brand);
  font-size: 0.95rem;
}

.download-note {
  margin: 20px 0 0;
  color: var(--muted);
}

.install-guide {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.guide-heading {
  max-width: 780px;
}

.guide-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.guide-step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.guide-step h3 {
  margin-top: 18px;
}

.guide-step p {
  line-height: 1.7;
}

.guide-ar {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(157, 195, 170, 0.16);
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.phone-example {
  max-width: 220px;
  margin: 0 auto;
  padding: 10px;
  border: 8px solid #0f172a;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.22);
}

.phone-top {
  width: 54px;
  height: 5px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #334155;
}

.phone-screen {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 14px;
  border-radius: 20px;
  background: #f8fafc;
}

.settings-title {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.settings-row {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.settings-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.settings-row strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.settings-row.active {
  border-color: rgba(95, 143, 114, 0.42);
}

.toggle-on {
  width: 58px;
  height: 32px;
  justify-self: end;
  position: relative;
  border-radius: 999px;
  background: var(--brand-dark);
}

.toggle-on::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.install-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.install-card strong {
  color: var(--ink);
}

.install-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.install-card button {
  margin-top: 6px;
  padding: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.success-check {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 42px auto 4px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.success-text,
.success-muted {
  text-align: center;
}

.success-text {
  color: var(--ink);
}

.success-muted {
  color: var(--brand-dark);
  font-weight: 900;
}

.guide-warning {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(215, 169, 0, 0.32);
  border-radius: 20px;
  background: rgba(215, 169, 0, 0.1);
  color: var(--ink);
  line-height: 1.7;
}

.guide-warning span {
  text-align: right;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero {
    padding: 58px 0 52px;
  }

  .hero-grid,
  .two-column,
  .feature-grid,
  .showcase,
  .founder-card,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-card {
    transform: none;
  }

  .section {
    padding: 62px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .levels article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .levels small {
    grid-column: auto;
  }
}
