/**
 * BrightEdge layout language — clean standalone rebuild.
 * Patterns from spec/brightedge-layout.md
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--lh-body);
  letter-spacing: var(--tracking-body);
  color: var(--fg);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* ── Site-wide ambient video background ── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Hold a light frame under the video so soft-loop seeks never flash black. */
  background:
    #d8ddd4
    center / cover no-repeat
    url("https://framerusercontent.com/images/kYv128IxTWhnk352XqoJxD8sNQ.jpg?width=1920&height=1080");
}

.site-bg__video {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
  opacity: var(--site-video-opacity);
  /* Make the ambient background noticeably blurred. */
  filter: blur(22px) brightness(1.06) contrast(1.04) saturate(1.08);
  transform: scale(1.06);
  will-change: transform;
  animation: site-video-drift 36s ease-in-out infinite alternate;
}

.site-bg__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(243, 245, 241, 0.28) 0%,
      rgba(243, 245, 241, 0.42) 42%,
      rgba(243, 245, 241, 0.62) 100%
    ),
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 255, 255, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 45% at 85% 75%, var(--aura-glow-b), transparent 70%);
}

.site-bg__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.site-bg__glow--a {
  width: min(78vw, 820px);
  height: min(78vw, 820px);
  top: -18%;
  inset-inline-end: -22%;
  background: radial-gradient(circle, rgba(94, 170, 66, 0.38), transparent 68%);
  animation: aura-breathe 14s var(--ease-out-quart) infinite alternate;
  opacity: 1;
  mix-blend-mode: normal;
}

.site-bg__glow--b {
  width: min(62vw, 600px);
  height: min(62vw, 600px);
  bottom: 4%;
  inset-inline-start: -18%;
  background: radial-gradient(circle, rgba(14, 61, 44, 0.26), transparent 70%);
  animation: aura-breathe 18s var(--ease-out-quart) infinite alternate-reverse;
  opacity: 1;
  mix-blend-mode: normal;
}

.site-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

@keyframes aura-breathe {
  from { transform: scale(0.92) translate3d(0, 0, 0); opacity: 0.55; }
  to { transform: scale(1.08) translate3d(-2%, 3%, 0); opacity: 0.95; }
}

@keyframes site-video-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1.2%, 0);
  }
}

.page {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

section[id],
#top {
  scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px));
}

@media (min-width: 1200px) {
  section[id],
  #top {
    scroll-margin-top: 24px;
  }
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--pad-d);
}

@media (max-width: 1199.98px) {
  .container {
    padding: var(--pad-t);
  }
}

@media (max-width: 809.98px) {
  .container {
    padding: var(--pad-p);
  }
}

/* Offset main for desktop rail */
@media (min-width: 1200px) {
  .page {
    padding-left: var(--rail);
  }

  [dir="rtl"] .page {
    padding-left: 0;
    padding-right: var(--rail);
  }
}

/* Type roles */
.eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: none;
  color: var(--fg-secondary);
  font-variant-numeric: tabular-nums;
}

.h2,
.h3,
.hero__title,
.service__label,
.step__title,
.split__sub,
.cap-card h3,
.pillar h3,
.blog__title,
.pscroll-card__title,
.contact__form-title,
.stat__num {
  font-family: var(--font-display);
}

.h2 {
  margin: 0;
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  text-wrap: balance;
}

.h3 {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
}

.lead {
  font-size: var(--text-md);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--fg-secondary);
  max-width: 40ch;
}

.body {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--fg-secondary);
}

.caption {
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--fg-muted);
}

@media (max-width: 1199.98px) {
  .lead { font-size: var(--text-base); max-width: 48ch; }
}

@media (max-width: 809.98px) {
  .lead { max-width: none; }
  .h2 { letter-spacing: -0.015em; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur) var(--ease-out-expo),
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 55%;
  height: 180%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-140%) rotate(12deg);
  transition: transform 0.9s var(--ease-out-expo);
  pointer-events: none;
  z-index: 0;
}

.btn:hover::after {
  transform: translateX(220%) rotate(12deg);
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover {
  background: #145239;
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(14, 61, 44, 0.22),
    0 0 0 1px rgba(94, 170, 66, 0.18);
}

.btn--aura {
  background:
    linear-gradient(135deg, #0e3d2c 0%, #145239 48%, #1a5c3f 100%);
  box-shadow:
    0 16px 40px rgba(14, 61, 44, 0.28),
    0 0 28px rgba(94, 170, 66, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn--aura:hover {
  background:
    linear-gradient(135deg, #145239 0%, #1a6a45 50%, #5eaa42 140%);
  box-shadow:
    0 20px 48px rgba(14, 61, 44, 0.3),
    0 0 36px rgba(94, 170, 66, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.42);
  color: var(--primary);
  border-color: rgba(14, 61, 44, 0.14);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 10px 28px rgba(14, 61, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(94, 170, 66, 0.45);
  color: var(--primary);
  box-shadow:
    0 16px 36px rgba(14, 61, 44, 0.12),
    0 0 24px rgba(94, 170, 66, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  background: var(--bg-surface);
  color: var(--primary);
  box-shadow: none;
}

.btn--light {
  background: #fff;
  color: var(--fg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(10, 18, 16, 0.06);
}

.btn--light:hover {
  border-color: var(--accent);
  color: var(--primary);
}

/* ── Hero (sticky pin, 250vh scroll budget + video bg) ── */
.hero {
  height: 250vh;
  padding: 0;
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: transparent;
  color: var(--fg);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  pointer-events: none;
  background:
    #c9d0c6
    center / cover no-repeat
    url("https://framerusercontent.com/images/kYv128IxTWhnk352XqoJxD8sNQ.jpg?width=1920&height=1080");
}

.hero__media-video {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
  filter: brightness(1.06) contrast(1.04) saturate(1.08);
  pointer-events: none;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(243, 245, 241, 0.72) 0%,
      rgba(243, 245, 241, 0.42) 28%,
      rgba(243, 245, 241, 0.14) 52%,
      rgba(14, 61, 44, 0.06) 78%,
      rgba(14, 61, 44, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(243, 245, 241, 0.18) 0%,
      transparent 40%,
      rgba(243, 245, 241, 0.38) 100%
    ),
    radial-gradient(ellipse 70% 55% at 20% 35%, rgba(94, 170, 66, 0.1), transparent 60%);
  pointer-events: none;
}

.hero__aura {
  position: absolute;
  inset: auto -10% -20% auto;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(94, 170, 66, 0.42) 0%, rgba(94, 170, 66, 0.14) 42%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  animation: aura-breathe 16s var(--ease-out-quart) infinite alternate;
}

[dir="rtl"] .hero__aura {
  inset: auto auto -20% -10%;
}

.hero__row {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__left {
  position: relative;
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  padding: 0 0 72px 90px;
}

.hero__text {
  position: relative;
  width: 135%;
  max-width: 720px;
  flex-shrink: 0;
  z-index: 2;
  will-change: transform, opacity;
}

.hero__pre {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--fg-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 61, 44, 0.1);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:
    0 10px 32px rgba(14, 61, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero__pre::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(94, 170, 66, 0.35);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(94, 170, 66, 0.28); }
  50% { box-shadow: 0 0 0 7px rgba(94, 170, 66, 0.08); }
}

.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: var(--lh-snug);
  text-transform: none;
  letter-spacing: var(--tracking-display);
  max-width: 18ch;
  color: var(--primary);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45),
    0 18px 40px rgba(14, 61, 44, 0.08);
  overflow: visible;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(120deg, rgba(94, 170, 66, 0.2), rgba(94, 170, 66, 0.04) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.02em 0.08em;
  border-radius: 0.12em;
  text-shadow: 0 0 28px rgba(94, 170, 66, 0.25);
}

.hero__body {
  margin: 0 0 26px;
  font-size: var(--text-md);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--fg-secondary);
  max-width: 36ch;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__quiet-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.hero__quiet-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(94, 170, 66, 0.55);
  transform: translateX(3px);
}

[dir="rtl"] .hero__quiet-link:hover {
  transform: translateX(-3px);
}

.hero__note,
.hero__pills {
  display: none !important;
}

.hero .btn {
  box-shadow: none;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease),
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    color 0.45s var(--ease);
}

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

.hero .btn--ghost {
  color: var(--primary);
  border-color: rgba(14, 61, 44, 0.22);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.hero .btn--ghost:hover {
  border-color: var(--accent);
  background: rgba(94, 170, 66, 0.12);
  color: var(--primary);
}

.hero .btn--light {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.hero .btn--light:hover {
  background: #145239;
  color: #fff;
  border-color: transparent;
}

.hero__right {
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  will-change: transform, opacity;
}

.hero__badge,
.hero__orb {
  width: min(360px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
}

.hero__orb {
  isolation: isolate;
}

.hero__orb-glow {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(143, 212, 106, 0.55), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(14, 61, 44, 0.32), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(94, 170, 66, 0.2), transparent 70%);
  filter: blur(22px);
  opacity: 0.95;
  animation: orb-breathe 5.6s var(--ease-out-quart) infinite;
  pointer-events: none;
  z-index: 0;
}

.hero__orb-halo {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(14, 61, 44, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 18px 48px rgba(14, 61, 44, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1;
  pointer-events: none;
}

.hero__orb-ring {
  position: absolute;
  inset: 0;
  z-index: 2;
  animation: spin-slow 26s linear infinite;
  pointer-events: none;
}

.hero__orb-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero__orb-track {
  fill: none;
  stroke: rgba(14, 61, 44, 0.08);
  stroke-width: 1.25;
}

.hero__orb-dashed {
  fill: none;
  stroke: url(#orb-dash-grad);
  stroke-width: 1.5;
  stroke-dasharray: 3.5 7.5;
  stroke-linecap: round;
  opacity: 0.85;
}

.hero__orb-arc {
  fill: none;
  stroke: url(#orb-arc-grad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 92 461;
  stroke-dashoffset: 18;
  filter: drop-shadow(0 0 6px rgba(94, 170, 66, 0.45));
}

.hero__orb-dot {
  fill: #5eaa42;
  filter: drop-shadow(0 0 4px rgba(94, 170, 66, 0.7));
}

.hero__orb-dot--soft {
  fill: #0e3d2c;
  opacity: 0.55;
  filter: none;
}

.hero__orb-core {
  position: relative;
  z-index: 3;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 245, 0.78));
  border: 1px solid rgba(14, 61, 44, 0.1);
  box-shadow:
    0 20px 50px rgba(14, 61, 44, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: orb-float 5.5s ease-in-out infinite;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.hero__orb:hover .hero__orb-core {
  transform: scale(1.04);
  box-shadow:
    0 26px 60px rgba(14, 61, 44, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero__orb-mark {
  width: 64%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(14, 61, 44, 0.12));
}

/* Legacy text badge (kept for safety if CMS falls back) */
.hero__badge {
  border: 1px solid rgba(14, 61, 44, 0.14);
  background:
    conic-gradient(from 0deg, transparent 0 68%, rgba(94, 170, 66, 0.65) 68% 100%),
    rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(14, 61, 44, 0.12);
  animation: spin-slow 24s linear infinite;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero__badge:hover {
  transform: scale(1.04);
  box-shadow: 0 28px 70px rgba(14, 61, 44, 0.18);
}

.hero__badge-inner {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  animation: spin-slow 24s linear infinite reverse;
}

.hero__badge-inner span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--fg-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: opacity, transform;
}

.hero__scroll-hint i {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-line 1.6s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.45); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes orb-breathe {
  0%, 100% { opacity: 0.72; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Enter gate + logo transmission ── */
button.hero__orb {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hero__orb-cue {
  display: none;
  position: absolute;
  z-index: 5;
  right: -6%;
  bottom: 4%;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  color: var(--forest, #0e3d2c);
}

.hero__orb-hand {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 61, 44, 0.12);
  box-shadow: 0 10px 28px rgba(14, 61, 44, 0.16);
  animation: hand-tap 1.35s var(--ease-out-quart, ease) infinite;
}

.hero__orb-hand svg {
  display: block;
  transform: rotate(-18deg);
}

.hero__orb-hand-tap {
  animation: hand-ripple 1.35s ease-out infinite;
}

.hero__orb-cue-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0e3d2c, #1a5c3f);
  border: 1px solid rgba(143, 212, 106, 0.35);
  box-shadow: 0 10px 24px rgba(14, 61, 44, 0.28);
}

@keyframes hand-tap {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(-4px, -6px) scale(0.92); }
  50% { transform: translate(0, 0) scale(1); }
}

@keyframes hand-ripple {
  0%, 55% { opacity: 0; transform: scale(0.4); }
  56% { opacity: 0.55; }
  100% { opacity: 0; transform: scale(2.2); }
}

html.is-gated,
html.is-gated body {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

html.is-gated::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 48%, rgba(243, 245, 241, 0.08), transparent 62%),
    rgba(10, 32, 24, 0.48);
  backdrop-filter: blur(6px) saturate(0.9);
  -webkit-backdrop-filter: blur(6px) saturate(0.9);
}

html.is-gated.is-transmitting::before {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(8, 24, 18, 0.62);
}

html.is-low-fx.is-gated::before {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.is-gated .nav,
html.is-gated .wa-float,
html.is-gated .hero__scroll-hint,
html.is-gated .page > .section,
html.is-gated .hero ~ .section,
html.is-gated footer.footer,
html.is-gated #detail-modal {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

html.is-gated .hero__text,
html.is-gated .hero__left {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html.is-gated .hero__right {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  padding: 0 !important;
  z-index: 90 !important;
  pointer-events: none !important;
  opacity: 1 !important;
}

html.is-gated .hero__orb {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(340px, 78vw) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer;
  z-index: 95 !important;
  animation: orb-invite 2.4s var(--ease-out-quart, ease) infinite;
}

html.is-gated .hero__orb-glow,
html.is-gated .hero__orb-halo,
html.is-gated .hero__orb-ring,
html.is-gated .hero__orb-core {
  z-index: auto !important;
  pointer-events: none;
}

html.is-gated .hero__orb-cue {
  display: flex;
  right: auto;
  left: 50%;
  bottom: -22%;
  transform: translateX(-50%);
}

[dir="rtl"] html.is-gated .hero__orb-cue,
html.is-gated [dir="rtl"] .hero__orb-cue {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

html.is-gated .hero__orb-ring {
  animation-duration: 10s;
}

html.is-gated .hero__orb-arc {
  animation: orb-charge 2.2s ease-in-out infinite alternate;
}

html.is-gated .site-bg__veil {
  background:
    radial-gradient(ellipse 60% 55% at 50% 48%, rgba(243, 245, 241, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(14, 61, 44, 0.28) 0%, rgba(243, 245, 241, 0.55) 100%);
}

@keyframes orb-invite {
  0%, 100% { box-shadow: 0 0 0 rgba(94, 170, 66, 0); }
  50% { box-shadow: 0 0 36px rgba(94, 170, 66, 0.38); }
}

@keyframes orb-charge {
  from { stroke-dasharray: 70 483; stroke-dashoffset: 30; }
  to { stroke-dasharray: 140 413; stroke-dashoffset: -20; }
}

html.is-gated.is-transmitting .hero__orb {
  opacity: 0 !important;
  pointer-events: none !important;
}

html.is-gated .hero__orb.is-charging {
  animation: orb-charge-burst 0.55s var(--ease-out-expo, ease) forwards !important;
}

@keyframes orb-charge-burst {
  0% {
    transform: translate(-50%, -50%) scale(1);
    filter: brightness(1) drop-shadow(0 0 12px rgba(94, 170, 66, 0.35));
    opacity: 1;
  }
  55% {
    transform: translate(-50%, -50%) scale(1.28);
    filter: brightness(1.55) drop-shadow(0 0 48px rgba(143, 212, 106, 0.85));
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.55);
    filter: brightness(2) drop-shadow(0 0 80px rgba(143, 212, 106, 1));
    opacity: 0;
  }
}

html.is-gated.is-transmitting .hero__text,
html.is-gated.is-transmitting .hero__left {
  opacity: 0 !important;
}

.transmission {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  contain: layout style paint;
}

.transmission.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: transmission-enter 0.35s ease both;
  will-change: opacity;
}

@keyframes transmission-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.transmission__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 52% at 50% 46%, rgba(20, 70, 48, 0.5), transparent 68%),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(8, 28, 20, 0.82), rgba(3, 12, 9, 0.97));
}

.transmission.is-active .transmission__veil {
  animation: transmission-veil-pulse 3.6s ease-in-out both;
}

@keyframes transmission-veil-pulse {
  0% { filter: brightness(0.7); }
  20% { filter: brightness(1.15); }
  100% { filter: brightness(1); }
}

.transmission__flash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(143, 212, 106, 0.55), transparent 42%),
    rgba(255, 255, 255, 0.12);
  opacity: 0;
  mix-blend-mode: screen;
}

.transmission.is-active .transmission__flash {
  animation: transmission-flash 0.7s ease-out both;
}

@keyframes transmission-flash {
  0% { opacity: 0.95; }
  100% { opacity: 0; }
}

.transmission__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 170, 66, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 170, 66, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 46%, #000 0%, transparent 64%);
  opacity: 0;
}

.transmission.is-active .transmission__grid {
  animation: transmission-grid 0.8s 0.1s ease both;
}

@keyframes transmission-grid {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 0.85; transform: scale(1); }
}

@keyframes transmission-grid-move {
  to { background-position: 42px 42px; }
}

.transmission__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 3px,
    rgba(143, 212, 106, 0.035) 3px,
    rgba(143, 212, 106, 0.035) 4px
  );
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.transmission.is-active .transmission__scan {
  animation: transmission-scan 2.8s 0.2s linear both;
}

@keyframes transmission-scan {
  0% { opacity: 0; transform: translateY(-8%); }
  15% { opacity: 0.7; }
  85% { opacity: 0.45; }
  100% { opacity: 0; transform: translateY(8%); }
}

.transmission__rings {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(520px, 78vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.transmission__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(94, 170, 66, 0.45);
  box-shadow: 0 0 24px rgba(94, 170, 66, 0.2);
  opacity: 0;
  transform: scale(0.25);
}

.transmission.is-active .transmission__rings span:nth-child(1) {
  animation: transmission-ring 1.6s 0.05s var(--ease-out-expo, ease) both;
}
.transmission.is-active .transmission__rings span:nth-child(2) {
  animation: transmission-ring 1.6s 0.22s var(--ease-out-expo, ease) both;
  border-color: rgba(143, 212, 106, 0.4);
}
.transmission.is-active .transmission__rings span:nth-child(3) {
  animation: transmission-ring 1.6s 0.4s var(--ease-out-expo, ease) both;
  border-color: rgba(14, 61, 44, 0.5);
}

@keyframes transmission-ring {
  0% { opacity: 0.9; transform: scale(0.2); }
  100% { opacity: 0; transform: scale(1.55); }
}

.transmission__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.transmission__particles i {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8fd46a;
  box-shadow: 0 0 10px rgba(143, 212, 106, 0.9);
  opacity: 0;
}

.transmission.is-active .transmission__particles i:nth-child(1) { --a: -20deg; --d: 18vmin; animation: transmission-particle 1.3s 0.15s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(2) { --a: 15deg; --d: 22vmin; animation: transmission-particle 1.35s 0.2s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(3) { --a: 55deg; --d: 16vmin; animation: transmission-particle 1.25s 0.18s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(4) { --a: 95deg; --d: 24vmin; animation: transmission-particle 1.4s 0.22s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(5) { --a: 140deg; --d: 19vmin; animation: transmission-particle 1.3s 0.16s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(6) { --a: 175deg; --d: 26vmin; animation: transmission-particle 1.45s 0.24s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(7) { --a: 210deg; --d: 17vmin; animation: transmission-particle 1.28s 0.19s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(8) { --a: 250deg; --d: 23vmin; animation: transmission-particle 1.38s 0.21s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(9) { --a: 290deg; --d: 20vmin; animation: transmission-particle 1.32s 0.17s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(10) { --a: 325deg; --d: 25vmin; animation: transmission-particle 1.42s 0.23s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(11) { --a: 40deg; --d: 14vmin; width: 3px; height: 3px; animation: transmission-particle 1.2s 0.28s ease-out both; }
.transmission.is-active .transmission__particles i:nth-child(12) { --a: 200deg; --d: 15vmin; width: 3px; height: 3px; animation: transmission-particle 1.22s 0.3s ease-out both; }

@keyframes transmission-particle {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--a)) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--a)) translateY(calc(var(--d) * -1)) scale(0.2);
  }
}

.transmission__stage {
  position: relative;
  z-index: 2;
  width: min(900px, 92vw);
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
}

.transmission__status {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(143, 212, 106, 0.9);
  opacity: 0;
  text-shadow: 0 0 18px rgba(94, 170, 66, 0.45);
}

.transmission.is-active .transmission__status {
  animation: transmission-status 3.4s ease both;
}

.transmission.is-phase-logo .transmission__status {
  animation: transmission-status-out 0.45s ease both;
}

@keyframes transmission-status {
  0% { opacity: 0; letter-spacing: 0.5em; transform: translateY(10px); }
  12% { opacity: 1; letter-spacing: 0.32em; transform: translateY(0); }
  70% { opacity: 1; }
  100% { opacity: 0.35; }
}

@keyframes transmission-status-out {
  to { opacity: 0; transform: translateY(-8px); letter-spacing: 0.45em; }
}

.transmission__meter {
  width: min(220px, 46vw);
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  opacity: 0;
}

.transmission.is-active .transmission__meter {
  animation: transmission-meter-in 0.4s 0.15s ease both;
}

.transmission.is-phase-logo .transmission__meter {
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

.transmission__meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0e3d2c, #5eaa42, #8fd46a);
  box-shadow: 0 0 12px rgba(94, 170, 66, 0.7);
}

.transmission.is-active .transmission__meter span {
  animation: transmission-meter-fill 1s 0.2s var(--ease-out-expo, ease) both;
}

@keyframes transmission-meter-in {
  from { opacity: 0; transform: scaleX(0.6); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes transmission-meter-fill {
  from { width: 0; }
  to { width: 100%; }
}

.transmission__beam {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  pointer-events: none;
}

.transmission__beam--h {
  width: min(640px, 88vw);
  height: 2px;
  transform: translate(-50%, -50%) scaleX(0);
  background: linear-gradient(90deg, transparent, #8fd46a, #5eaa42, #8fd46a, transparent);
  box-shadow: 0 0 28px rgba(94, 170, 66, 0.75);
}

.transmission__beam--v {
  width: 2px;
  height: min(420px, 56vh);
  transform: translate(-50%, -50%) scaleY(0);
  background: linear-gradient(180deg, transparent, rgba(143, 212, 106, 0.85), transparent);
  box-shadow: 0 0 22px rgba(94, 170, 66, 0.55);
}

.transmission.is-active .transmission__beam--h {
  animation: transmission-beam-h 1.15s 0.35s var(--ease-out-expo, ease) both;
}

.transmission.is-active .transmission__beam--v {
  animation: transmission-beam-v 1.15s 0.45s var(--ease-out-expo, ease) both;
}

@keyframes transmission-beam-h {
  0% { opacity: 0; transform: translate(-50%, -50%) scaleX(0.1); }
  40% { opacity: 1; transform: translate(-50%, -50%) scaleX(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scaleX(1.08); }
}

@keyframes transmission-beam-v {
  0% { opacity: 0; transform: translate(-50%, -50%) scaleY(0.1); }
  40% { opacity: 0.9; transform: translate(-50%, -50%) scaleY(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scaleY(1.08); }
}

.transmission__core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(220px, 36vw);
  width: 100%;
}

.transmission__mark {
  position: absolute;
  width: min(148px, 32vw);
  height: auto;
  opacity: 0;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(94, 170, 66, 0.45));
}

.transmission.is-active .transmission__mark {
  animation: transmission-mark 1.35s 0.2s var(--ease-out-expo, ease) both;
}

.transmission.is-phase-logo .transmission__mark {
  animation: transmission-mark-exit 0.55s ease both;
}

@keyframes transmission-mark {
  0% {
    opacity: 0;
    transform: scale(0.45) rotate(-12deg);
    filter: blur(12px) brightness(1.6) drop-shadow(0 0 10px rgba(143, 212, 106, 0.4));
  }
  45% {
    opacity: 1;
    transform: scale(1.08) rotate(0deg);
    filter: blur(0) brightness(1.15) drop-shadow(0 0 36px rgba(143, 212, 106, 0.7));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0) brightness(1) drop-shadow(0 0 24px rgba(94, 170, 66, 0.45));
  }
}

@keyframes transmission-mark-exit {
  to {
    opacity: 0;
    transform: scale(0.7) translateY(-18px);
    filter: blur(8px) brightness(1.4);
  }
}

.transmission.is-phase-logo .transmission__scan,
.transmission.is-phase-hold .transmission__scan,
.transmission.is-phase-logo .transmission__beam,
.transmission.is-phase-hold .transmission__beam,
.transmission.is-phase-logo .transmission__grid,
.transmission.is-phase-hold .transmission__grid,
.transmission.is-phase-logo .transmission__particles,
.transmission.is-phase-hold .transmission__particles,
.transmission.is-phase-logo .transmission__rings,
.transmission.is-phase-hold .transmission__rings {
  opacity: 0 !important;
  animation: none !important;
  visibility: hidden;
}

.transmission__logo-wrap {
  position: relative;
  width: min(640px, 90vw);
  opacity: 0;
  transform: scale(0.94);
  z-index: 5;
  /* Opaque plate so grid/effects never show through the logo */
  background: #050f0c;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(94, 170, 66, 0.18),
    0 24px 80px rgba(0, 0, 0, 0.45);
}

.transmission.is-phase-logo .transmission__logo-wrap,
.transmission.is-phase-hold .transmission__logo-wrap {
  opacity: 1;
}

.transmission.is-phase-logo:not(.is-phase-hold) .transmission__logo-wrap {
  animation: transmission-logo-wrap 1.55s var(--ease-out-expo, ease) both;
}

.transmission.is-phase-hold .transmission__logo-wrap {
  animation: none;
  transform: scale(1.02);
  transition: transform 1.1s ease;
}

@keyframes transmission-logo-wrap {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  40% {
    opacity: 1;
    transform: scale(1.015) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.transmission__logo {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  border-radius: 4px;
  mix-blend-mode: normal !important;
  filter: none !important;
  opacity: 1 !important;
}

.transmission__shimmer {
  display: none !important;
}

.transmission__tagline {
  display: none !important;
}

.transmission.is-leaving {
  animation: transmission-leave 0.9s var(--ease-out-expo, ease) forwards;
  pointer-events: none;
}

.transmission.is-leaving .transmission__stage {
  animation: transmission-stage-leave 0.85s var(--ease-out-expo, ease) both;
}

@keyframes transmission-leave {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes transmission-stage-leave {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.03); }
}

.no-motion html.is-gated .hero__orb,
html.no-motion.is-gated .hero__orb,
html.no-motion .transmission.is-active * {
  animation: none !important;
}

@media (max-width: 639.98px) {
  html.is-gated .hero__orb {
    width: min(280px, 78vw) !important;
  }

  .transmission__logo-wrap {
    width: min(92vw, 420px);
  }

  .transmission__particles i:nth-child(n + 7) {
    display: none;
  }
}

html.is-low-fx .transmission__particles i:nth-child(n + 7),
html.is-low-fx .transmission__scan {
  display: none;
}

.hero__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(246, 247, 245, 0.35));
  z-index: 2;
}

@media (max-width: 1199.98px) {
  .hero__left { padding-left: 40px; padding-bottom: 64px; }
  .hero__title { font-size: clamp(2.25rem, 7vw, 3.5rem); }
  .hero__body { font-size: var(--text-base); max-width: 44ch; }
}

@media (max-width: 809.98px) {
  .hero { height: 180vh; }
  .hero__sticky { height: 100vh; }
  .hero__row { flex-direction: column; }

  .hero__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(246, 247, 245, 0.92) 0%,
        rgba(246, 247, 245, 0.78) 38%,
        rgba(246, 247, 245, 0.62) 100%
      );
  }

  .hero__body,
  .hero__note {
    color: var(--fg-secondary);
    text-shadow: 0 1px 0 rgba(246, 247, 245, 0.85);
  }
  .hero__right {
    max-width: 100%;
    width: 100%;
  }
  .hero__left {
    height: auto;
    min-height: 62vh;
    padding: 96px 20px 20px;
    /* Keep the hero headline/preline visible on mobile.
       flex-end was pushing the top part of a tall text block upward,
       then clipping it due to overflow:hidden on the sticky container. */
    align-items: flex-start;
  }
  .hero__text { width: 100%; max-width: 100%; }
  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
    max-width: none;
    letter-spacing: -0.02em;
  }
  .hero__body {
    font-size: var(--text-base);
    max-width: none;
  }
  .hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }
  .hero__ctas .btn {
    width: auto;
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    min-height: 48px;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
  }
  .hero__pills {
    gap: 6px;
  }
  .hero__pills li {
    font-size: 12px;
    padding: 7px 12px;
  }
  .hero__right {
    height: 28vh;
    padding: 12px 20px 40px;
  }
  .hero__badge,
  .hero__orb { width: min(200px, 55%); }
  .hero__scroll-hint { bottom: 40px; }
  .hero__divider {
    width: 100%;
    height: 20px;
  }
}

@media (max-width: 809.98px) {
  /* Two equal CTAs on phones */
  .hero__ctas {
    display: flex;
    flex-wrap: wrap;
  }
  .hero__ctas .btn {
    flex: 1 1 calc(50% - 5px);
  }
}

/* ── Mobile hero redesign: phones only (no layout overflow) ── */
@media (max-width: 639.98px) {
  .hero {
    /* Remove excessively tall sticky budget on small phones */
    height: auto;
  }

  .hero__sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .hero__row {
    height: auto;
  }

  /* Use almost full width with consistent side padding */
  .hero__left {
    max-width: none;
    width: 100%;
    align-items: flex-start;
    padding: 72px 20px 120px;
    min-height: 0;
    overflow-x: clip;
  }

  [dir="rtl"] .hero__left {
    padding: 72px 20px 120px;
  }

  .hero__text {
    width: 100%;
    max-width: 100%;
  }

  /* Compact availability badge */
  .hero__pre {
    margin-bottom: 10px;
    font-size: 12px;
    padding: 6px 11px;
  }

  /* Headline: cinematic but controlled on phones */
  .hero__title {
    margin-bottom: 12px;
    font-size: clamp(2.375rem, 9.2vw, 2.875rem); /* ~38px–46px */
    line-height: 1.02;
    max-width: none;
    letter-spacing: -0.028em;
  }

  [dir="rtl"] .hero__title {
    max-width: none;
    font-size: clamp(2.25rem, 9vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .hero__title em {
    /* Keep highlight subtle and consistent */
    padding: 0 0.04em;
  }

  /* Supporting paragraph: wider + more compact */
  .hero__body {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.65;
    max-width: none;
  }

  /* CTAs: two primary actions in one row; secondary wraps full-width */
  .hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .hero__ctas .btn {
    min-height: 44px; /* touch target */
    padding: 10px 14px;
    flex: 1 1 calc(50% - 5px);
    white-space: normal;
    text-align: center;
  }

  .hero__quiet-link {
    margin-top: 12px;
  }

  /* Decorative Q graphic: absolutely positioned, behind content */
  .hero__right {
    position: absolute;
    inset: auto 18px 28px auto;
    width: min(210px, 62vw);
    height: auto;
    padding: 0;
    max-width: none;
    z-index: 0;
    pointer-events: none;
  }

  [dir="rtl"] .hero__right {
    inset: auto auto 28px 18px;
  }

  .hero__orb {
    width: 100%;
    opacity: 0.52;
    pointer-events: none;
  }

  /* Ensure orb never covers text/buttons */
  .hero__orb-glow,
  .hero__orb-halo,
  .hero__orb-ring,
  .hero__orb-core {
    z-index: 0 !important;
  }

  /* Hide scroll hint on phones */
  .hero__scroll-hint {
    display: none;
  }

  /* Floating WhatsApp button: smaller + safe from CTAs */
  .wa-float {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 48px;
  }
}

@media (min-width: 810px) and (max-width: 1199.98px) {
  .hero__ctas {
    display: flex;
    flex-wrap: wrap;
  }
}

/* ── Scroll reveal (sections) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(8px);
  transition:
    opacity var(--dur-slow) var(--ease-out-expo),
    transform var(--dur-slow) var(--ease-out-expo),
    filter var(--dur-slow) var(--ease-out-expo);
  content-visibility: visible;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-reveal].is-visible [data-reveal-child] {
  opacity: 1;
  transform: none;
}

[data-reveal-child] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo),
    filter 0.85s var(--ease-out-expo);
}

[data-reveal].is-visible [data-reveal-child]:nth-child(1) { transition-delay: 0.05s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(2) { transition-delay: 0.12s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(3) { transition-delay: 0.19s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(4) { transition-delay: 0.26s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(5) { transition-delay: 0.33s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(6) { transition-delay: 0.4s; }

/* Failsafe: content visible without JS; JS path uses .is-visible / .is-in */
html:not(.js) [data-reveal],
html:not(.js) [data-reveal-child],
html:not(.js) [data-anim],
.no-motion [data-reveal],
.no-motion [data-reveal-child],
.no-motion [data-anim] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.no-motion .hero__orb-ring,
.no-motion .hero__orb-glow,
.no-motion .hero__orb-core,
.no-motion .hero__badge,
.no-motion .hero__badge-inner,
.no-motion .site-bg__video,
.no-motion .site-bg,
.no-motion .site-bg__glow,
.no-motion .hero__media-video,
.no-motion .hero__aura {
  animation: none !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .site-bg,
  .site-bg__video {
    animation: none !important;
    transform: none !important;
  }

  .site-bg__video {
    transform: scale(1.06) !important;
  }

  .hero__media,
  .hero__text,
  .hero__right,
  .hero__scroll-hint,
  .hero__badge,
  .hero__badge-inner,
  .hero__orb-ring,
  .hero__orb-glow,
  .hero__orb-core {
    animation: none !important;
    transform: none !important;
  }

  .hero__orb:hover .hero__orb-core {
    transform: none;
  }

  [data-reveal],
  [data-reveal-child] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll-hint i {
    animation: none;
  }

  .projects-scroll,
  .projects-scroll__sticky,
  .projects-scroll__track {
    height: auto !important;
    position: relative !important;
    transform: none !important;
  }
}

/* Why / Vision side-by-side media */
.why-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--col-gap);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.why-hero--reverse {
  grid-template-columns: 1.05fr 1fr;
}

.why-hero--reverse .why-hero__copy {
  order: 2;
}

.why-hero--reverse .why-hero__media {
  order: 1;
}

.why-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 36rem;
}

.why-hero__copy .h2 {
  max-width: 14ch;
}

.why-hero__copy .lead,
.why-hero__copy .body {
  max-width: 42ch;
}

.why-hero__media {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow:
    0 28px 70px rgba(14, 61, 44, 0.18),
    0 0 0 1px rgba(14, 61, 44, 0.06),
    0 0 60px rgba(94, 170, 66, 0.08);
}

.why-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 16, 24, 0.28) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(94, 170, 66, 0.12), transparent 55%);
}

.why-hero__media::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 80%, rgba(94, 170, 66, 0.22), transparent 45%);
  filter: blur(24px);
  opacity: 0.7;
}

.why-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo), filter 1.1s var(--ease);
  filter: saturate(1.05) contrast(1.02);
}

.why-hero__media:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.04) brightness(1.02);
}

.why-hero__caption {
  position: absolute;
  inset-inline-start: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 16, 24, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

@media (max-width: 1199.98px) {
  .why-hero,
  .why-hero--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-hero--reverse .why-hero__copy,
  .why-hero--reverse .why-hero__media {
    order: initial;
  }
  .why-hero__media,
  .why-hero__media img {
    min-height: 300px;
  }
}

@media (max-width: 809.98px) {
  .why-hero__media,
  .why-hero__media img {
    min-height: 240px;
  }
  .why-hero__copy .h2 {
    max-width: none;
  }
}

/* Generic scroll anim hooks */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity var(--dur-slow) var(--ease-out-expo),
    transform var(--dur-slow) var(--ease-out-expo),
    filter var(--dur-slow) var(--ease-out-expo);
  will-change: transform, opacity, filter;
}

[data-anim="fade-scale"] {
  transform: translateY(28px) scale(0.96);
  filter: blur(10px);
}

[data-anim].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-anim].is-in:nth-child(2) { transition-delay: 0.08s; }
[data-anim].is-in:nth-child(3) { transition-delay: 0.14s; }
[data-anim].is-in:nth-child(4) { transition-delay: 0.2s; }

section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.hero,
.projects-scroll,
.nav,
[data-reveal],
[data-counters] {
  content-visibility: visible;
}

img {
  content-visibility: auto;
}

/* Page load intro — only before first paint settles */
html.js body:not(.is-ready) .hero__text,
html.js body:not(.is-ready) .hero__right,
html.js body:not(.is-ready) .hero__scroll-hint {
  opacity: 0;
  transform: translateY(28px);
}

html.js body.is-ready .hero__text {
  transition: opacity 1s var(--ease) 0.08s, transform 1.05s var(--ease) 0.08s;
}

html.js body.is-ready .hero__right {
  transition: opacity 1s var(--ease) 0.28s, transform 1.05s var(--ease) 0.28s;
}

html.js body.is-ready .hero__scroll-hint {
  transition: opacity 0.9s var(--ease) 0.5s, transform 0.9s var(--ease) 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Cap cards lift */
.cap-card,
.pillar,
.blog,
a.blog,
.tcard {
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

/* ── Shared section shell ── */
.section {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: var(--gap-section);
  max-width: 40rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 20px;
  background: rgba(246, 247, 245, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.section__head .lead {
  margin: 0;
}

.section__head--compact {
  margin-bottom: 1.75rem;
}

.section--tight .container {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

@media (max-width: 809.98px) {
  .section__head { margin-bottom: 1.75rem; max-width: none; }
  .section--tight .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Capabilities */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.cap-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(14, 61, 44, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  box-shadow:
    0 12px 32px rgba(14, 61, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    transform 0.45s var(--ease-out-expo),
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    background 0.35s ease;
}

.cap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 170, 66, 0.4);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 20px 44px rgba(14, 61, 44, 0.1),
    0 0 28px rgba(94, 170, 66, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cap-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
  color: var(--primary);
}

.cap-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--fg-secondary);
  flex: 1;
}

@media (max-width: 1199.98px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.service__best {
  margin: 0;
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.45;
}

.service__best strong {
  color: var(--primary);
}

/* ── Services accordion + hover preview pics ── */
.services {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: var(--col-gap);
  align-items: start;
}

.services__list {
  order: 0;
}

.services__preview {
  position: sticky;
  top: 120px;
  align-self: start;
  order: 1;
}

.services__preview-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-subtle);
  box-shadow: 0 24px 60px rgba(14, 61, 44, 0.14);
}

.services__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.45s var(--ease),
    transform 0.7s var(--ease);
  pointer-events: none;
}

.services__preview-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.services__preview-caption {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-secondary);
}

.services__list {
  display: flex;
  flex-direction: column;
  max-width: none;
  width: 100%;
}

.service {
  border-top: 1px solid var(--border);
  transition: background 0.3s ease;
}

.service:last-child {
  border-bottom: 1px solid var(--border);
}

.service:hover,
.service.is-open {
  background: rgba(94, 170, 66, 0.04);
}

.service__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 8px;
  text-align: left;
}

.service__label {
  font-family: var(--font-display);
  font-size: var(--text-service);
  font-weight: 800;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.service.is-open .service__label,
.service__toggle:hover .service__label {
  color: var(--primary);
  transform: translateX(6px);
}

.service__icon {
  flex: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.service__icon::before,
.service__icon::after {
  content: "";
  position: absolute;
  background: var(--fg);
  transition: transform var(--dur) var(--ease);
}

.service__icon::before {
  width: 24px;
  height: 2px;
  top: 19px;
  left: 8px;
}

.service__icon::after {
  width: 2px;
  height: 24px;
  top: 8px;
  left: 19px;
}

.service.is-open .service__icon::after {
  transform: rotate(90deg);
}

.service__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}

.service.is-open .service__panel {
  grid-template-rows: 1fr;
}

.service__panel-inner {
  overflow: hidden;
  display: grid;
  gap: 20px;
}

.service__meta {
  padding: 0 8px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 48ch;
}

.service__cat {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
}

.service__points {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service__points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.45;
}

.service__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.service__more {
  display: inline-flex;
  margin-top: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest, #0e3d2c);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.service__more:hover {
  color: var(--accent, #5eaa42);
  border-bottom-color: currentColor;
}

/* ── Service hub + detail pages ── */
.service-page__container {
  max-width: 1080px;
}

.service-hub-page,
.service-detail-page {
  padding: 120px 0 96px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(243, 245, 241, 0.92) 0%, rgba(243, 245, 241, 0.86) 100%);
  min-height: 100vh;
}

.service-hub-page .lead,
.service-detail-page .lead {
  max-width: 42rem;
}

.service-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.service-hub__grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 61, 44, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-quart, ease), border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 170, 66, 0.35);
  background: rgba(255, 255, 255, 0.78);
}

.service-card__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d5dbd2;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out-quart, ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.25rem 1.35rem 1.45rem;
  display: grid;
  gap: 0.45rem;
}

.service-card__cat {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 61, 44, 0.62);
}

.service-card__body h3 {
  margin: 0;
  font-family: var(--font-display, var(--font-body));
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--forest, #0e3d2c);
}

.service-card__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(14, 61, 44, 0.78);
}

.service-card__link {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest, #0e3d2c);
}

.service-page__back {
  margin-top: 3rem;
}

.service-detail__crumb {
  margin: 0 0 1rem;
}

.service-detail__crumb a {
  color: rgba(14, 61, 44, 0.7);
  text-decoration: none;
  font-weight: 600;
}

.service-detail__crumb a:hover {
  color: var(--accent, #5eaa42);
}

.service-detail__hero {
  margin: 2rem 0 0;
  overflow: hidden;
  background: #d5dbd2;
  aspect-ratio: 16 / 9;
}

.service-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail__best {
  margin: 1.75rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(94, 170, 66, 0.1);
  border-inline-start: 3px solid var(--accent, #5eaa42);
  color: rgba(14, 61, 44, 0.88);
  line-height: 1.55;
}

.service-detail__block {
  margin-top: 2.75rem;
}

.service-detail__block .h3 {
  margin: 0 0 1rem;
}

.service-detail__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.service-detail__list li {
  position: relative;
  padding: 0.95rem 1.1rem 0.95rem 2.35rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 61, 44, 0.08);
  line-height: 1.5;
}

.service-detail__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 1rem;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #5eaa42);
}

[dir="rtl"] .service-detail__list li {
  padding: 0.95rem 2.35rem 0.95rem 1.1rem;
}

.service-detail__chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-detail__chips li {
  padding: 0.55rem 0.9rem;
  background: rgba(14, 61, 44, 0.06);
  border: 1px solid rgba(14, 61, 44, 0.1);
  font-size: 0.92rem;
  color: var(--forest, #0e3d2c);
}

.service-detail__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.75rem;
}

.service-detail__others {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 61, 44, 0.1);
}

@media (max-width: 809.98px) {
  .service-hub__grid {
    grid-template-columns: 1fr;
  }

  .service-hub-page,
  .service-detail-page {
    padding: 96px 0 72px;
  }
}

.service__mobile-pic {
  display: none;
  margin: 0 0 24px;
  border-radius: 24px;
  overflow: hidden;
}

.service__mobile-pic img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .service__label { font-size: clamp(2rem, 4vw, 2.625rem); }
  .services {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .services__preview {
    position: relative;
    top: auto;
    order: -1;
  }
  .services__list {
    order: 0;
  }
}

@media (max-width: 809.98px) {
  .service__label { font-size: clamp(1.5rem, 6.5vw, 1.75rem); }
  .services__list { max-width: 100%; }
  .services__preview { display: none; }
  .service__mobile-pic { display: block; }
}

/* ── About ── */
.about__grid {
  display: flex;
  gap: 30px;
  margin: 60px 0;
}

.about__visual {
  flex: 1;
  min-height: 420px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #1a5a40 0%, #0e3d2c 60%),
    var(--primary);
  position: relative;
  overflow: hidden;
}

.about__visual--photo {
  background: none;
  padding: 0;
}

.about__visual--photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about__visual::after {
  content: "Q";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(120px, 20vw, 220px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  pointer-events: none;
}

.about__visual--photo::after {
  display: none;
}

.about__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat__num {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.stat__label {
  margin: 8px 0 0;
  font-size: var(--text-base);
  color: var(--fg-secondary);
}

.marquee {
  margin-top: 60px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__item {
  flex: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

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

@media (max-width: 1199.98px) {
  .about__grid { flex-direction: column; }
  .about__visual { min-height: 280px; }
  .stat__num { font-size: 60px; }
}

@media (max-width: 809.98px) {
  .about__visual { height: 200px; min-height: 200px; }
  .about__visual--photo img { min-height: 200px; }
  .stats { flex-direction: column; gap: 30px; padding: 40px 0; }
  .stat__num { font-size: 48px; }
}

/* Pillars / beliefs / split */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border-top: 3px solid var(--accent);
  background: var(--bg-subtle);
  border-radius: 0 0 20px 20px;
  transition: transform 0.3s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
}

.pillar p {
  margin: 0;
  color: var(--fg-secondary);
  font-size: var(--text-base);
  line-height: 1.55;
  flex: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.split__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 36rem;
}

.split__copy,
.why-hero__copy,
.beliefs-split .beliefs {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 24px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(10, 18, 16, 0.06);
}

.split__sub {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
}

.beliefs {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.beliefs-split {
  margin-top: 16px;
  margin-bottom: 0;
  align-items: start;
}

.beliefs-split .beliefs {
  gap: 12px;
  max-width: 36rem;
}

.beliefs-split .h2 {
  max-width: 16ch;
}

.belief-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.belief-list li {
  position: relative;
  padding-inline-start: 1.35rem;
  color: var(--fg-secondary);
  font-size: var(--text-base);
  line-height: 1.55;
}

.belief-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 1199.98px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split__media,
  .split__media img { min-height: 280px; }
}

@media (max-width: 809.98px) {
  .split__media,
  .split__media img { min-height: 220px; }
  .beliefs-split .h2 { max-width: none; }
  .split {
    gap: 24px;
    margin-bottom: 48px;
  }
  .pillar {
    padding: 22px 18px;
  }
}

/* ── Projects — horizontal scroll gallery ── */
.projects-scroll {
  position: relative;
  height: 340vh;
  background: transparent;
}

.projects-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: var(--pad-y) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(94, 170, 66, 0.1), transparent 60%),
    rgba(246, 247, 245, 0.28);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
}

.projects-scroll__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-top: 0;
  padding-bottom: 0;
}

.projects-scroll__head .section__head,
.projects-scroll__head .h2 {
  margin: 0;
}

.projects-scroll__head .lead {
  margin-top: 12px;
}

.projects-scroll__meta {
  flex: none;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.projects-scroll__hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.projects-scroll__progress {
  width: 160px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.projects-scroll__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: inherit;
  transition: width 0.08s linear;
}

.projects-scroll__count {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
  direction: ltr;
  unicode-bidi: isolate;
}

.projects-scroll__viewport {
  width: 100%;
  overflow: hidden;
  padding-left: max(calc((100vw - var(--max)) / 2 + 96px), 24px);
}

.projects-scroll__track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
  padding-right: 96px;
}

.pscroll-card {
  flex: none;
  width: min(720px, 78vw);
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(14, 61, 44, 0.1);
  content-visibility: auto;
  contain-intrinsic-size: 420px 560px;
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 22px 56px rgba(10, 18, 16, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  transition:
    transform 0.65s var(--ease-out-expo),
    box-shadow 0.55s ease,
    opacity 0.45s ease;
  will-change: transform, opacity;
}

.pscroll-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 72px rgba(14, 61, 44, 0.16),
    0 0 40px rgba(94, 170, 66, 0.1);
}

.pscroll-card__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0e3d2c;
}

.pscroll-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.pscroll-card:hover .pscroll-card__media img {
  transform: scale(1.06);
}

.pscroll-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px 32px;
}

.pscroll-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
  color: var(--fg);
}

.pscroll-card__stats {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pscroll-card__stats li {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg-subtle);
  font-size: 13px;
  line-height: 1.4;
  color: var(--fg-secondary);
}

.pscroll-card__stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

@media (max-width: 1199.98px) {
  .projects-scroll { height: auto; }
  .projects-scroll__sticky {
    position: relative;
    height: auto;
    padding-top: 88px;
    padding-bottom: 60px;
  }
  .projects-scroll__head {
    padding-left: 32px;
    padding-right: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-scroll__meta { align-items: flex-start; }
  .projects-scroll__viewport {
    padding-left: 32px;
    padding-right: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .projects-scroll__track {
    transform: none !important;
    padding-right: 32px;
    gap: 16px;
  }
  .pscroll-card {
    width: min(560px, 82vw);
    scroll-snap-align: start;
    content-visibility: visible;
  }
}

@media (max-width: 809.98px) {
  .projects-scroll { height: auto; }
  .projects-scroll__sticky {
    position: relative;
    height: auto;
    padding: 60px 0;
  }
  .projects-scroll__head { padding-left: 20px; padding-right: 20px; }
  .projects-scroll__meta {
    width: 100%;
    min-width: 0;
    align-items: stretch;
  }
  .projects-scroll__progress { width: 100%; max-width: 220px; }
  .projects-scroll__viewport {
    padding-left: 20px;
    padding-right: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .projects-scroll__track {
    transform: none !important;
    padding-right: 20px;
    gap: 16px;
  }
  .pscroll-card {
    width: min(88vw, 420px);
    scroll-snap-align: start;
    content-visibility: visible;
  }
  .pscroll-card__stats { grid-template-columns: 1fr; }
  .pscroll-card__body { padding: 18px 18px 20px; }
  .pscroll-card__title { font-size: clamp(20px, 5.5vw, 26px); }
}

[dir="rtl"] .projects-scroll__meta {
  align-items: flex-start;
}

[dir="rtl"] .projects-scroll__progress span {
  margin-inline-start: auto;
}

/*
 * Critical RTL fix: a max-content track inside an RTL overflow parent
 * right-aligns and clips the first card(s) at scroll progress 0.
 * Force LTR on viewport+track for scroll physics; keep card copy RTL.
 */
[dir="rtl"] .projects-scroll__viewport {
  direction: ltr;
}

[dir="rtl"] .projects-scroll__track {
  direction: ltr;
}

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

@media (max-width: 809.98px) {
  [dir="rtl"] .projects-scroll__viewport {
    padding-left: 0;
    padding-right: 20px;
  }
  [dir="rtl"] .projects-scroll__track {
    padding-right: 20px;
    padding-left: 0;
  }
  [dir="rtl"] .pscroll-card {
    scroll-snap-align: start;
  }
}

/* ── Approach — sticky left + timeline ── */
.approach__row {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.approach__left {
  flex: 1 1 42%;
  width: 42%;
  max-width: 28rem;
  position: sticky;
  top: 150px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-right: var(--col-gap);
}

.approach__left .section__head,
.approach__left .h2,
.approach__left .lead {
  max-width: 100%;
}

.approach__left .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.approach__gallery {
  width: 100%;
  margin-top: 12px;
}

.approach__gallery-sticky {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-subtle);
  isolation: isolate;
}

.pgal__frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06) translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease), visibility 0.55s;
  will-change: transform, opacity;
}

.pgal__frame.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  z-index: 1;
}

.pgal__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0) scale(1.04);
  transition: transform 0.8s var(--ease);
}

.pgal__frame.is-active img {
  transform: translate3d(0, var(--pgal-y, 0px), 0) scale(1.08);
}

.pgal__frame figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 61, 44, 0.82);
  color: #f6f7f5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.approach__strip {
  display: none;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.approach__strip img {
  flex: none;
  width: 72%;
  max-width: 280px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: start;
}

.approach__right {
  flex: 1 1 58%;
  width: 58%;
  max-width: none;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.approach__line {
  position: absolute;
  left: 19px;
  top: 3.5rem;
  bottom: 2.5rem;
  width: 2px;
  background: var(--border);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 48px;
  position: relative;
  opacity: 0.45;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease), transform 0.5s var(--ease);
}

.step.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.step__num {
  flex: none;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid var(--fg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--bg);
  z-index: 1;
  position: relative;
  transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.step.is-inview .step__num {
  border-color: var(--accent);
  background: var(--primary);
  color: #f6f7f5;
}

.step__dot {
  position: absolute;
  left: 14px;
  top: 48px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.4s var(--ease);
}

.step.is-inview .step__dot {
  transform: scale(1);
}

.step__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
}

.step .body,
.step p {
  max-width: 42ch;
}

@media (max-width: 1199.98px) {
  .step__title { font-size: clamp(1.35rem, 2.5vw, 1.625rem); }
  .approach__left {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .approach__right {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 809.98px) {
  .approach__row { flex-direction: column; gap: 1.75rem; }
  .approach__left,
  .approach__right {
    width: 100%;
    max-width: 100%;
    position: relative;
    top: auto;
    padding: 0;
  }
  .approach__gallery-sticky { display: none; }
  .approach__strip {
    display: flex;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }
  .approach__line { left: 9px; top: 30px; }
  .step { flex-direction: row; gap: 16px; opacity: 1; transform: none; }
  .step__title { font-size: 1.35rem; }
  .step .body,
  .step p { max-width: none; }

  .js .section--clip[data-reveal]:not(.is-visible),
  .js .section--clip[data-reveal].is-visible {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Testimonials ticker ── */
.testimonials__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.testimonials__row {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.testimonials__row--rev {
  animation-direction: reverse;
  animation-duration: 48s;
}

.tcard {
  flex: none;
  width: 360px;
  padding: 28px;
  background: var(--bg-subtle);
  border-radius: 20px;
  transition: transform 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease;
}

.tcard:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 16px 36px rgba(10, 18, 16, 0.08);
}

.tcard__quote {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--fg-secondary);
}

.tcard__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

.tcard__role {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--fg-muted);
}

@media (max-width: 809.98px) {
  .testimonials__wrap { overflow: visible; }
  .testimonials__row,
  .testimonials__row--rev {
    flex-direction: column;
    width: 100%;
    animation: none;
  }
  .tcard { width: 100%; }
}

/* ── FAQ accordion ── */
.faq__row {
  display: flex;
  gap: var(--col-gap);
  align-items: flex-start;
}

.faq__left {
  max-width: 42%;
  flex: 1;
  position: sticky;
  top: 150px;
  align-self: flex-start;
}

.faq__left .h2,
.faq__left .lead {
  max-width: 22ch;
}

.faq__right {
  max-width: 58%;
  flex: 1;
  padding-top: 0.5rem;
}

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

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.faq-item.is-open .faq-item__q {
  color: var(--primary);
}

.faq-item__icon {
  flex: none;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--fg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 16px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}

.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a > div {
  overflow: hidden;
  padding-bottom: 0;
}

.faq-item.is-open .faq-item__a > div {
  padding-bottom: 24px;
}

@media (max-width: 809.98px) {
  .faq__row { flex-direction: column; gap: 30px; }
  .faq__left,
  .faq__right {
    max-width: 100%;
    position: relative;
    top: auto;
    padding: 0;
  }
  .faq-item__q { font-size: 16px; padding: 20px 0; }
}

/* ── Blogs ── */
.blogs__grid {
  display: flex;
  gap: 10px;
  overflow: hidden;
}

a.blog {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: transform var(--dur) var(--ease);
}

a.blog:hover {
  transform: translateY(-8px);
}

.blog__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: linear-gradient(135deg, #dfe8dc, #b7c9ad);
  overflow: hidden;
  isolation: isolate;
}

.blog__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 61, 44, 0.28));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.blog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease), filter 0.45s ease;
  filter: saturate(0.92);
}

a.blog:hover .blog__thumb::after {
  opacity: 1;
}

a.blog:hover .blog__thumb img {
  transform: scale(1.1);
  filter: saturate(1.05);
}

.blog__label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
}

.blog__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.25;
}

.blog__link {
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

a.blog:hover .blog__link {
  color: var(--accent);
  border-bottom-color: var(--accent);
  transform: translateX(4px);
}

[dir="rtl"] a.blog:hover .blog__link {
  transform: translateX(-4px);
}

.faq-item__q:hover {
  color: var(--primary);
}

.footer__col a:hover {
  color: var(--accent);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (min-width: 1200px) {
  .wa-float {
    right: 28px;
  }
}

@media (max-width: 809.98px) {
  .blogs__grid { flex-direction: column; }
}

/* ── Contact — premium ── */
.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(94, 170, 66, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(14, 61, 44, 0.82), transparent 50%),
    linear-gradient(160deg, rgba(7, 16, 24, 0.88) 0%, rgba(14, 61, 44, 0.84) 48%, rgba(7, 16, 24, 0.9) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact__glow {
  position: absolute;
  inset: auto -20% -30% auto;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 170, 66, 0.2), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}

.contact__inner {
  position: relative;
  z-index: 1;
}

.contact__intro {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.contact .h2 {
  color: #fff;
  margin: 0;
  max-width: 16ch;
}

.contact__lead {
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 42ch;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--col-gap);
  align-items: stretch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.contact__chip:hover {
  background: rgba(94, 170, 66, 0.16);
  border-color: rgba(94, 170, 66, 0.45);
  transform: translateX(4px);
}

.contact__chip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact__chip-value {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.contact__place {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__place-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact__address {
  margin: 0;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
}

.contact__address-en {
  margin: 10px 0 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 14px !important;
}

.contact__next {
  padding-top: 8px;
}

.contact__next h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.contact__next ol {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.contact__form {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.contact__form-title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: #fff;
}

.contact__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact .field--full {
  grid-column: 1 / -1;
}

.contact .field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact .field input,
.contact .field textarea,
.contact .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(7, 16, 24, 0.45);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact .field input::placeholder,
.contact .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact .field input:focus,
.contact .field textarea:focus,
.contact .field select:focus {
  border-color: var(--accent);
  background: rgba(7, 16, 24, 0.65);
  box-shadow: 0 0 0 3px rgba(94, 170, 66, 0.22);
}

.contact .field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact .field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact__submit {
  align-self: flex-start;
  min-width: 180px;
}

.contact__form-note {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.contact__map-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contact__map-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.contact__map-sub {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.contact__map-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact__map-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.contact__map {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a1210;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) saturate(0.9);
}

.contact__map-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  max-width: min(360px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(7, 16, 24, 0.88);
  border: 1px solid rgba(94, 170, 66, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.contact__map-card strong {
  font-size: 15px;
  color: var(--accent);
}

.contact__map-card span {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1199.98px) {
  .contact__grid { grid-template-columns: 1fr; gap: 28px; }
  .contact__form { padding: 28px 24px; }
}

@media (max-width: 809.98px) {
  .contact__form-grid { grid-template-columns: 1fr; }
  .contact__intro {
    margin-bottom: 32px;
  }
  .contact__form {
    padding: 22px 18px;
    border-radius: 24px;
  }
  .contact__map {
    aspect-ratio: 4 / 3;
    min-height: 240px;
    border-radius: 20px;
  }
  .contact__map-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .contact__chips {
    gap: 10px;
  }
  .field input,
  .field textarea,
  .field select,
  .contact__form button,
  .service__toggle,
  .faq-item__q,
  .blog__link,
  .nav__cta,
  .hero__ctas .btn {
    min-height: 44px;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px; /* avoid iOS zoom */
  }
  .wa-float {
    left: max(16px, env(safe-area-inset-left, 0px));
    right: auto;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    padding: 12px 14px;
    min-height: 48px;
    max-width: calc(100vw - 32px);
  }
  [dir="ltr"] .wa-float {
    left: auto;
    right: max(16px, env(safe-area-inset-right, 0px));
  }
}

/* Extra-small phones: keep floating WhatsApp behind CTAs */
@media (max-width: 360px) {
  .wa-float {
    z-index: 0;
  }
}

.project__cat {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.project__tags {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ── Footer ── */
.footer {
  background:
    linear-gradient(180deg, rgba(236, 238, 234, 0.45) 0%, rgba(246, 247, 245, 0.55) 40%),
    rgba(246, 247, 245, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(217, 221, 216, 0.6);
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--pad-d);
}

.footer__top {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer__brand {
  flex: 1.4;
}

.footer__logo-link {
  display: inline-block;
  margin: 0 0 16px;
  line-height: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.footer__logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer__logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 70vw);
  object-fit: contain;
}

.footer__logo {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
  text-transform: none;
  line-height: 0.9;
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

.footer__col h4 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__col a,
.footer__col p {
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--fg-secondary);
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-muted);
}

@media (max-width: 1199.98px) {
  .footer__inner { padding: var(--pad-t); max-width: 600px; }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

@media (max-width: 809.98px) {
  .footer__inner { padding: var(--pad-p); max-width: 300px; }
  .footer__logo { font-size: 36px; }
  .footer__logo-img { height: 44px; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── CMS / a11y additions ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (min-width: 1200px) {
  .nav__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 36px;
    padding: 6px 12px;
    border: 1px solid rgba(94, 170, 66, 0.45);
    border-radius: 999px;
    background: rgba(94, 170, 66, 0.16);
    color: #e8f5e1;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .nav__lang:hover,
  .nav__lang:focus-visible {
    border-color: var(--accent);
    background: rgba(94, 170, 66, 0.28);
    outline: none;
  }
}

.detail-modal {
  width: min(720px, calc(100vw - 32px));
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-surface);
  color: var(--fg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.detail-modal--article {
  width: min(860px, calc(100vw - 24px));
}

.detail-modal::backdrop {
  background: rgba(4, 12, 10, 0.72);
  backdrop-filter: blur(4px);
}

.detail-modal__article,
.detail-modal article {
  position: relative;
  padding: 32px 28px 36px;
  overflow: auto;
  max-height: calc(100vh - 32px);
}

@media (max-width: 809.98px) {
  .detail-modal {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
  }
  .detail-modal__article,
  .detail-modal article {
    padding: 28px 18px 28px;
    max-height: calc(100dvh - 24px);
  }
  .detail-modal [data-close-modal] {
    width: 44px;
    height: 44px;
  }
}

.detail-modal [data-close-modal] {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 61, 44, 0.08);
  color: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.detail-modal__media {
  margin: 0 0 20px;
  border-radius: 12px;
  overflow: hidden;
}

.detail-modal__media img {
  display: block;
  width: 100%;
  height: auto;
}

.article__hero {
  margin: -8px 0 28px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.article__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
  max-width: 22ch;
}

.article__date {
  display: block;
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--fg-muted);
}

.article__body.prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--fg-secondary);
}

.article__body.prose p {
  margin: 0 0 1.15em;
  max-width: 62ch;
}

.article__body.prose p:last-child {
  margin-bottom: 0;
}

.article__cta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Section clip reveal */
.section--clip {
  clip-path: inset(0 0 0 0);
}

.js .section--clip[data-reveal]:not(.is-visible) {
  clip-path: inset(8% 4% 8% 4% round 24px);
  opacity: 0.55;
  transform: translateY(28px);
  transition: clip-path 0.9s var(--ease), opacity 0.7s ease, transform 0.8s var(--ease);
}

.js .section--clip[data-reveal].is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .step,
  .pgal__frame,
  .pgal__frame img,
  a.blog,
  .blog__thumb img,
  .js .section--clip[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
    clip-path: none !important;
    visibility: visible !important;
  }
  .approach__gallery-sticky .pgal__frame:not(.is-active) {
    display: none;
  }
}

.contact__status {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 14px;
}

.contact__status--success {
  color: #1f7a3a;
}

.contact__status--error {
  color: #b42318;
}

.privacy-page {
  padding: 120px 0 80px;
}

.privacy-page .container {
  max-width: 720px;
}

.privacy-page [data-cms="privacy.body"] h2 {
  margin-top: 2em;
  font-size: 1.25rem;
}

/* —— Page load intro —— */
.js body:not(.is-ready) .page {
  opacity: 0;
}

.js body.is-ready .page {
  opacity: 1;
  transition: opacity 1.1s var(--ease-out-expo);
}

.js body.is-ready .hero__text > * {
  animation: rise-in var(--dur-enter) var(--ease-out-expo) both;
}

.js body.is-ready .hero__text > *:nth-child(1) { animation-delay: 0.08s; }
.js body.is-ready .hero__text > *:nth-child(2) { animation-delay: 0.2s; }
.js body.is-ready .hero__text > *:nth-child(3) { animation-delay: 0.34s; }
.js body.is-ready .hero__text > *:nth-child(4) { animation-delay: 0.48s; }
.js body.is-ready .hero__text > *:nth-child(5) { animation-delay: 0.58s; }
.js body.is-ready .hero__text > *:nth-child(6) { animation-delay: 0.68s; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* —— Atmospheric section washes —— */
.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 48% at 8% 0%, rgba(94, 170, 66, 0.07), transparent 58%),
    radial-gradient(ellipse 55% 40% at 92% 100%, rgba(14, 61, 44, 0.05), transparent 52%);
  opacity: 0.9;
  z-index: 0;
}

.section--aura::after {
  content: "";
  position: absolute;
  inset: 8% 5% auto;
  height: 55%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.35), transparent 70%);
  filter: blur(8px);
}

.aura-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  padding: 0;
  list-style: none;
}

.aura-pills li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(14, 61, 44, 0.1);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--primary);
  box-shadow:
    0 8px 24px rgba(14, 61, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease);
}

.aura-pills li:hover {
  background: rgba(94, 170, 66, 0.14);
  border-color: rgba(94, 170, 66, 0.4);
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(14, 61, 44, 0.08),
    0 0 20px rgba(94, 170, 66, 0.12);
}

.section > .container,
.section > .projects-scroll__sticky,
.contact > .container {
  position: relative;
  z-index: 1;
}

[data-reveal] [data-reveal-child] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible [data-reveal-child] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible [data-reveal-child]:nth-child(1) { transition-delay: 0.02s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(3) { transition-delay: 0.14s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(4) { transition-delay: 0.2s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(5) { transition-delay: 0.26s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(6) { transition-delay: 0.32s; }

.btn[data-magnetic] {
  transition: transform 0.25s var(--ease);
}

.services__preview-frame {
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.services:hover .services__preview-frame {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(14, 61, 44, 0.14);
}

.pscroll-card {
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.pscroll-card:hover {
  box-shadow: 0 24px 60px rgba(14, 61, 44, 0.12);
}

/* —— RTL polish —— */
html[dir="rtl"] {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

html[dir="rtl"] body {
  font-family: var(--font-ar);
  line-height: var(--lh-ar-body);
  letter-spacing: 0;
}

[dir="rtl"] .hero__title {
  max-width: 16ch;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  letter-spacing: 0;
  line-height: var(--lh-ar-heading);
  font-family: var(--font-ar);
  font-weight: 800;
  overflow: visible;
}

[dir="rtl"] .nav__links a span,
[dir="rtl"] .h2,
[dir="rtl"] .h3,
[dir="rtl"] .pscroll-card__title,
[dir="rtl"] .blog__title,
[dir="rtl"] .service__label,
[dir="rtl"] .faq-item__q,
[dir="rtl"] .step__title,
[dir="rtl"] .split__sub,
[dir="rtl"] .cap-card h3,
[dir="rtl"] .pillar h3,
[dir="rtl"] .contact__form-title,
[dir="rtl"] .nav__word {
  letter-spacing: 0;
  font-family: var(--font-ar);
  line-height: var(--lh-ar-heading);
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .lead,
[dir="rtl"] .body,
[dir="rtl"] .hero__body,
[dir="rtl"] .hero__pre,
[dir="rtl"] .cap-card p,
[dir="rtl"] .belief-list li,
[dir="rtl"] .tcard__quote {
  letter-spacing: 0;
  line-height: var(--lh-ar-body);
}

[dir="rtl"] .hero__left {
  padding: 0 90px 72px 0;
}

@media (max-width: 1199.98px) {
  [dir="rtl"] .hero__left {
    padding: 0 40px 64px 24px;
  }
}

@media (max-width: 809.98px) {
  [dir="rtl"] .hero__left {
    padding: 96px 20px 20px;
  }

  [dir="rtl"] .hero__title {
    max-width: none;
    font-size: clamp(1.625rem, 7.5vw, 2.125rem);
  }
}

[dir="rtl"] .hero__text {
  text-align: right;
}

[dir="rtl"] .hero__ctas,
[dir="rtl"] .hero__pills {
  justify-content: flex-start;
}

[dir="rtl"] .section__head,
[dir="rtl"] .why-hero__copy,
[dir="rtl"] .split__copy,
[dir="rtl"] .approach__left,
[dir="rtl"] .contact__intro {
  align-items: flex-start;
}

[dir="rtl"] .approach__left {
  padding-right: 0;
  padding-left: var(--col-gap);
}

[dir="rtl"] .approach__line {
  left: auto;
  right: 19px;
}

[dir="rtl"] .step__dot {
  left: auto;
  right: 14px;
}

[dir="rtl"] .approach__row,
[dir="rtl"] .faq__row,
[dir="rtl"] .why-hero,
[dir="rtl"] .beliefs-split,
[dir="rtl"] .split,
[dir="rtl"] .contact__grid {
  direction: rtl;
}

[dir="rtl"] .beliefs-split .why-hero__copy,
[dir="rtl"] .beliefs-split .belief-list {
  text-align: right;
}

[dir="rtl"] .service__toggle,
[dir="rtl"] .faq-item__q {
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .service__icon,
[dir="rtl"] .faq-item__icon {
  transform: scaleX(-1);
}

[dir="rtl"] .projects-scroll__count {
  direction: ltr;
  unicode-bidi: isolate;
}

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

@media (min-width: 1200px) {
  [dir="rtl"] .wa-float {
    left: 28px;
  }
}

[dir="rtl"] .pscroll-card__body,
[dir="rtl"] .blog,
[dir="rtl"] a.blog,
[dir="rtl"] .tcard,
[dir="rtl"] .contact__form,
[dir="rtl"] .footer__col {
  text-align: right;
}

[dir="rtl"] .pgal__frame figcaption {
  left: auto;
  right: 14px;
}

[dir="rtl"] .field input,
[dir="rtl"] .field textarea,
[dir="rtl"] .field select {
  text-align: right;
}

[dir="rtl"] .testimonials__row {
  animation-name: marquee-rtl;
}

@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

[dir="rtl"] .detail-modal [data-close-modal] {
  right: auto;
  left: 12px;
}

[dir="rtl"] .nav {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

[dir="rtl"] .nav__links a,
[dir="rtl"] .nav__links a span {
  font-family: var(--font-ar);
  letter-spacing: 0;
  line-height: var(--lh-ar-heading);
}

[dir="rtl"] .nav__word {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

[dir="rtl"] .contact__next ol {
  padding-left: 0;
  padding-right: 18px;
}

.no-motion .hero__text > *,
.no-motion [data-reveal] [data-reveal-child] {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
