:root {
  color-scheme: light;
  --font-latin: "Space Grotesk", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-tech: "Chakra Petch", "Space Grotesk", Inter, system-ui, sans-serif;
  --font-arabic: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  --ink: #101518;
  --muted: #58636a;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --input-bg: #f7f6f1;
  --line: rgba(16, 21, 24, 0.12);
  --emerald: #047857;
  --emerald-strong: #065f46;
  --gold: #d99c2b;
  --red: #c44536;
  --night: #071014;
  --shadow: 0 22px 70px rgba(7, 16, 20, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
  --header-bg: rgba(255, 255, 255, 0.82);
  --header-ink: #101518;
  --header-muted: rgba(16, 21, 24, 0.68);
  --header-line: rgba(16, 21, 24, 0.14);
  --header-control-bg: rgba(4, 120, 87, 0.07);
  --header-control-hover: rgba(4, 120, 87, 0.12);
  --header-active-bg: #101518;
  --header-active-ink: #ffffff;
  --contrast-bg: #f4efe2;
  --contrast-ink: #101518;
  --contrast-muted: rgba(16, 21, 24, 0.7);
  --contrast-line: rgba(16, 21, 24, 0.14);
  --contrast-panel: rgba(255, 255, 255, 0.62);
  --contrast-panel-hover: rgba(255, 255, 255, 0.82);
  --ticker-bg: #f4efe2;
  --ticker-ink: #101518;
  --ticker-muted: rgba(16, 21, 24, 0.7);
  --ticker-fade: #f4efe2;
}

body[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3f7f4;
  --muted: #a7b4af;
  --paper: #091114;
  --panel: #101a1e;
  --input-bg: #0c1519;
  --line: rgba(232, 241, 236, 0.12);
  --emerald: #10b981;
  --emerald-strong: #059669;
  --gold: #f1b744;
  --red: #e06454;
  --night: #050b0d;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --header-bg: rgba(7, 16, 20, 0.72);
  --header-ink: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.82);
  --header-line: rgba(255, 255, 255, 0.26);
  --header-control-bg: rgba(255, 255, 255, 0.08);
  --header-control-hover: rgba(255, 255, 255, 0.16);
  --header-active-bg: #ffffff;
  --header-active-ink: #071014;
  --contrast-bg: #050b0d;
  --contrast-ink: #ffffff;
  --contrast-muted: rgba(255, 255, 255, 0.72);
  --contrast-line: rgba(255, 255, 255, 0.14);
  --contrast-panel: rgba(255, 255, 255, 0.08);
  --contrast-panel-hover: rgba(255, 255, 255, 0.14);
  --ticker-bg: #050b0d;
  --ticker-ink: #ffffff;
  --ticker-muted: rgba(255, 255, 255, 0.76);
  --ticker-fade: #050b0d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-latin);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background 260ms ease, color 260ms ease;
}

h1,
h2,
h3,
p,
a,
span,
button,
input,
textarea {
  overflow-wrap: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 46%, rgba(4, 120, 87, 0.06) 46% 47%, transparent 47% 100%),
    linear-gradient(300deg, transparent 0 52%, rgba(217, 156, 43, 0.05) 52% 53%, transparent 53% 100%);
  background-size: 180px 180px, 240px 240px;
  opacity: 0.78;
}

body[dir="rtl"],
body[dir="rtl"] input,
body[dir="rtl"] textarea,
body[dir="rtl"] button {
  font-family: var(--font-arabic);
  line-height: 1.75;
}

.brand-copy,
.main-nav,
.lang-button,
.eyebrow,
.hero h1,
.button,
.section h2,
.local-panel h2,
.contact-copy h2,
.service-card h3,
.tool-card h3,
.package-card h3,
.timeline-step h3,
.package-label {
  font-family: var(--font-tech);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  width: var(--container);
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--header-line);
  border-radius: var(--radius);
  background: var(--header-bg);
  color: var(--header-ink);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  direction: ltr;
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(217, 156, 43, 0.18));
  color: var(--emerald-strong);
  font-weight: 800;
  box-shadow: inset 0 -10px 22px rgba(4, 120, 87, 0.12);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.logo-frame {
  fill: var(--emerald-strong);
}

.logo-cut {
  fill: #fff;
}

.logo-circuit {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.logo-dot {
  fill: var(--gold);
}

.brand-copy {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  font-family: var(--font-tech);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-copy strong {
  color: var(--gold);
}

.main-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--header-muted);
  font-size: 0.94rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--header-ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-width: max-content;
}

.theme-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--header-line);
  border-radius: var(--radius);
  background: var(--header-control-bg);
  color: var(--header-ink);
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: var(--header-control-hover);
  border-color: var(--header-line);
}

.theme-toggle:active {
  transform: translateY(1px);
}

.theme-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-icon-sun {
  opacity: 0;
  transform: translateY(12px) rotate(-40deg);
}

.theme-icon-moon {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

body[data-theme="dark"] .theme-icon-sun {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

body[data-theme="dark"] .theme-icon-moon {
  opacity: 0;
  transform: translateY(-12px) rotate(40deg);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--header-line);
  border-radius: var(--radius);
  background: var(--header-control-bg);
  direction: ltr;
}

.lang-button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--header-muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-button:hover,
.lang-button:focus-visible,
.lang-button.is-active {
  background: var(--header-active-bg);
  color: var(--header-active-ink);
}

.lang-button:active {
  transform: translateY(1px);
}

.nav-toggle {
  grid-column: 2;
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--header-line);
  border-radius: var(--radius);
  background: var(--header-control-bg);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--header-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: 118px 0 64px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.1) 48%, transparent 61%);
  transform: translateX(-38%);
  animation: heroLightSweep 9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  opacity: 0.55;
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media {
  background:
    image-set(
      url("assets/hero-ai-mobile-local.webp") type("image/webp"),
      url("assets/hero-ai-mobile-local.png") type("image/png")
    )
    center right / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.92) 0%, rgba(7, 16, 20, 0.76) 38%, rgba(7, 16, 20, 0.22) 72%, rgba(7, 16, 20, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 16, 20, 0.14) 0%, rgba(7, 16, 20, 0.2) 58%, rgba(7, 16, 20, 0.88) 100%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  animation: gridFlow 20s linear infinite;
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  max-width: 820px;
  justify-self: center;
  min-width: 0;
}

.hero-content > * {
  animation: heroRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 320ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: min(780px, 100%);
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  transition: width 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  width: 18px;
}

.button-primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 16px 40px rgba(4, 120, 87, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--emerald-strong);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-110%);
  animation: proofScan 5.8s ease-in-out infinite;
}

.hero-proof div {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 14px 16px;
  background: rgba(7, 16, 20, 0.42);
}

.hero-proof strong {
  color: #fff;
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.market-strip {
  position: relative;
  display: flex;
  gap: 40px;
  overflow: hidden;
  border-top: 1px solid var(--contrast-line);
  border-bottom: 1px solid var(--line);
  background: var(--ticker-bg);
  color: var(--ticker-ink);
  white-space: nowrap;
}

.market-strip::before,
.market-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.market-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--ticker-fade), transparent);
}

.market-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--ticker-fade), transparent);
}

.ticker {
  display: flex;
  gap: 28px;
  min-width: max-content;
  padding: 18px 0;
  animation: tickerMove 28s linear infinite;
}

body[dir="rtl"] .ticker {
  animation-name: tickerMoveRtl;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ticker-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.ticker span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 104px 0;
}

.section-heading {
  width: var(--container);
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section h2,
.local-panel h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.section-heading p:not(.eyebrow),
.local-panel p,
.contact-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 68ch;
  text-wrap: pretty;
}

.service-grid,
.tool-grid,
.package-grid,
.case-grid,
.bonus-grid,
.project-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.tool-card,
.package-card,
.case-card,
.bonus-card,
.project-card,
.legal-card,
.timeline-step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 60px rgba(7, 16, 20, 0.05);
}

.service-card {
  position: relative;
  min-height: 254px;
  padding: 24px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.service-card::before,
.package-card::before,
.timeline-step::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(4, 120, 87, 0.08) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(4, 120, 87, 0.28);
  box-shadow: var(--shadow);
}

.service-card:hover::before,
.package-card:hover::before,
.timeline-step:hover::after {
  transform: translateX(120%);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(4, 120, 87, 0.1);
  color: var(--emerald);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3,
.package-card h3,
.timeline-step h3 {
  margin: 22px 0 10px;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.service-card p,
.package-card p,
.timeline-step p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.method-section {
  background:
    linear-gradient(180deg, rgba(4, 120, 87, 0.05), rgba(217, 156, 43, 0.08)),
    var(--paper);
}

body[data-theme="dark"] .method-section {
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(241, 183, 68, 0.04)),
    var(--paper);
}

.timeline {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-step {
  position: relative;
  min-height: 244px;
  padding: 24px;
  overflow: hidden;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 44px;
  right: -24px;
  width: 48px;
  height: 1px;
  background: rgba(4, 120, 87, 0.22);
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--gold);
  font-weight: 800;
}

.tools-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, rgba(4, 120, 87, 0.05) 42%, rgba(217, 156, 43, 0.06) 100%),
    var(--paper);
}

.tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(4, 120, 87, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 120, 87, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  opacity: 0.38;
  animation: gridFlow 24s linear infinite;
}

.tools-panel {
  position: relative;
  z-index: 1;
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: start;
  margin: 0 auto;
}

.tools-copy {
  position: sticky;
  top: 112px;
  min-width: 0;
}

.tools-copy h2 {
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.tools-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 62ch;
}

.tool-grid {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tool-card {
  position: relative;
  min-width: 0;
  min-height: 168px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.tool-card > div {
  min-width: 0;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 10%, rgba(217, 156, 43, 0.18), transparent 28%),
    linear-gradient(120deg, transparent 0 38%, rgba(4, 120, 87, 0.08) 48%, transparent 62% 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.tool-card.primary {
  grid-column: span 2;
  min-height: 150px;
  background:
    linear-gradient(110deg, rgba(4, 120, 87, 0.12), transparent 46%),
    var(--panel);
}

.tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 120, 87, 0.32);
  box-shadow: var(--shadow);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-mark {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
  font-family: var(--font-tech);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 36px rgba(4, 120, 87, 0.22);
}

.tool-card h3,
.tool-card p {
  position: relative;
}

.tool-card h3 {
  margin: 3px 0 8px;
  font-size: 1.22rem;
  line-height: 1.12;
}

.tool-card p:not(.tool-type) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.tool-type {
  margin: 0;
  color: var(--emerald);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-section {
  background: var(--contrast-bg);
  color: var(--contrast-ink);
}

.local-panel {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
  gap: 40px;
  align-items: center;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--contrast-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--contrast-panel), transparent 44%),
    linear-gradient(90deg, rgba(4, 120, 87, 0.22), rgba(217, 156, 43, 0.1));
  overflow: hidden;
}

.local-panel p {
  color: var(--contrast-muted);
}

.focus-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.focus-stack span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--contrast-line);
  border-radius: var(--radius);
  background: var(--contrast-panel);
  color: var(--contrast-ink);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.focus-stack span:hover {
  transform: translateY(-3px);
  background: var(--contrast-panel-hover);
}

.package-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.package-card.featured {
  border-color: rgba(4, 120, 87, 0.38);
  background:
    linear-gradient(180deg, rgba(4, 120, 87, 0.08), transparent 48%),
    var(--panel);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.package-label {
  color: var(--emerald);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-section {
  padding-top: 0;
}

.bonus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bonus-card {
  position: relative;
  min-height: 236px;
  padding: 28px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(4, 120, 87, 0.13), transparent 48%),
    linear-gradient(315deg, rgba(217, 156, 43, 0.12), transparent 52%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.bonus-card.featured {
  border-color: rgba(4, 120, 87, 0.34);
  background:
    linear-gradient(180deg, rgba(4, 120, 87, 0.1), transparent 52%),
    var(--panel);
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 120, 87, 0.3);
  box-shadow: var(--shadow);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-number {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--emerald);
  color: #fff;
  font-family: var(--font-tech);
  font-weight: 900;
}

.bonus-card h3,
.bonus-card p {
  position: relative;
}

.bonus-card h3 {
  margin: 22px 0 10px;
  font-family: var(--font-tech);
  font-size: 1.32rem;
  line-height: 1.1;
}

.bonus-card p {
  margin: 0;
  color: var(--muted);
}

.proof-section {
  background:
    linear-gradient(180deg, transparent, rgba(4, 120, 87, 0.05)),
    var(--paper);
}

.case-card,
.project-card,
.legal-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-card::before,
.project-card::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(4, 120, 87, 0.12), transparent 46%),
    linear-gradient(315deg, rgba(217, 156, 43, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.case-card:hover,
.project-card:hover,
.legal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 120, 87, 0.28);
  box-shadow: var(--shadow);
}

.case-card:hover::before,
.project-card:hover::before,
.legal-card:hover::before {
  opacity: 1;
}

.case-label {
  position: relative;
  margin: 0 0 18px;
  color: var(--emerald);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-family: var(--font-tech);
  font-size: 1.6rem;
  line-height: 1.05;
}

.case-card p:not(.case-label),
.project-card p:not(.case-label),
.legal-card p:not(.eyebrow) {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 390px;
}

.project-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--font-tech);
  font-size: 1.45rem;
  line-height: 1.08;
}

.project-card a {
  position: relative;
  align-self: end;
  margin-top: 8px;
  color: var(--emerald-strong);
  font-weight: 900;
}

.project-preview {
  position: relative;
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 120, 87, 0.16), transparent 55%),
    var(--input-bg);
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(7, 16, 20, 0.12);
}

.project-preview span {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: var(--emerald);
}

.project-preview span:nth-child(1) {
  width: 42%;
  height: 10px;
  top: 36px;
  left: 30px;
}

.project-preview span:nth-child(2) {
  width: 64%;
  height: 8px;
  top: 62px;
  left: 30px;
  opacity: 0.38;
}

.project-preview span:nth-child(3) {
  width: 48px;
  height: 48px;
  right: 28px;
  bottom: 26px;
  background: var(--gold);
}

.project-preview.field span:nth-child(1),
.project-preview.ops span:nth-child(1) {
  background: var(--red);
}

.project-preview.learn span:nth-child(3) {
  background: var(--emerald-strong);
}

.launch-section {
  padding-top: 0;
}

.launch-panel {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(4, 120, 87, 0.1), transparent 45%),
    var(--panel);
  box-shadow: var(--shadow);
}

.launch-panel h2 {
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.launch-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.launch-checks {
  display: grid;
  gap: 10px;
}

.launch-checks span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 120, 87, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.launch-checks span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.12);
}

body[dir="rtl"] .main-nav,
body[dir="rtl"] .eyebrow,
body[dir="rtl"] .hero h1,
body[dir="rtl"] .button,
body[dir="rtl"] .section h2,
body[dir="rtl"] .local-panel h2,
body[dir="rtl"] .contact-copy h2,
body[dir="rtl"] .launch-panel h2,
body[dir="rtl"] .tools-copy h2,
body[dir="rtl"] .legal-card h2,
body[dir="rtl"] .service-card h3,
body[dir="rtl"] .tool-card h3,
body[dir="rtl"] .case-card h3,
body[dir="rtl"] .bonus-card h3,
body[dir="rtl"] .project-card h3,
body[dir="rtl"] .package-card h3,
body[dir="rtl"] .timeline-step h3,
body[dir="rtl"] .package-label,
body[dir="rtl"] .case-label,
body[dir="rtl"] .tool-type {
  font-family: var(--font-arabic);
}

body[dir="rtl"] .hero h1 {
  max-width: min(900px, 100%);
  font-size: clamp(2.55rem, 7vw, 5.9rem);
  line-height: 1.18;
}

body[dir="rtl"] .hero-lead {
  line-height: 1.85;
}

body[dir="rtl"] .section h2,
body[dir="rtl"] .local-panel h2,
body[dir="rtl"] .contact-copy h2,
body[dir="rtl"] .launch-panel h2,
body[dir="rtl"] .tools-copy h2,
body[dir="rtl"] .legal-card h2 {
  line-height: 1.22;
}

body[dir="rtl"] .service-card h3,
body[dir="rtl"] .tool-card h3,
body[dir="rtl"] .case-card h3,
body[dir="rtl"] .bonus-card h3,
body[dir="rtl"] .project-card h3,
body[dir="rtl"] .package-card h3,
body[dir="rtl"] .timeline-step h3 {
  line-height: 1.32;
}

.contact-section {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: 42px;
  align-items: start;
  margin: 0 auto;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a,
.contact-links span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.contact-links a {
  color: var(--emerald-strong);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--input-bg);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(4, 120, 87, 0.54);
  background: var(--panel);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.form-button {
  width: 100%;
  border: 0;
}

.button-whatsapp {
  width: 100%;
  border-color: rgba(4, 120, 87, 0.32);
  background: rgba(4, 120, 87, 0.08);
  color: var(--emerald-strong);
}

body[data-theme="dark"] .button-whatsapp {
  color: #fff;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--emerald-strong);
  font-weight: 700;
}

.form-status a {
  color: var(--emerald-strong);
  text-decoration: underline;
}

.form-status.is-error {
  color: var(--red);
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  width: var(--container);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-section {
  padding-top: 0;
}

.legal-grid {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.legal-card {
  min-height: 250px;
}

.legal-card h2 {
  position: relative;
  margin: 0 0 14px;
  font-family: var(--font-tech);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[dir="rtl"] .main-nav a::after,
body[dir="rtl"] .service-card::after {
  transform-origin: right;
}

body[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(7, 16, 20, 0.92) 0%, rgba(7, 16, 20, 0.76) 38%, rgba(7, 16, 20, 0.22) 72%, rgba(7, 16, 20, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 16, 20, 0.14) 0%, rgba(7, 16, 20, 0.2) 58%, rgba(7, 16, 20, 0.88) 100%);
}

body[dir="rtl"] .hero-grid {
  mask-image: linear-gradient(270deg, #000 0%, transparent 78%);
}

body[dir="rtl"] .hero-media {
  background-position: center left;
}

body[dir="rtl"] .button-icon {
  transform: rotate(180deg);
}

body[dir="rtl"] .timeline-step::before {
  right: auto;
  left: -24px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, -8px, 0);
  }
}

@keyframes gridFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 56px 56px;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 40px));
  }
}

@keyframes tickerMoveRtl {
  from {
    transform: translateX(calc(-100% - 40px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroLightSweep {
  0%,
  24% {
    transform: translateX(-42%);
  }
  58%,
  100% {
    transform: translateX(42%);
  }
}

@keyframes proofScan {
  0%,
  28% {
    transform: translateX(-110%);
  }
  58%,
  100% {
    transform: translateX(110%);
  }
}

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

@media (max-width: 980px) {
  :root {
    --container: min(760px, calc(100vw - 28px));
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: center;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    border: 1px solid var(--header-line);
    border-radius: var(--radius);
    background: var(--header-bg);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
  }

  .nav-open .main-nav {
    display: grid;
    gap: 8px;
  }

  .main-nav a {
    padding: 10px 8px;
  }

  .language-switcher {
    justify-self: end;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-content {
    max-width: var(--container);
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.35rem, 11vw, 4.8rem);
  }

  .service-grid,
  .tool-grid,
  .package-grid,
  .case-grid,
  .bonus-grid,
  .project-grid,
  .timeline,
  .tools-panel,
  .local-panel,
  .launch-panel,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .tools-copy {
    position: static;
  }

  .timeline-step::before {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(520px, calc(100vw - 24px));
  }

  .site-header {
    top: 10px;
    width: calc(100vw - 24px);
    min-height: 60px;
    grid-template-columns: auto auto minmax(0, 1fr);
    padding: 8px;
    gap: 8px;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand {
    position: static;
    grid-column: 1;
    min-width: 36px;
  }

  .nav-toggle {
    position: static;
    grid-column: 2;
    justify-self: start;
    transform: none;
  }

  .lang-button {
    min-width: 26px;
    min-height: 32px;
    font-size: 0.7rem;
  }

  .header-actions {
    position: static;
    grid-column: 3;
    justify-self: end;
    gap: 5px;
    min-width: 0;
  }

  .theme-toggle {
    width: 36px;
    height: 38px;
  }

  .theme-icon {
    width: 18px;
    height: 18px;
  }

  .language-switcher {
    gap: 3px;
    padding: 3px;
  }

  body[dir="rtl"] .brand {
    grid-column: 1;
    justify-self: start;
  }

  body[dir="rtl"] .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  body[dir="rtl"] .nav-toggle {
    grid-column: 2;
    justify-self: start;
  }

  .hero {
    min-height: 86svh;
    padding: 104px 0 38px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 16, 20, 0.86) 0%, rgba(7, 16, 20, 0.74) 48%, rgba(7, 16, 20, 0.92) 100%),
      linear-gradient(90deg, rgba(7, 16, 20, 0.7), rgba(7, 16, 20, 0.18));
  }

  body[dir="rtl"] .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 16, 20, 0.86) 0%, rgba(7, 16, 20, 0.74) 48%, rgba(7, 16, 20, 0.92) 100%),
      linear-gradient(270deg, rgba(7, 16, 20, 0.7), rgba(7, 16, 20, 0.18));
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.4vw, 3rem);
    line-height: 1.04;
  }

  .hero-content {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof,
  .service-grid,
  .tool-grid,
  .package-grid,
  .case-grid,
  .bonus-grid,
  .project-grid,
  .timeline,
  .tools-panel,
  .local-panel,
  .launch-panel,
  .legal-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 68px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    text-align: start;
    margin-bottom: 28px;
  }

  .section h2,
  .local-panel h2,
  .contact-copy h2,
  .launch-panel h2,
  .legal-card h2 {
    line-height: 1.08;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    min-height: 50px;
    padding: 10px 14px;
    line-height: 1.15;
    text-align: center;
  }

  .service-card,
  .tool-card,
  .package-card,
  .case-card,
  .bonus-card,
  .project-card,
  .timeline-step,
  .local-panel,
  .launch-panel,
  .legal-card,
  .contact-form {
    padding: 20px;
  }

  .tool-card,
  .tool-card.primary {
    grid-column: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: auto;
  }

  .tool-mark {
    width: 48px;
    height: 48px;
  }

  .local-panel {
    gap: 24px;
  }

  .focus-stack {
    grid-template-columns: 1fr;
  }

  .launch-checks span,
  .focus-stack span {
    align-items: center;
    min-height: auto;
    padding: 13px 14px;
    line-height: 1.25;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
