:root {
  --navy: #083b5b;
  --navy-deep: #062c43;
  --green: #31b88a;
  --green-bright: #4bd4a5;
  --mint: #dff8ee;
  --ink: #102f3e;
  --muted: #667d88;
  --paper: #f7fbfa;
  --white: #ffffff;
  --line: #dbe8e5;
  --shadow: 0 24px 70px rgba(4, 48, 65, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.topline {
  padding: 6px 20px;
  color: #d9fff1;
  background: var(--navy-deep);
  text-align: center;
  font-size: .74rem;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(219,232,229,.8);
  backdrop-filter: blur(16px);
}
.header-inner { height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { margin-left: auto; display: flex; align-items: center; }
.brand img { display: block; width: 180px; height: auto; }
.desktop-nav { display: flex; gap: 25px; align-items: center; }
.desktop-nav a { color: #385363; font-size: .82rem; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--green); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 8px 18px; color: white; background: var(--navy); font-size: .8rem; }
.button-primary { color: white; background: var(--green); box-shadow: 0 15px 30px rgba(49,184,138,.26); }
.button-primary:hover { background: #26a97d; box-shadow: 0 18px 35px rgba(49,184,138,.34); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6,44,67,.025) 1px, transparent 1px),
    linear-gradient(rgba(6,44,67,.025) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  top: -240px;
  left: -190px;
  border-radius: 50%;
  background: rgba(49,184,138,.1);
  filter: blur(2px);
}
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 76px; padding-block: 70px 82px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.eyebrow span { width: 34px; height: 2px; background: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0 22px;
  font-size: clamp(2.8rem, 5.4vw, 4.7rem);
  line-height: 1.3;
  letter-spacing: -.055em;
}
h1 em, h2 em { color: var(--green); font-style: normal; }
.hero-lead { max-width: 620px; margin-bottom: 29px; color: #536c77; font-size: 1.04rem; line-height: 2; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: .88rem; font-weight: 700; border-bottom: 1px solid rgba(8,59,91,.25); }
.hero-proof { display: flex; gap: 0; margin-top: 44px; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-proof div { padding-inline: 22px; border-left: 1px solid var(--line); }
.hero-proof div:first-child { padding-right: 0; }
.hero-proof div:last-child { border-left: 0; }
.hero-proof strong { display: block; color: var(--navy); font-size: 1rem; line-height: 1.4; }
.hero-proof span { color: var(--muted); font-size: .69rem; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; direction: rtl; }
.visual-orbit { position: absolute; border: 1px solid rgba(49,184,138,.23); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; }
.orbit-two { width: 370px; height: 370px; border-style: dashed; animation: rotate 28s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.course-board {
  position: relative;
  z-index: 3;
  width: min(420px, 90%);
  padding: 26px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,59,91,.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.board-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.board-kicker { color: var(--green); font-size: .57rem; font-weight: 800; letter-spacing: .13em; }
.board-head h2 { margin: 4px 0 0; color: var(--navy); font-size: 1.5rem; }
.progress-ring { width: 65px; height: 65px; display: grid; place-content: center; text-align: center; border: 6px solid var(--mint); border-top-color: var(--green); border-radius: 50%; line-height: 1.1; }
.progress-ring span { color: var(--navy); font-weight: 800; }
.progress-ring small { color: var(--muted); font-size: .49rem; }
.module-list { display: grid; gap: 9px; margin-top: 18px; }
.module {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbfa;
  border: 1px solid transparent;
  border-radius: 9px;
  text-align: right;
  cursor: pointer;
  transition: .2s ease;
}
.module:hover { border-color: rgba(49,184,138,.4); transform: translateX(-3px); }
.module.active { color: white; background: var(--navy); }
.module-number { color: var(--green); font-size: .72rem; font-weight: 800; direction: ltr; }
.module-title { font-size: .82rem; font-weight: 700; }
.module-status { color: #b9f9e2; font-size: .57rem; }
.module-arrow { color: var(--green); }
.module-detail { min-height: 45px; margin: 15px 3px 0; color: var(--muted); font-size: .7rem; line-height: 1.7; }
.floating-note { position: absolute; z-index: 5; padding: 9px 14px; color: var(--navy); background: white; border: 1px solid var(--line); border-radius: 100px; box-shadow: 0 12px 28px rgba(4,48,65,.11); font-size: .66rem; font-weight: 700; }
.floating-note span { color: var(--green); margin-left: 5px; }
.note-top { top: 42px; right: 0; }
.note-bottom { bottom: 35px; left: -6px; }

.trust-strip { color: #d8edf4; background: var(--navy); }
.trust-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: .74rem; font-weight: 600; }
.trust-inner i { width: 5px; height: 5px; flex: 0 0 5px; background: var(--green-bright); border-radius: 50%; }

.section { padding-block: 112px; }
.split-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.section-intro h2, .section-heading h2, .app-copy h2, .faq-section h2, .final-cta h2 {
  margin: 15px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.45;
  letter-spacing: -.045em;
}
.problem-copy { color: #536c77; }
.problem-copy > p { font-size: .98rem; line-height: 2; }
.contrast-card { margin-top: 32px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.contrast-card div:not(.contrast-arrow) { display: grid; gap: 4px; }
.contrast-card span { color: var(--green); font-size: .67rem; font-weight: 800; }
.contrast-card strong { color: var(--ink); font-size: .79rem; }
.contrast-arrow { color: var(--green); font-size: 1.5rem; }

.journey-section { position: relative; overflow: hidden; color: white; background: var(--navy-deep); }
.journey-section::after { content: ""; position: absolute; width: 500px; height: 500px; bottom: -330px; right: -110px; border: 80px solid rgba(49,184,138,.1); border-radius: 50%; }
.section-number.light { color: #74e2ba; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 80px; margin-bottom: 48px; }
.section-heading > p { max-width: 440px; margin: 0; color: #a9c1cc; line-height: 2; font-size: .9rem; }
.journey-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.journey-card { min-height: 310px; padding: 24px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: 11px; }
.journey-card.featured { color: var(--navy-deep); background: var(--green-bright); border-color: transparent; transform: translateY(-13px); }
.card-index { color: #72dcb8; font-size: .68rem; font-weight: 800; }
.featured .card-index { color: var(--navy); }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; margin: 43px 0 20px; color: var(--green-bright); border: 1px solid rgba(116,226,186,.45); border-radius: 50%; font-family: Arial, sans-serif; font-weight: 700; direction: ltr; }
.featured .card-icon { color: var(--navy); border-color: rgba(8,59,91,.28); }
.journey-card h3 { margin-bottom: 10px; font-size: 1.02rem; }
.journey-card p { color: #a9c1cc; font-size: .73rem; line-height: 1.9; }
.featured p { color: #164e56; }
.card-label { display: inline-block; margin-top: 5px; padding: 4px 9px; color: white; background: var(--navy); border-radius: 100px; font-size: .56rem; font-weight: 700; }

.audience-section { background: var(--paper); }
.centered { max-width: 720px; margin-inline: auto; text-align: center; }
.centered .section-number { justify-content: center; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.audience-grid article { min-height: 245px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 46px rgba(4,48,65,.055); }
.audience-grid article.lifted { transform: translateY(-16px); border-top: 4px solid var(--green); }
.audience-mark { color: var(--green); font-size: .67rem; font-weight: 800; }
.audience-grid h3 { margin: 45px 0 10px; color: var(--navy); font-size: 1.08rem; }
.audience-grid p { color: var(--muted); font-size: .78rem; line-height: 1.9; }

.app-section { color: white; background: var(--navy); }
.app-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 90px; }
.app-copy > p { max-width: 540px; color: #bed2dc; line-height: 2; }
.feature-list { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 11px; font-size: .82rem; }
.feature-list span { width: 25px; height: 25px; display: grid; place-items: center; color: var(--navy); background: var(--green-bright); border-radius: 50%; font-size: .7rem; }
.app-card { padding: 34px; color: var(--ink); background: white; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.17); }
.app-card > img { display: block; width: 240px; height: auto; margin: 0 auto 24px; }
.app-rating { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 11px; padding: 18px 0; border-block: 1px solid var(--line); }
.stars { color: #ffb547; font-family: Arial, sans-serif; font-size: .82rem; direction: ltr; }
.app-rating strong { color: var(--navy); font-size: 1.25rem; }
.app-rating span { color: var(--muted); font-size: .65rem; line-height: 1.6; }
.store-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; direction: ltr; }
.store-button { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 62px; padding: 8px 12px; color: white; background: #071218; border-radius: 8px; }
.store-button span:last-child { display: grid; text-align: left; line-height: 1.2; }
.store-button small { color: #cbd5d9; font-size: .52rem; }
.store-button strong { font-family: Arial, sans-serif; font-size: .92rem; }
.store-icon { font-family: Arial, sans-serif; font-size: 1.35rem; }
.play-icon { color: var(--green-bright); }
.apple-icon { position: relative; color: white; }

.evidence-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.big-stat { position: relative; min-height: 300px; display: grid; place-content: center; color: white; background: var(--green); border-radius: 50% 50% 47% 53% / 45% 52% 48% 55%; text-align: center; box-shadow: 20px 25px 0 var(--mint); }
.big-stat .plus { position: absolute; top: 48px; right: 63px; font-size: 2.4rem; font-weight: 300; }
.big-stat strong { font-family: Arial, sans-serif; font-size: clamp(3.7rem, 7vw, 6rem); line-height: 1; letter-spacing: -.06em; direction: ltr; }
.big-stat p { margin: 12px 0 0; font-size: .78rem; }
.evidence-copy h2 { margin: 15px 0 18px; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.5; letter-spacing: -.04em; }
.evidence-copy p { color: var(--muted); line-height: 2; }
.text-link.dark { margin-top: 15px; color: var(--green); border-color: rgba(49,184,138,.3); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 0; color: var(--navy); font-weight: 700; font-size: .9rem; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; color: var(--green); border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 680px; padding: 0 0 23px; color: var(--muted); font-size: .8rem; line-height: 2; }

.final-cta { padding-block: 85px; color: white; background: var(--green); }
.final-cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.cta-label { font-size: .7rem; font-weight: 700; letter-spacing: .04em; }
.final-cta h2 { margin-top: 10px; }
.final-cta h2 em { color: var(--navy); }
.cta-actions p { margin-bottom: 18px; font-size: .9rem; }
.button-light { color: var(--navy); background: white; }

footer { padding-block: 46px; background: #041e2e; color: #9ab1bc; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-inner img { width: 145px; height: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-inner p { margin: 0; font-size: .7rem; }
.footer-links { display: flex; gap: 15px; color: white; font-family: Arial, sans-serif; font-size: .74rem; }
.footer-inner small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: .6rem; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 56px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { min-height: 560px; }
  .split-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .journey-card.featured { transform: none; }
  .app-grid, .evidence-grid { gap: 55px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; padding-bottom: 68px; }
  .container { width: min(100% - 28px, 1160px); }
  .topline { font-size: .64rem; }
  .header-inner { height: 67px; }
  .brand img { width: 145px; }
  .header-inner > .button { display: none; }
  .hero-grid { min-height: auto; padding-block: 47px 64px; }
  h1 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .hero-lead { font-size: .9rem; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .hero-proof div { padding-inline: 10px; }
  .hero-proof div:nth-child(2) { border-left: 0; }
  .hero-proof div:last-child { grid-column: 1 / -1; padding-top: 13px; border-top: 1px solid var(--line); }
  .hero-visual { min-height: 480px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 300px; height: 300px; }
  .course-board { width: 94%; padding: 20px; }
  .note-top { top: 18px; right: -4px; }
  .note-bottom { bottom: 13px; left: 0; }
  .trust-inner { padding-block: 19px; flex-wrap: wrap; justify-content: center; }
  .trust-inner i:nth-of-type(even) { display: none; }
  .section { padding-block: 76px; }
  .section-intro h2, .section-heading h2, .app-copy h2, .faq-section h2, .final-cta h2 { font-size: 2rem; }
  .contrast-card { grid-template-columns: 1fr; }
  .contrast-arrow { transform: rotate(-90deg); text-align: center; }
  .section-heading { display: grid; gap: 22px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: auto; }
  .card-icon { margin-top: 28px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article.lifted { transform: none; }
  .app-grid, .evidence-grid, .final-cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .app-card { padding: 25px 19px; }
  .app-rating { grid-template-columns: auto auto; }
  .app-rating span { grid-column: 1 / -1; }
  .store-buttons { grid-template-columns: 1fr; }
  .big-stat { min-height: 270px; max-width: 360px; width: 90%; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner img { margin-inline: auto; }
  .footer-links { justify-content: center; }
  .footer-inner small { grid-column: auto; }
  .mobile-cta { position: fixed; z-index: 80; left: 12px; right: 12px; bottom: 10px; display: flex; justify-content: center; align-items: center; gap: 12px; height: 52px; color: white; background: var(--green); border-radius: 9px; box-shadow: 0 16px 38px rgba(4,48,65,.26); font-weight: 700; font-size: .86rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
