/* ============================================================
   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: #B7E219;
  --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; }

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); }

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: 14px 0;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 30px; width: auto; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.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 .emoji { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.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-line {
  margin: 44px auto 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  max-width: 680px;
}
.ai-line em {
  font-style: italic;
  background: linear-gradient(90deg, var(--green), #8CC412);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 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 ---------- */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.founder-card .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.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); }


/* ---------- Final CTA ---------- */
.final-cta {
  background:
    linear-gradient(rgba(7, 30, 19, 0.82), rgba(10, 42, 28, 0.92)),
    url('../assets/hf_20260708_150551_b83f515d-6f3b-4354-8648-14ecc9168a00.png') 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; }
  .offer.featured { order: -1; }
  .btn-header { display: none; }
}

/* ---------- 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;
}
