/* ============================================================
   Green Oaisys — style.css
   Palette: deep forest ink, vibrant green, lime, warm sand
   ============================================================ */

:root {
  --ink: #0A2A1C;
  --ink-soft: #2E4A3C;
  --green: #1FC16B;
  --green-dark: #107044;
  --green-tint: #E4F8EE;
  --lime: #8CC412;
  --violet: #6C4BF4;
  --violet-dark: #5230C9;
  --lavender: #EDE8FF;
  --lavender-soft: #C9B8FF;
  --sand: #F7F4EC;
  --cream: #FDFCF8;
  --amber: #FFAD0D;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 2px 24px rgba(10, 42, 28, 0.08);
  --font-en: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', 'Poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 17px; }
html[dir="rtl"] { font-size: 18px; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-en);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] { font-family: var(--font-ar); line-height: 1.8; }

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }

h1, h2, h3 { line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3 { letter-spacing: 0; }

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  background: var(--green-tint);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.value .kicker, .offers .kicker { color: var(--violet-dark); background: var(--lavender); }
body[dir="rtl"] .kicker { letter-spacing: 0; }

.section-sub { color: var(--ink-soft); max-width: 620px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.btn-primary { background: var(--green); color: var(--ink); box-shadow: 0 4px 20px rgba(31, 193, 107, 0.35); }
.btn-primary:hover { background: #23d377; }
.btn-secondary { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #123826; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 42, 28, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 28px; width: auto; max-width: min(58vw, 200px); object-fit: contain; }

.main-nav { display: flex; gap: 22px; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--green-dark); }

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

.lang-toggle {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  border: 1.5px solid rgba(10, 42, 28, 0.15);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--ink);
}
.lang-toggle:hover { border-color: var(--green); }

.btn-header { padding: 10px 20px; font-size: 0.9rem; }

.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.7rem);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--violet-dark); position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 10px;
  background: var(--lavender);
  z-index: -1;
  border-radius: 5px;
}
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 20px; }
.hero-benefits { list-style: none; margin: 0 0 32px; }
.hero-benefits li {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 7px 0;
  padding-inline-start: 34px;
  position: relative;
}
.hero-benefits li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Vision band ---------- */
.vision-band { background: var(--ink); padding: 56px 0; text-align: center; }
.vision-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lime);
  margin-bottom: 12px;
}
body[dir="rtl"] .vision-label { letter-spacing: 0; }
.vision-text {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto;
}

/* Chat chaos → clarity visual */
.hero-visual { position: relative; min-height: 380px; }
.chat-stack { display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  background: var(--white);
  border-radius: 18px;
  border-start-start-radius: 4px;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
  max-width: 85%;
  animation: floatIn 0.6s ease backwards;
}
.chat-bubble:nth-child(2) { animation-delay: 0.15s; margin-inline-start: 24px; }
.chat-bubble:nth-child(3) { animation-delay: 0.3s; }
.chat-bubble:nth-child(4) { animation-delay: 0.45s; margin-inline-start: 40px; }
.chat-bubble .time { display: block; font-size: 0.7rem; color: #9aa8a0; margin-top: 4px; }

.clarity-card {
  margin-top: 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 12px 40px rgba(10, 42, 28, 0.25);
  animation: floatIn 0.6s ease 0.65s backwards;
}
.clarity-card h4 { font-size: 0.95rem; margin-bottom: 12px; color: var(--lime); }
.clarity-card ul { list-style: none; }
.clarity-card li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(253, 252, 248, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.clarity-card li:last-child { border-bottom: none; }
.clarity-card .owner {
  font-size: 0.72rem;
  background: rgba(31, 193, 107, 0.22);
  color: var(--green);
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: center;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Problem ---------- */
.problem { background: var(--cream); }
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.symptom-card {
  background: var(--sand);
  border: 1px solid rgba(10, 42, 28, 0.06);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.symptom-card .emoji { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.symptom-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.symptom-card p { font-size: 0.92rem; color: var(--ink-soft); }

.problem-cta { margin-top: 40px; text-align: center; }
.problem-cta p { margin-bottom: 16px; font-weight: 600; font-size: 1.1rem; }

/* ---------- What we do ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.pillar .pillar-num {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--lavender);
  color: var(--violet-dark);
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Value / outcomes ---------- */
.value { background: var(--lavender); }
.value .kicker { background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 18px rgba(82, 48, 201, 0.08);
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--ink-soft); }
.saudi-line {
  margin-top: 40px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--violet-dark);
  max-width: 640px;
  margin-inline: auto;
}

/* AI panel */
.ai-panel {
  margin-top: 48px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 42px 40px;
  color: var(--cream);
}
.ai-title { font-size: 1.5rem; color: var(--cream); margin-bottom: 10px; }
.ai-title em {
  font-style: italic;
  display: inline-block;
  padding: 0 0.09em;
  background: linear-gradient(90deg, var(--green), #8CC412);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-intro { color: rgba(253, 252, 248, 0.75); max-width: 660px; margin-bottom: 28px; font-size: 1rem; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ai-item {
  background: rgba(253, 252, 248, 0.05);
  border: 1px solid rgba(253, 252, 248, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.ai-item h4 { font-size: 1rem; color: var(--cream); margin-bottom: 6px; }
.ai-item p { font-size: 0.9rem; color: rgba(253, 252, 248, 0.68); }
@media (max-width: 700px) {
  .ai-grid { grid-template-columns: 1fr; }
  .ai-panel { padding: 30px 24px; }
}

/* ---------- Method — flagship flow ---------- */
.method { background: var(--cream); text-align: center; }
.method .section-sub { margin-inline: auto; }
.flow {
  position: relative;
  max-width: 900px;
  margin: 64px auto 0;
  text-align: start;
}
.flow::before {
  content: "";
  position: absolute;
  inset-inline-start: 26px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--green) 0%, #8CC412 55%, var(--violet) 100%);
}
.flow-step {
  position: relative;
  padding-inline-start: 84px;
  padding-bottom: 40px;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step .num {
  position: absolute;
  inset-inline-start: 0;
  top: -4px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(10, 42, 28, 0.1);
}
.flow-step:nth-child(4) .num, .flow-step:nth-child(5) .num, .flow-step:nth-child(6) .num { border-color: #8CC412; color: #5d8410; }
.flow-step:nth-child(7) .num, .flow-step:nth-child(8) .num { border-color: var(--violet); color: var(--violet-dark); }
.flow-step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.flow-step p { font-size: 1rem; color: var(--ink-soft); max-width: 560px; }
.flow-step.in-view .num { animation: pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes pop {
  0% { transform: scale(0.4); }
  100% { transform: scale(1); }
}

@media (min-width: 900px) {
  .flow::before { inset-inline-start: 50%; margin-inline-start: -2px; }
  .flow-step { width: 50%; padding-inline-start: 0; }
  .flow-step:nth-child(odd) {
    text-align: end;
    padding-inline-end: 64px;
  }
  .flow-step:nth-child(odd) .num { inset-inline-start: auto; inset-inline-end: -28px; }
  .flow-step:nth-child(odd) p { margin-inline-start: auto; }
  .flow-step:nth-child(even) {
    margin-inline-start: 50%;
    padding-inline-start: 64px;
  }
  .flow-step:nth-child(even) .num { inset-inline-start: -28px; }
  .flow-step { margin-top: -34px; }
  .flow-step:first-child { margin-top: 0; }
}


/* ---------- Offers ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  align-items: stretch;
}
.offer {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer.featured { border: 2.5px solid var(--green); }
.offer .badge {
  position: absolute;
  top: -14px;
  inset-inline-start: 28px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}
.offer .tier { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--violet-dark); margin-bottom: 8px; }
body[dir="rtl"] .offer .tier { letter-spacing: 0; }
.offer h3 { font-size: 1.3rem; margin-bottom: 6px; }
.offer .price { font-size: 1.9rem; font-weight: 700; margin-bottom: 4px; }
.offer .price small { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
.offer .offer-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 20px; }
.offer ul { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.offer li {
  font-size: 0.9rem;
  padding: 7px 0 7px 0;
  padding-inline-start: 28px;
  position: relative;
  color: var(--ink-soft);
}
.offer li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--green);
  font-weight: 700;
}
.offer li.excluded { color: #9aa8a0; }
.offer li.excluded::before { content: "✕"; color: #c9b8a8; }
.offer .btn { width: 100%; }
.offer .guarantee {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
}
.offer .guarantee::before { content: "🛡 "; }

.offers-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Health Check quiz ---------- */
.healthcheck { background: var(--cream); }
.quiz-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  margin-top: 40px;
}
.quiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 30px;
}
.quiz-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid rgba(10, 42, 28, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  font-size: 0.93rem;
}
.quiz-item:hover { border-color: var(--green); }
.quiz-item.checked { background: var(--green-tint); border-color: var(--green); }
.quiz-item input {
  accent-color: var(--green-dark);
  width: 19px; height: 19px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.quiz-actions { text-align: center; }

.quiz-result {
  display: none;
  margin-top: 32px;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}
.quiz-result.visible { display: block; animation: floatIn 0.4s ease; }
.quiz-result.calm { background: var(--green-tint); }
.quiz-result.friction { background: #FFF4D6; }
.quiz-result.chaos { background: #FFE4D6; }
.quiz-result .score { font-size: 2.6rem; font-weight: 700; }
.quiz-result h3 { font-size: 1.3rem; margin: 8px 0 10px; }
.quiz-result > p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 22px; }

.quiz-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
  text-align: start;
}
.qa-row { background: var(--white); border-radius: var(--radius-sm); padding: 14px 16px; }
.qa-row .qa-name { font-size: 0.88rem; font-weight: 600; display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.qa-row .qa-count { color: var(--ink-soft); font-weight: 500; }
.qa-bar { height: 8px; border-radius: 4px; background: rgba(10, 42, 28, 0.08); overflow: hidden; }
.qa-fill { height: 100%; border-radius: 4px; background: var(--green); transition: width 0.6s ease; }
.qa-fill.mid { background: var(--amber); }
.qa-fill.high { background: #E8590C; }

.quiz-advice {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin-bottom: 24px;
  text-align: start;
}
.quiz-advice .qa-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime); }
body[dir="rtl"] .quiz-advice .qa-label { letter-spacing: 0; }
.quiz-advice h4 { font-size: 1.15rem; margin: 6px 0 8px; }
.quiz-advice .qa-insight { font-size: 0.95rem; color: rgba(253, 252, 248, 0.8); margin-bottom: 14px; }
.quiz-advice .qa-move { font-size: 0.95rem; }
.quiz-advice .qa-move strong { color: var(--lime); }

@media (max-width: 600px) {
  .quiz-areas { grid-template-columns: 1fr; }
}

/* ---------- Proof / founders ---------- */
/* ---------- About: MVV + founders ---------- */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}
.mvv-card:nth-child(2) { border-top-color: #8CC412; }
.mvv-card:nth-child(3) { border-top-color: var(--violet); }
.mvv-card h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--green-dark); }
.mvv-card:nth-child(3) h3 { color: var(--violet-dark); }
.mvv-card p { font-size: 0.93rem; color: var(--ink-soft); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.founder-card .avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid var(--green-tint);
}
.founder-card h3 { font-size: 1.15rem; }
.founder-card .role { font-size: 0.85rem; color: var(--green-dark); font-weight: 600; margin-bottom: 12px; }
.founder-card p { font-size: 0.93rem; color: var(--ink-soft); }
@media (max-width: 700px) {
  .mvv-grid, .founders-grid { grid-template-columns: 1fr; }
}

/* Let's GO lockup */
.letsgo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.letsgo .lets {
  font-family: 'Caveat', cursive;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--cream);
  transform: rotate(-5deg);
  margin-bottom: -8px;
  line-height: 1;
}
.letsgo img { height: 60px; width: auto; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    linear-gradient(rgba(7, 30, 19, 0.82), rgba(10, 42, 28, 0.92)),
    url('../assets/riyadh.webp') center / cover no-repeat;
  color: var(--cream);
  text-align: center;
}
.final-cta h2 { color: var(--cream); max-width: 700px; margin: 0 auto 16px; }
.final-cta p { color: rgba(253, 252, 248, 0.75); max-width: 560px; margin: 0 auto 34px; }
.final-cta .hero-ctas { justify-content: center; }
.final-cta .discipline-line { margin-top: 34px; font-size: 1.05rem; font-weight: 600; color: var(--green); }
.final-cta .contact-line { margin-top: 12px; font-size: 0.9rem; color: rgba(253, 252, 248, 0.6); }
.final-cta .contact-line a { color: var(--green); text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { background: #071E13; color: rgba(253, 252, 248, 0.6); padding: 44px 0; font-size: 0.87rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { color: rgba(253, 252, 248, 0.6); text-decoration: none; }
.footer-nav a:hover { color: var(--green); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .symptom-grid, .pillars, .offers-grid { grid-template-columns: 1fr 1fr; }
  .steps, .value-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
}

@media (max-width: 600px) {
  .symptom-grid, .pillars, .offers-grid, .steps, .quiz-grid, .founders-grid, .value-grid { grid-template-columns: 1fr; }
  .quiz-box { padding: 26px 20px; }
  .btn-header { display: none; }

  /* Mobile polish */
  .logo-link img { height: 22px; }
  .header-inner { gap: 10px; padding-block: 12px; }
  .lang-toggle { padding: 6px 12px; font-size: 0.8rem; }
  .hero { padding: 44px 0 40px; }
  .hero-lines { display: none; }
  .kicker { font-size: 0.68rem; letter-spacing: 0.08em; padding: 5px 12px; }
  .hero h1 { font-size: 2.15rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-benefits li { font-size: 0.98rem; }
  .hero-ctas .btn { width: 100%; }
  section { padding: 52px 0; }
  h2 { font-size: 1.65rem; }
  .section-sub { font-size: 0.98rem; }
  .vision-band { padding: 44px 0; }
  .vision-text { font-size: 1.45rem; }
  .marquee-track span { font-size: 0.88rem; }
  .ai-panel { margin-top: 36px; }
  .ai-title { font-size: 1.25rem; }
  .flow-step { padding-inline-start: 70px; padding-bottom: 30px; }
  .flow-step .num { width: 46px; height: 46px; font-size: 1rem; }
  .flow::before { inset-inline-start: 22px; }
  .saudi-line, .ai-intro { font-size: 1rem; }
  .final-cta .hero-ctas { flex-direction: column; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ---------- Decorative shapes & motion ---------- */
.hero, .value, .final-cta { position: relative; overflow: hidden; }
.hero .container, .value .container, .final-cta .container { position: relative; z-index: 1; }
/* Flowing gradient lines — abstract "flow" motif behind the hero */
.hero-lines {
  position: absolute;
  top: -30px;
  inset-inline-end: -140px;
  width: 72%;
  max-width: 860px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
body[dir="rtl"] .hero-lines { transform: scaleX(-1); }
.hero-lines path {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  animation: drawline 1.8s cubic-bezier(0.6, 0, 0.2, 1) forwards;
}
.hero-lines path:nth-child(odd) { animation-delay: 0.25s; }
.hero-lines path:last-child { animation-delay: 0.5s; }
@keyframes drawline { to { stroke-dashoffset: 0; } }

.chat-bubble {
  animation: floatIn 0.6s ease backwards, bob 6s ease-in-out 1.4s infinite alternate;
}
@keyframes bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

.symptom-card, .pillar, .value-card, .offer, .founder-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.symptom-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: 0 12px 30px rgba(10, 42, 28, 0.09); }
.pillar:hover, .value-card:hover, .founder-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(10, 42, 28, 0.13); }
.offer:hover { transform: translateY(-5px); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* Marquee ribbon */
.marquee { background: var(--ink); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 44px; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { color: rgba(253, 252, 248, 0.88); font-weight: 600; font-size: 1rem; white-space: nowrap; }
.marquee-track .star { color: var(--green); font-size: 0.85rem; }
.marquee-track .star:nth-of-type(even) { color: var(--lime); }
@keyframes marquee { to { transform: translateX(-50%); } }
body[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

/* Section photography */
.brand-photo-wrap {
  width: min(820px, 100%);
  margin: 44px auto 8px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(10, 42, 28, 0.14);
}
.brand-photo {
  width: 100%;
  display: block;
}
.section-photo-wrap {
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.section-photo { width: 100%; display: block; }

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Offer value anchor + strong guarantee ===== */
.offer .offer-anchor {
  font-size: 0.9rem; font-weight: 600; color: var(--green-dark);
  background: var(--green-tint); border-radius: var(--radius-sm);
  padding: 10px 12px; margin-bottom: 14px; text-align: start;
}
.offer .guarantee {
  margin-top: 16px; font-size: 0.9rem; font-weight: 600; color: var(--green-dark);
  background: var(--green-tint); border: 1.5px dashed var(--green);
  border-radius: var(--radius-sm); padding: 12px 14px; text-align: start; line-height: 1.5;
}

/* ===== Health Check context inputs ===== */
.quiz-context { margin: 24px 0 6px; }
.ctx-title { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 12px; text-align: center; }
.ctx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ctx-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); text-align: start; }
.ctx-field select {
  padding: 10px 12px; border: 1.5px solid rgba(10,42,28,0.15); border-radius: var(--radius-sm);
  font-size: 0.9rem; background: var(--white); color: var(--ink); font-family: inherit;
}
.ctx-field select:focus { outline: none; border-color: var(--green); }

/* ===== Gate: unlock full report ===== */
.quiz-gate { margin-top: 8px; }
.gate-lock, .gate-otp {
  background: var(--white); border: 1.5px solid var(--green); border-radius: 16px;
  padding: 24px; text-align: start; max-width: 560px; margin: 22px auto 0;
}
.gate-eyebrow, .deep-eyebrow {
  display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green-dark); margin-bottom: 6px;
}
body[dir="rtl"] .gate-eyebrow, body[dir="rtl"] .deep-eyebrow { letter-spacing: 0; }
.gate-lock h4 { font-size: 1.25rem; margin-bottom: 14px; color: var(--ink); }
.gate-list { list-style: none; margin: 0 0 18px; display: grid; gap: 8px; }
.gate-list li { position: relative; padding-inline-start: 26px; font-size: 0.92rem; color: var(--ink-soft); }
.gate-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--green); font-weight: 800; }
.gate-form .gate-row { display: flex; gap: 10px; margin-bottom: 10px; }
.gate-form input {
  flex: 1; width: 100%; padding: 12px 14px; border: 1.5px solid rgba(10,42,28,0.15);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; background: var(--white); color: var(--ink);
}
.gate-form input:focus { outline: none; border-color: var(--green); }
.gate-form .btn { width: 100%; margin-top: 4px; }
.gate-fine { font-size: 0.78rem; color: var(--ink-soft); margin-top: 10px; text-align: center; }
.gate-error { color: #C0341D; font-size: 0.85rem; margin: 4px 0 8px; font-weight: 600; }
.otp-sub { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 12px; }
.otp-test { font-size: 0.82rem; background: #FFF4D6; color: #7a5b00; border-radius: var(--radius-sm); padding: 8px 10px; margin-bottom: 10px; }
.otp-input {
  width: 100%; letter-spacing: 0.4em; text-align: center; font-size: 1.4rem; padding: 12px;
  border: 1.5px solid rgba(10,42,28,0.15); border-radius: var(--radius-sm); margin-bottom: 10px; font-family: inherit;
}
.otp-input:focus { outline: none; border-color: var(--green); }
.gate-otp .btn { width: 100%; }
.otp-resend { display: block; margin: 10px auto 0; background: none; border: none; color: var(--green-dark); font-weight: 600; cursor: pointer; font-size: 0.85rem; }

/* ===== Deep report ===== */
.quiz-deep { margin-top: 24px; text-align: start; }
.deep-eyebrow { margin-top: 22px; }
.deep-cost { background: #071E13; color: var(--cream); border-radius: 16px; padding: 24px; margin-bottom: 6px; }
.deep-cost .deep-eyebrow { color: var(--lime); margin-top: 0; }
.deep-cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 12px 0; }
.deep-stat { text-align: center; }
.ds-num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--lime); line-height: 1.1; }
.ds-lbl { font-size: 0.76rem; color: rgba(253,252,248,0.75); }
.deep-cost-note { font-size: 0.8rem; color: rgba(253,252,248,0.6); margin: 0; }
.deep-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 10px 0 4px; }
.deep-area { background: var(--white); border: 1px solid rgba(10,42,28,0.1); border-radius: 12px; padding: 16px; }
.deep-area.sev-high { border-color: rgba(232,89,12,0.4); }
.deep-area.sev-mid { border-color: rgba(255,173,13,0.5); }
.da-head { display: flex; justify-content: space-between; gap: 8px; font-weight: 600; }
.da-count { color: var(--ink-soft); font-weight: 500; }
.deep-area .qa-bar { margin: 10px 0; }
.da-insight { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 8px; }
.da-move { font-size: 0.88rem; }
.da-move strong { color: var(--green-dark); }
.deep-plan-intro { font-size: 0.9rem; color: var(--ink-soft); margin: 6px 0 12px; }
.deep-plan { list-style: none; display: grid; gap: 12px; margin: 0; }
.deep-plan li { display: flex; gap: 12px; align-items: flex-start; background: var(--white); border: 1px solid rgba(10,42,28,0.1); border-radius: 12px; padding: 14px 16px; }
.dp-num { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: var(--ink); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.dp-body { font-size: 0.92rem; line-height: 1.5; }
.deep-bench { margin-top: 18px; font-weight: 600; color: var(--ink); background: var(--green-tint); border-radius: 12px; padding: 14px 16px; font-size: 0.92rem; }
.deep-cta { margin-top: 22px; background: var(--white); border: 1.5px solid var(--green); border-radius: 16px; padding: 24px; text-align: center; }
.deep-cta h4 { font-size: 1.15rem; margin-bottom: 8px; }
.deep-cta p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 auto 16px; max-width: 520px; }
.deep-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .ctx-grid, .deep-cost-grid, .deep-areas { grid-template-columns: 1fr; }
  .gate-form .gate-row { flex-direction: column; }
}

/* ===== Business X-Ray funnel ===== */
.xray-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0 8px; }
.xray-step { position: relative; background: var(--white); border: 1px solid rgba(10,42,28,0.1); border-radius: 14px; padding: 22px 18px 18px; }
.xray-num { position: absolute; top: -14px; inset-inline-start: 18px; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: var(--ink); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.xray-step h3 { font-size: 1.02rem; margin: 6px 0 8px; }
.xray-step p { font-size: 0.9rem; color: var(--ink-soft); }
.xray-value { max-width: 640px; margin: 30px auto 0; background: var(--white); border: 2px solid var(--green); border-radius: 18px; padding: 26px; text-align: center; }
.xray-value .deep-eyebrow { color: var(--green-dark); }
.xray-stack { list-style: none; display: grid; gap: 10px; margin: 14px 0 18px; text-align: start; }
.xray-stack li { position: relative; padding-inline-start: 30px; font-size: 0.95rem; }
.xray-stack li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--green); font-weight: 800; }
.xray-guarantee { font-size: 0.92rem; font-weight: 600; color: var(--green-dark); background: var(--green-tint); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 18px; text-align: start; }
.xray-value .btn { width: 100%; }
.xray-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 12px; }
.xray-sprint { max-width: 640px; margin: 22px auto 0; background: #F7F6F1; border: 1px solid rgba(10,42,28,0.1); border-radius: 16px; padding: 24px; text-align: start; }
.xray-sprint .tier { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--violet-dark); }
body[dir="rtl"] .xray-sprint .tier { letter-spacing: 0; }
.xray-sprint h3 { font-size: 1.2rem; margin: 6px 0 6px; }
.xray-sprint ul { list-style: none; margin: 12px 0 18px; display: grid; gap: 8px; }
.xray-sprint li { position: relative; padding-inline-start: 26px; font-size: 0.92rem; color: var(--ink-soft); }
.xray-sprint li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--green); font-weight: 700; }

/* ===== Newsletter ===== */
.newsletter { background: var(--green-tint); text-align: center; }
.news-form { max-width: 640px; margin: 22px auto 0; }
.news-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.news-form input {
  width: 100%; padding: 12px 14px; border: 1.5px solid rgba(10,42,28,0.15);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; background: var(--white); color: var(--ink);
}
.news-form input:focus { outline: none; border-color: var(--green); }
.news-form .btn { min-width: 200px; }
.form-status { min-height: 1.2em; margin-top: 10px; font-size: 0.9rem; font-weight: 600; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: #C0341D; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.07); }

/* ===== Contact page ===== */
.contact-section { padding-top: 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-intro h1 { font-size: 2.2rem; margin: 8px 0 12px; }
.contact-direct { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 14px; }
.contact-email-line { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 10px; }
.contact-email-line a, .contact-intro a { color: var(--green-dark); }
.contact-card { background: var(--white); border: 1px solid rgba(10,42,28,0.1); border-radius: 18px; padding: 26px; box-shadow: 0 8px 30px rgba(10,42,28,0.06); }
.contact-card h2 { font-size: 1.3rem; margin-bottom: 16px; }
.contact-form .cf-row { display: flex; gap: 10px; margin-bottom: 10px; }
.contact-form input, .contact-form textarea {
  flex: 1; width: 100%; padding: 12px 14px; border: 1.5px solid rgba(10,42,28,0.15);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; background: var(--white); color: var(--ink);
}
.contact-form textarea { margin-bottom: 12px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form .btn { width: 100%; }

@media (max-width: 900px) {
  .xray-flow { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .xray-flow, .news-row { grid-template-columns: 1fr; }
  .contact-form .cf-row { flex-direction: column; }
  .wa-float { width: 52px; height: 52px; bottom: 16px; inset-inline-end: 16px; }
}
body[dir="rtl"] .wa-float { inset-inline-end: 22px; }

/* ===== Spam honeypot (hidden from humans) ===== */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

/* ===== Two-product offers ===== */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 44px 0 8px; align-items: stretch; }
.product { position: relative; background: var(--white); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; border: 1px solid rgba(10,42,28,0.08); }
.product.featured { border: 2.5px solid var(--green); }
.product .badge { position: absolute; top: -14px; inset-inline-start: 28px; background: var(--green); color: var(--ink); font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; }
.product-tag { display: inline-block; align-self: flex-start; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--violet-dark); background: var(--lavender); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
body[dir="rtl"] .product-tag { letter-spacing: 0; }
.product h3 { font-size: 1.5rem; margin-bottom: 4px; }
.product-price { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); margin-bottom: 10px; }
.product-desc { font-size: 0.98rem; color: var(--ink-soft); margin-bottom: 18px; }
.product ul { list-style: none; margin-bottom: 22px; flex-grow: 1; display: grid; gap: 9px; }
.product li { position: relative; padding-inline-start: 28px; font-size: 0.95rem; color: var(--ink); }
.product li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--green); font-weight: 800; }
.product .btn { width: 100%; }
.product-foot { font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

/* How the X-Ray works */
.xray-how { margin-top: 40px; text-align: center; }
.xray-how .deep-eyebrow { color: var(--green-dark); margin-bottom: 18px; }
.xray-how .xray-flow { margin-top: 6px; }
.xray-step h4 { font-size: 1rem; margin: 6px 0 8px; }

@media (max-width: 780px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ===== Proof / case studies ===== */
.proof { background: var(--cream); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.case { background: var(--white); border: 1px solid rgba(10,42,28,0.1); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); }
.case-label { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--violet-dark); background: var(--lavender); padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
body[dir="rtl"] .case-label { letter-spacing: 0; }
.case h3 { font-size: 1.15rem; margin-bottom: 14px; }
.case-row { margin-bottom: 12px; }
.case-row:last-child { margin-bottom: 0; }
.case-k { display: block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
body[dir="rtl"] .case-k { letter-spacing: 0; }
.case-k.chaos { color: #C0341D; }
.case-k.build { color: var(--violet-dark); }
.case-k.result { color: var(--green-dark); }
.case-row p { font-size: 0.9rem; color: var(--ink-soft); }

.proof-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.demo-card { background: #071E13; color: var(--cream); border-radius: var(--radius); padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.demo-play { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: var(--ink); font-size: 1.1rem; margin-bottom: 14px; }
.demo-card h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 8px; }
.demo-card p { color: rgba(253,252,248,0.72); font-size: 0.92rem; max-width: 420px; }
.founding-card { background: var(--white); border: 2px solid var(--green); border-radius: var(--radius); padding: 28px; }
.founding-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.founding-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 18px; }
.founding-card .btn { width: 100%; }

@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; }
  .proof-extra { grid-template-columns: 1fr; }
}

/* ===== Blog ===== */
.blog-hero { padding-top: 120px; padding-bottom: 24px; text-align: center; }
.blog-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 8px 0 12px; }
.blog-hero .section-sub { margin-inline: auto; }
.blog-list { padding-top: 20px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { background: var(--white); border: 1px solid rgba(10,42,28,0.1); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); text-decoration: none; color: var(--ink); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
a.post-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(10,42,28,0.13); }
.post-card.soon { opacity: 0.6; }
.post-tag { display: inline-block; align-self: flex-start; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-dark); background: var(--green-tint); padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
body[dir="rtl"] .post-tag { letter-spacing: 0; }
.post-card h2 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; }
.post-card p { font-size: 0.92rem; color: var(--ink-soft); flex-grow: 1; }
.post-read { margin-top: 14px; font-weight: 700; color: var(--green-dark); font-size: 0.9rem; }
.blog-note { margin: 30px 0 10px; text-align: center; color: var(--ink-soft); font-size: 0.95rem; }
.blog-list a[href="index.html"] { color: var(--green-dark); }

/* Article */
.post-article { padding: 110px 0 40px; }
.post-narrow { max-width: 720px; }
.post-crumb { display: inline-block; color: var(--green-dark); text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; }
.post-article h1 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin: 8px 0 18px; line-height: 1.15; }
.post-lead { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.6; }
.post-article h2 { font-size: 1.4rem; margin: 30px 0 12px; }
.post-article p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 16px; color: var(--ink); }
.post-list { margin: 0 0 18px; padding-inline-start: 22px; }
.post-list li { font-size: 1.05rem; line-height: 1.7; margin-bottom: 8px; }
.post-cta { margin-top: 34px; background: var(--green-tint); border-radius: var(--radius); padding: 28px; text-align: center; }
.post-cta h3 { font-size: 1.3rem; margin-bottom: 8px; }
.post-cta p { font-size: 0.98rem; color: var(--ink-soft); margin: 0 auto 16px; max-width: 520px; }

@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr; } }

/* ===== Case cards with photos (override) ===== */
.proof .case-grid { grid-template-columns: repeat(3, 1fr); }
.proof .case { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.case-img { width: 100%; aspect-ratio: 40 / 24; overflow: hidden; background: #e8e8e0; }
.case-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.proof .case:hover .case-img img { transform: scale(1.05); }
.case-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.case-body h3 { font-size: 1.2rem; margin-bottom: 12px; }
.case-k.pain { color: #C0341D; }
.case-k.fix { color: var(--green-dark); }
.case-p { font-size: 0.9rem; color: var(--ink-soft); margin: 3px 0 14px; }
.case-cta { margin-top: auto; font-weight: 700; color: var(--green-dark); text-decoration: none; font-size: 0.92rem; align-self: flex-start; }
.case-cta:hover { color: var(--green); }
@media (max-width: 860px) { .proof .case-grid { grid-template-columns: 1fr; } }

/* ================= Build & Launch (secondary) ================= */
.build-launch { background: var(--cream); text-align: center; }
.build-launch .kicker { color: var(--violet-dark); background: var(--lavender); }
.build-launch h2 { text-align: center; }
.build-launch > .container > .section-sub { max-width: 640px; margin-left: auto; margin-right: auto; }
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 30px;
}
.bl-card {
  background: var(--white);
  border: 1px solid rgba(10, 42, 28, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 2px 14px rgba(10, 42, 28, 0.04);
  text-align: left;
}
.bl-ic {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 14px;
}
.bl-card h3 {
  font-size: 1.06rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}
.bl-card p { font-size: 0.94rem; line-height: 1.65; color: var(--ink-soft); }
.bl-card.bl-dark { background: var(--ink); border-color: var(--ink); }
.bl-card.bl-dark h3 { color: var(--cream); }
.bl-card.bl-dark p { color: rgba(253, 252, 248, 0.78); }

.bl-ladder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  background: var(--green-tint);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 26px;
}
.bl-ladder-step { font-weight: 700; color: var(--green-dark); font-size: 1.05rem; }
.bl-ladder-arrow { color: var(--lime); font-weight: 700; font-size: 1.05rem; }
.bl-ladder-note { width: 100%; text-align: center; color: var(--ink-soft); font-size: 0.95rem; }

.bl-line {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}
.bl-cta-wrap { text-align: center; }

@media (max-width: 900px) { .bl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .bl-grid { grid-template-columns: 1fr; } }

/* ================= Stats band ================= */
.stats-band { background: var(--ink); }
.stats-band .container { text-align: center; }
.stats-kicker { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color: var(--lime); margin-bottom:12px; }
body[dir="rtl"] .stats-kicker { letter-spacing:0; }
.stats-h2 { color: var(--cream); font-size: clamp(1.4rem,3vw,2rem); line-height:1.2; margin-bottom:8px; }
.stats-sub { color: rgba(253,252,248,.6); font-size:.95rem; margin-bottom:32px; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.12); border-radius:16px; overflow:hidden; }
.stat { background: var(--ink); padding:28px 18px; }
.stat-n { font-size:2.6rem; font-weight:800; color: var(--green); line-height:1; }
.stat-n.accent { color: var(--lime); }
.stat-p { font-size:.9rem; color: rgba(253,252,248,.9); line-height:1.45; margin:10px 0 8px; }
.stat-src { font-size:.68rem; color: rgba(253,252,248,.45); }
.stats-foot { max-width:720px; margin:22px auto 0; color: rgba(253,252,248,.88); font-size:1.05rem; line-height:1.55; }
@media (max-width:900px){ .stats-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .stats-grid { grid-template-columns:1fr; } }

/* ================= Team benefit ================= */
.team { background: var(--green-tint); text-align:center; }
.team .kicker { color: var(--green-dark); background: var(--white); }
.team h2 { max-width:760px; margin-left:auto; margin-right:auto; margin-bottom:14px; }
.team .section-sub { margin-left:auto; margin-right:auto; }

/* ===== Stats band — light theme (override) ===== */
.stats-band { background: var(--sand); }
.stats-kicker { color: var(--green-dark); background: var(--green-tint); padding: 5px 12px; border-radius: 100px; }
.stats-h2 { color: var(--ink); }
.stats-sub { color: var(--ink-soft); }
.stats-grid { background: rgba(10,42,28,.10); border-color: rgba(10,42,28,.10); }
.stat { background: var(--white); }
.stat-n, .stat-n.accent { color: var(--green); }
.stat-p { color: var(--ink-soft); }
.stat-src { color: rgba(10,42,28,.45); }
.stats-foot { color: var(--ink); max-width: 760px; font-weight: 500; }

/* ===== Hero SVG visual ===== */
.hero-svg { width: 100%; height: auto; max-width: 520px; margin-inline: auto; display: block; animation: heroFloat 6s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-svg { animation: none; } }

/* ===== Hero WhatsApp chaos mockup ===== */
.wa-mock { max-width: 340px; margin-inline: auto; background: #ECE5DD; border-radius: 26px; overflow: hidden; box-shadow: 0 22px 54px rgba(10,42,28,.22); font-family: var(--font-en); animation: heroFloat 6s ease-in-out infinite; }
body[dir="rtl"] .wa-mock { font-family: var(--font-ar); }
@media (prefers-reduced-motion: reduce) { .wa-mock { animation: none; } }
.wa-head { display: flex; align-items: center; gap: 10px; background: var(--green-dark); color: var(--cream); padding: 12px 14px; }
.wa-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex: none; }
.wa-meta { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.wa-meta strong { font-size: .92rem; }
.wa-meta span { font-size: .72rem; opacity: .82; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-badge { background: #25D366; color: #0A2A1C; font-size: .72rem; font-weight: 700; min-width: 22px; height: 22px; border-radius: 11px; display: flex; align-items: center; justify-content: center; padding: 0 6px; flex: none; }
.wa-body { padding: 14px 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.wa-day { align-self: center; background: rgba(255,255,255,.75); color: #5b6b63; font-size: .64rem; font-weight: 700; padding: 3px 10px; border-radius: 8px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.wa-msg { background: #fff; border-radius: 12px; border-start-start-radius: 3px; padding: 7px 11px 6px; max-width: 88%; align-self: flex-start; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.wa-msg.urgent { background: #FFF1F0; }
.wa-name { display: block; font-size: .72rem; font-weight: 700; margin-bottom: 1px; }
.wa-name.n1 { color: #E0245E; } .wa-name.n2 { color: #0E9AA7; } .wa-name.n3 { color: #C2410C; }
.wa-msg p { font-size: .85rem; color: #111b16; margin: 0; line-height: 1.35; }
.wa-time { display: block; text-align: end; font-size: .62rem; color: #94a29a; margin-top: 2px; }
.wa-typing { align-self: flex-start; background: #fff; border-radius: 12px; border-start-start-radius: 3px; padding: 10px 13px; display: flex; gap: 4px; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.wa-typing span { width: 6px; height: 6px; border-radius: 50%; background: #b8c2bc; animation: waBlink 1.2s infinite; }
.wa-typing span:nth-child(2) { animation-delay: .2s; } .wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes waBlink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }

/* ===== Hero WA mockup — enlarge + caption ===== */
.wa-mock { max-width: 384px; }
.wa-meta strong { font-size: .98rem; }
.wa-msg p { font-size: .9rem; }
.wa-caption { text-align: center; max-width: 384px; margin: 18px auto 0; font-weight: 600; color: var(--ink); font-size: 1.02rem; line-height: 1.4; }
body[dir="rtl"] .wa-caption { font-size: 1.08rem; }

/* ===== Founding offer price ===== */
.product-price .price-old { text-decoration: line-through; color: var(--ink-soft); opacity: .55; font-weight: 600; font-size: 0.6em; margin-inline-end: 8px; }
.product-price .price-now { color: var(--green-dark); font-weight: 800; }
.product-promo { display: inline-block; background: var(--amber); color: var(--ink); font-size: .72rem; font-weight: 700; letter-spacing: .01em; padding: 5px 12px; border-radius: 100px; margin: -6px 0 14px; }

/* ===== Consistent centred section headers ===== */
.whatwedo .container, .value .container, .proof .container, .offers .container, .ai-section .container, .foundation .container { text-align: center; }
.whatwedo .section-sub, .value .section-sub, .proof .section-sub, .offers .section-sub, .foundation .section-sub { margin-left: auto; margin-right: auto; }
/* card/list bodies stay left-aligned for readability */
.case .case-body, .value-card, .product, .bl-card, .ai-item { text-align: left; }

/* ===== Pillars: 2x2, centred ===== */
.pillars { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
.pillars .pillar { text-align: center; }
@media (max-width: 600px){ .pillars { grid-template-columns: 1fr; } }

/* ===== AI section + Foundation ===== */
.ai-section { background: var(--sand); }
.ai-section .ai-panel { max-width: 900px; margin-inline: auto; }
.ai-section .ai-title, .ai-section .ai-intro { text-align: center; }
.ai-section .ai-intro { max-width: 660px; margin-inline: auto; }
.foundation { background: var(--cream); }
.foundation .section-sub { max-width: 700px; }

/* ===== Fixes pass ===== */
/* Hero (AR): keep copy above the mockup; let the AI-agents accent wrap instead of hiding behind the image */
.hero-copy { position: relative; z-index: 2; }
.hero h1 { overflow-wrap: break-word; }
body[dir="rtl"] .hero h1 .accent { white-space: normal; }

/* Stats: more air under the headline (sub removed), and tighten the gap to the AI section */
.stats-band .stats-h2 { margin-bottom: 30px; }
.stats-band { padding-bottom: 60px; }
.ai-section { padding-top: 52px; }

/* Text-heavy sections read better left-aligned (right in Arabic) */
.ai-section .container, .foundation .container, .value .container, .whatwedo .container, .method .container { text-align: start; }
.ai-section .section-sub, .foundation .section-sub, .value .section-sub, .whatwedo .section-sub, .method .section-sub { margin-inline-start: 0; margin-inline-end: 0; }
.ai-section .ai-title, .ai-section .ai-intro { text-align: start; }
.ai-section .ai-intro { margin-inline-start: 0; margin-inline-end: 0; }
.pillars .pillar { text-align: start; }
.brand-photo-wrap { text-align: center; }

/* Newsletter: slimmer and neutral so it sits well above the footer */
.newsletter { background: var(--cream); padding: 56px 0; }

/* Case studies: 'see more' link */
.proof-more { margin-top: 34px; text-align: center; }
.proof-more a { color: var(--green-dark); font-weight: 700; text-decoration: none; }
.proof-more a:hover { color: var(--green); }

/* Case-studies page CTA band */
.cs-cta { background: var(--ink); color: var(--cream); text-align: center; }
.cs-cta h2 { color: var(--cream); }
.cs-cta p { color: rgba(253,252,248,.8); max-width: 560px; margin: 0 auto 22px; }

/* AR hero: slightly smaller so the accented phrase fits without orphaning أنظمة */
body[dir="rtl"] .hero h1 { font-size: clamp(1.85rem, 4.6vw, 2.95rem); }

/* Align content blocks to the section's start edge (matches the left/right-aligned headers) */
.pillars { max-width: 760px; margin-inline-start: 0; margin-inline-end: auto; }
.brand-photo-wrap { text-align: start; }
.value-grid, .flow, .ai-grid { margin-inline-start: 0; }

/* Case studies header aligned to start, like the other content sections */
.proof .container { text-align: start; }
.proof .section-sub { margin-inline-start: 0; margin-inline-end: 0; }

/* Newsletter: compact dark band that merges into the footer */
.newsletter { background: var(--ink); padding: 42px 0 46px; }
.newsletter .kicker { color: var(--lime); background: rgba(255,255,255,.10); }
.newsletter h2 { color: var(--cream); font-size: clamp(1.25rem, 2.6vw, 1.65rem); margin-bottom: 10px; }
.newsletter .section-sub { color: rgba(253,252,248,.72); margin-left: auto; margin-right: auto; }
.newsletter .news-form input { background: var(--white); color: var(--ink); border: 1px solid rgba(255,255,255,.18); }
.newsletter + .site-footer { border-top: 1px solid rgba(253,252,248,.10); }
