:root {
  --ink: #082a24;
  --ink-soft: #244a43;
  --ink-muted: #57736d;
  --green-950: #052d28;
  --green-900: #063f37;
  --green-800: #075b4f;
  --green-700: #007765;
  --green-600: #008b76;
  --green-100: #dff4ee;
  --green-50: #eef9f5;
  --lime: #caf269;
  --lime-soft: #e9fbbd;
  --sand: #f4ede2;
  --paper: #f8fbf9;
  --white: #ffffff;
  --line: #d8e5e1;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 14px 40px rgba(10, 47, 40, 0.08);
  --shadow-md: 0 30px 80px rgba(4, 42, 35, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: 1180px;
  --header-height: 78px;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 720;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3 {
  letter-spacing: 0;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #f0b429;
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 251, 249, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(8, 42, 36, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  color: var(--green-950);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

[dir="rtl"] .brand-name {
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(18px, 2.5vw, 34px);
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 630;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.language-switch:hover {
  background: var(--white);
}

.language-dot {
  width: 8px;
  height: 8px;
  background: var(--green-600);
  border-radius: 50%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.button-dark {
  color: var(--white);
  background: var(--green-950);
}

.button-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 16px 34px rgba(0, 119, 101, 0.2);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 18px 40px rgba(0, 119, 101, 0.28);
}

.button-arrow {
  font-size: 22px;
  line-height: 1;
}

[dir="rtl"] .button-arrow,
[dir="rtl"] .text-link > span:last-child,
[dir="rtl"] .button-lime > span:last-child {
  transform: rotate(180deg);
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.play-dot {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  background: var(--green-100);
  border-radius: 50%;
}

.play-dot::after {
  content: "";
  margin-inline-start: 2px;
  border-block: 5px solid transparent;
  border-inline-start: 7px solid var(--green-800);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}

.menu-lines::before { transform: translateY(-6px); }
.menu-lines::after { transform: translateY(6px); }

.menu-toggle[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-lines::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines::after { transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: calc(var(--header-height) + 88px) 0 92px;
  background:
    radial-gradient(circle at 78% 19%, rgba(202, 242, 105, 0.42), transparent 18%),
    linear-gradient(145deg, #f7fbf9 0%, #eef8f4 52%, #e8f3ed 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: radial-gradient(rgba(6, 63, 55, 0.3) 0.7px, transparent 0.7px);
  background-size: 21px 21px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(0, 119, 101, 0.13);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  inset-block-start: 82px;
  inset-inline-end: -90px;
}

.hero-orbit-two {
  width: 700px;
  height: 700px;
  inset-block-start: -10px;
  inset-inline-end: -180px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.hero-copy {
  padding-block: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.eyebrow-signal {
  width: 8px;
  height: 8px;
  background: var(--green-600);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 139, 118, 0.11);
}

.eyebrow-dark {
  color: var(--green-700);
}

.eyebrow-light {
  color: var(--lime);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--green-950);
  font-size: clamp(52px, 6.4vw, 88px);
}

[dir="rtl"] .hero h1 {
  font-size: clamp(48px, 5.8vw, 78px);
}

.hero-accent {
  position: relative;
  display: inline-block;
  color: var(--green-700);
}

.hero-accent::after {
  content: "";
  position: absolute;
  inset: auto 3% -4px;
  height: 8px;
  background: var(--lime);
  border-radius: 99px;
  transform: rotate(-1.5deg);
  z-index: -1;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: var(--ink-muted);
  font-size: 13px;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.proof-check {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.stage-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 119, 101, 0.23), rgba(0, 119, 101, 0) 67%);
  border-radius: 50%;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  padding: 14px 18px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 91, 79, 0.14);
  border-radius: 36px;
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
  padding-inline: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.phone-status {
  letter-spacing: 1px;
}

.meeting-toolbar {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.meeting-toolbar h2 {
  margin: 0;
  font-size: 21px;
}

.meeting-label,
.summary-kicker,
.action-owner {
  margin: 0 0 2px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[dir="rtl"] .meeting-label,
[dir="rtl"] .summary-kicker,
[dir="rtl"] .action-owner {
  letter-spacing: 0;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: var(--green-50);
  border: 0;
  border-radius: 50%;
  font-size: 21px;
}

.audio-strip {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 16px;
}

.audio-play {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0 0 0 2px;
  color: var(--green-950);
  background: var(--lime);
  border: 0;
  border-radius: 50%;
  font-size: 10px;
}

.waveform {
  display: flex;
  align-items: center;
  height: 26px;
  gap: 3px;
}

.waveform i {
  width: 2px;
  height: var(--h);
  min-height: 4px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 2px;
}

.audio-time {
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.language-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 5px;
  padding: 7px 9px;
  color: var(--ink-muted);
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
}

.language-pill-active {
  color: var(--green-800);
  background: var(--green-100);
  border-color: rgba(0, 119, 101, 0.2);
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}

.summary-card {
  margin-bottom: 10px;
  padding: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.summary-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.summary-heading h3 {
  margin: 0;
  font-size: 15px;
}

.context-badge {
  flex-shrink: 0;
  padding: 5px 7px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.arabic-copy {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.65;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}

.insight-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px 6px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.insight-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}

.insight-card > span:last-child {
  grid-column: 1 / -1;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 700;
}

.insight-icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  font-size: 9px;
}

.insight-action { color: #0a7d5c; background: #daf3e8; }
.insight-decision { color: #8a5d00; background: #fff0c4; }
.insight-question { color: #4d55a8; background: #e8e9ff; }

.action-card {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 11px;
  background: #f0f6ff;
  border: 1px solid #dce7f5;
  border-radius: 14px;
}

.action-card p {
  margin: 0;
  font-size: 9px;
}

.person-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: #596eb8;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.priority-chip {
  padding: 5px 7px;
  color: #8f3616;
  background: #ffe1d5;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 91, 79, 0.14);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note div > span {
  color: var(--ink-muted);
  font-size: 9px;
}

.floating-note-context {
  inset-block-start: 80px;
  inset-inline-start: -4px;
}

.floating-note-speaker {
  inset-block-end: 69px;
  inset-inline-end: -12px;
}

.note-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 10px;
  font-size: 18px;
}

.speaker-rings {
  display: flex;
  align-items: center;
  height: 30px;
  gap: 3px;
}

.speaker-rings i {
  width: 3px;
  background: var(--green-600);
  border-radius: 99px;
}

.speaker-rings i:nth-child(1) { height: 12px; }
.speaker-rings i:nth-child(2) { height: 26px; }
.speaker-rings i:nth-child(3) { height: 17px; }

.signal-strip {
  padding: 19px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.signal-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-list p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 13px;
  font-weight: 660;
}

.signal-list p > span:first-child {
  color: var(--lime);
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2,
.privacy-copy h2,
.integration-copy h2,
.faq-heading h2,
.section-cta h2 {
  margin-bottom: 20px;
  color: var(--green-950);
  font-size: clamp(38px, 4.3vw, 58px);
}

[dir="rtl"] .section-heading h2,
[dir="rtl"] .privacy-copy h2,
[dir="rtl"] .integration-copy h2,
[dir="rtl"] .faq-heading h2,
[dir="rtl"] .section-cta h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.section-heading > p:last-child,
.privacy-copy > p,
.integration-copy > p,
.faq-heading > p,
.section-cta > div > p {
  color: var(--ink-muted);
  font-size: 18px;
}

.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-outcomes {
  background: var(--paper);
}

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

.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 45px rgba(8, 42, 36, 0.04);
}

.feature-card-large {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  grid-column: 1 / -1;
  min-height: 430px;
  gap: 34px;
}

.feature-card h3 {
  margin-bottom: 14px;
  color: var(--green-950);
  font-size: 29px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.feature-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 28px;
  margin-bottom: 24px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.feature-context {
  background:
    radial-gradient(circle at 83% 50%, rgba(202, 242, 105, 0.35), transparent 28%),
    var(--white);
}

.context-map {
  position: relative;
  min-height: 320px;
}

.context-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px 9px 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
}

.node-center {
  inset: 50% auto auto 50%;
  padding: 13px 18px 13px 12px;
  transform: translate(-50%, -50%);
}

[dir="rtl"] .node-center {
  transform: translate(50%, -50%);
}

.node-center .node-avatar {
  color: var(--green-950);
  background: var(--lime);
}

.node-one { inset: 11% auto auto 4%; }
.node-two { inset: 20% 0 auto auto; }
.node-three { inset: auto 8% 10% auto; }

.node-avatar,
.node-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 850;
}

.node-icon {
  color: var(--green-800);
  background: var(--green-100);
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: rgba(0, 119, 101, 0.25);
  transform-origin: left center;
}

.line-one { width: 37%; inset: 39% auto auto 23%; transform: rotate(25deg); }
.line-two { width: 31%; inset: 41% 20% auto auto; transform: rotate(-21deg); }
.line-three { width: 32%; inset: auto 23% 33% auto; transform: rotate(41deg); }

.feature-voice {
  background: linear-gradient(155deg, #f1fbf6, #ffffff);
}

.voice-visual {
  display: flex;
  align-items: center;
  margin: 2px 0 34px;
  gap: 12px;
}

.voice-avatar {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--white);
  background: var(--green-700);
  border: 7px solid var(--green-100);
  border-radius: 50%;
  font-weight: 850;
}

.voice-bars {
  display: flex;
  align-items: center;
  flex: 1;
  height: 52px;
  gap: 5px;
}

.voice-bars i {
  flex: 1;
  height: var(--h);
  max-width: 7px;
  min-height: 8px;
  background: var(--green-600);
  border-radius: 99px;
}

.voice-match {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-800);
  background: var(--lime-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.feature-actions {
  background: linear-gradient(155deg, #fffaf2, #ffffff);
}

.task-stack {
  margin: 2px 0 34px;
}

.task-stack div {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 42, 36, 0.05);
}

.task-stack div + div {
  margin-top: -2px;
  margin-inline-start: 13px;
}

.task-stack div + div + div {
  margin-inline-start: 26px;
}

.task-stack span,
.task-stack b {
  font-size: 11px;
}

.task-stack span {
  color: var(--ink-muted);
}

.task-check {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 7px;
  font-size: 10px;
  font-style: normal;
}

.feature-language {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 27%, rgba(202, 242, 105, 0.14), transparent 30%),
    var(--green-950);
  border-color: transparent;
}

.feature-language h3,
.feature-language p {
  color: var(--white);
}

.feature-language p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-language .feature-number {
  color: var(--green-950);
  background: var(--lime);
}

.cost-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 750;
}

.language-demo {
  max-width: 390px;
  margin-inline: auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.language-demo-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  gap: 10px;
}

.language-code {
  display: grid;
  place-items: center;
  width: 44px;
  height: 31px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.language-code-active {
  color: var(--green-950);
  background: var(--lime);
  border-color: var(--lime);
}

.language-flow {
  color: var(--lime);
  letter-spacing: 5px;
}

.language-copy-card {
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
}

.language-copy-card p {
  margin-bottom: 15px;
  color: var(--ink);
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  font-size: 17px;
}

.language-demo-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--green-800);
  background: var(--green-100);
  border: 0;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
}

.cached-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
}

.section-how {
  background: #eef5f2;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 50px -11px auto auto;
  z-index: 2;
  width: 20px;
  height: 1px;
  background: var(--green-600);
}

[dir="rtl"] .step-card::after {
  inset: 50px auto auto -11px;
}

.step-card:last-child::after {
  display: none;
}

.step-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.step-card h3 {
  margin-bottom: 13px;
  font-size: 25px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.step-visual {
  display: grid;
  place-items: center;
  height: 122px;
  margin-bottom: 28px;
  background: var(--green-50);
  border-radius: 18px;
}

.record-visual {
  position: relative;
}

.record-core {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  background: #f65e59;
  border: 10px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(246, 94, 89, 0.25);
}

.record-visual i {
  position: absolute;
  border: 1px solid rgba(0, 119, 101, 0.15);
  border-radius: 50%;
}

.record-visual i:nth-child(2) { width: 66px; height: 66px; }
.record-visual i:nth-child(3) { width: 92px; height: 92px; }
.record-visual i:nth-child(4) { width: 118px; height: 118px; }

.understand-visual {
  grid-template-columns: auto auto auto;
  align-content: center;
  gap: 10px;
  font-weight: 850;
}

.understand-visual span {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 43px;
  padding: 0 9px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 12px;
}

.understand-visual i {
  color: var(--green-600);
  font-style: normal;
}

.understand-visual b {
  grid-column: 1 / -1;
  color: var(--green-600);
  font-size: 24px;
  line-height: 1;
}

.deliver-visual {
  grid-template-columns: repeat(3, auto);
  gap: 9px;
}

.deliver-item {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(8, 42, 36, 0.07);
  font-size: 18px;
}

.section-integrations {
  color: var(--white);
  background:
    radial-gradient(circle at 79% 40%, rgba(202, 242, 105, 0.1), transparent 26%),
    var(--green-950);
}

.integration-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.integration-copy h2 {
  color: var(--white);
}

.integration-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.integration-copy .integration-disclosure {
  margin-top: 27px;
  padding-inline-start: 14px;
  color: rgba(255, 255, 255, 0.55);
  border-inline-start: 2px solid var(--lime);
  font-size: 12px;
}

.integration-board {
  position: relative;
  min-height: 560px;
}

.integration-hub {
  position: absolute;
  z-index: 5;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 155px;
  height: 155px;
  text-align: center;
  background: var(--lime);
  border: 14px solid rgba(202, 242, 105, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(202, 242, 105, 0.5), 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

[dir="rtl"] .integration-hub {
  transform: translate(50%, -50%);
}

.integration-hub strong {
  color: var(--green-950);
  font-size: 13px;
}

.mini-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: -20px;
  background: var(--green-900);
  border-radius: 14px;
}

.mini-mark i {
  width: 9px;
  height: 17px;
  border: 2px solid var(--white);
  border-radius: 8px;
}

.integration-tile {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 190px;
  gap: 11px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  backdrop-filter: blur(10px);
}

.integration-tile h3,
.integration-tile p {
  margin: 0;
  letter-spacing: 0;
}

.integration-tile h3 {
  color: var(--white);
  font-size: 14px;
}

.integration-tile p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.integration-symbol {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: var(--lime);
  background: rgba(202, 242, 105, 0.12);
  border-radius: 11px;
  font-weight: 850;
}

.tile-inperson { inset: 5% auto auto 5%; }
.tile-zoom { inset: 3% 3% auto auto; }
.tile-teams { inset: 38% 0 auto auto; }
.tile-guided { inset: auto 5% 4% auto; }
.tile-outlook { inset: auto auto 3% 4%; }
.tile-webhook { inset: 40% auto auto 0; }

.hub-line {
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(202, 242, 105, 0), rgba(202, 242, 105, 0.4));
  transform-origin: right center;
}

.hub-one { inset: 29% auto auto 26%; transform: rotate(39deg); }
.hub-two { inset: 28% 26% auto auto; transform: rotate(-39deg) scaleX(-1); }
.hub-three { inset: 49% 19% auto auto; }
.hub-four { inset: auto 27% 27% auto; transform: rotate(40deg) scaleX(-1); }
.hub-five { inset: auto auto 25% 25%; transform: rotate(-40deg); }
.hub-six { inset: 51% auto auto 19%; transform: scaleX(-1); }

.section-privacy {
  background: var(--white);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.52fr 1fr 0.88fr;
  align-items: center;
  gap: 52px;
  padding: 58px;
  background:
    radial-gradient(circle at 12% 50%, rgba(202, 242, 105, 0.3), transparent 24%),
    #eef7f3;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.privacy-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
}

.privacy-shield {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 104px;
  height: 116px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 42px 42px 52px 52px;
  clip-path: polygon(50% 0, 94% 18%, 87% 72%, 50% 100%, 13% 72%, 6% 18%);
  font-size: 38px;
  font-weight: 900;
}

.privacy-ring {
  position: absolute;
  border: 1px solid rgba(0, 119, 101, 0.18);
  border-radius: 50%;
}

.ring-one { width: 180px; height: 180px; }
.ring-two { width: 250px; height: 250px; }

.privacy-copy h2 {
  font-size: clamp(35px, 3.5vw, 50px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-weight: 760;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.privacy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-list li:last-child {
  border-bottom: 0;
}

.privacy-list strong,
.privacy-list span {
  display: block;
}

.privacy-list strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
}

.privacy-list div > span {
  color: var(--ink-muted);
  font-size: 12px;
}

.privacy-check {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.section-faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-heading h2 {
  font-size: clamp(37px, 3.8vw, 52px);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  max-width: 680px;
  margin: -7px 45px 24px 0;
  color: var(--ink-muted);
}

[dir="rtl"] .faq-list details p {
  margin: -7px 0 24px 45px;
}

.summary-plus {
  position: relative;
  width: 30px;
  height: 30px;
  background: var(--green-100);
  border-radius: 50%;
}

.summary-plus::before,
.summary-plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: var(--green-800);
  transform: translate(-50%, -50%);
}

.summary-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

details[open] .summary-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.section-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-800);
}

.section-cta::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  inset: -230px -150px auto auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.03), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.section-cta h2 {
  color: var(--white);
}

.section-cta > .cta-grid > div > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.access-form {
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
}

.access-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 760;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.form-row input {
  width: 100%;
  min-height: 56px;
  padding: 14px 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
}

.form-row input::placeholder {
  color: #788f8a;
}

.button-lime {
  min-height: 56px;
  color: var(--green-950);
  background: var(--lime);
}

.button-lime:hover {
  background: #dbff80;
}

.form-note {
  margin: 11px 5px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.site-footer {
  padding: 62px 0 22px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
}

.brand-footer .brand-name {
  color: var(--white);
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-links strong,
.footer-links a,
.footer-links .footer-note {
  display: block;
}

.footer-links strong {
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links a {
  margin-bottom: 9px;
  font-size: 14px;
}

.footer-links .footer-note {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
    gap: 40px;
  }

  .floating-note-context {
    inset-inline-start: -20px;
  }

  .floating-note-speaker {
    inset-inline-end: -6px;
  }

  .privacy-panel {
    grid-template-columns: 0.4fr 1fr;
  }

  .privacy-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .privacy-list li {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-wrap {
    gap: 14px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(8, 42, 36, 0.1);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    padding: 14px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-actions {
    order: 2;
  }

  .menu-toggle {
    order: 3;
    margin-inline-start: 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 60px);
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .product-stage {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .signal-list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-card-large {
    grid-template-columns: 1fr;
  }

  .feature-card-large .feature-copy {
    max-width: 680px;
  }

  .split-heading,
  .integration-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step-card {
    display: grid;
    grid-template-columns: 42px 170px 1fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    min-height: auto;
    gap: 10px 24px;
  }

  .step-card::after {
    display: none;
  }

  .step-index {
    grid-row: 1 / -1;
    align-self: start;
  }

  .step-visual {
    grid-row: 1 / -1;
    height: 150px;
    margin-bottom: 0;
  }

  .step-card h3 {
    align-self: end;
    margin-bottom: 0;
  }

  .step-card p {
    align-self: start;
  }

  .integration-copy {
    max-width: 720px;
  }

  .integration-board {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .faq-grid {
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .cta-grid {
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand-name {
    font-size: 16px;
  }

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

  .language-switch {
    min-width: 43px;
    justify-content: center;
    padding: 7px 10px;
  }

  .language-dot {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(45px, 15vw, 64px);
  }

  [dir="rtl"] .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof {
    display: grid;
  }

  .product-stage {
    min-height: 535px;
  }

  .phone-card {
    width: min(100%, 365px);
    padding: 12px 14px 17px;
    border-radius: 29px;
    transform: none;
  }

  .floating-note-context {
    inset-block-start: -14px;
    inset-inline-start: 8px;
  }

  .floating-note-speaker {
    inset-block-end: -16px;
    inset-inline-end: 8px;
  }

  .signal-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  .section {
    padding: 78px 0;
  }

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

  .section-heading h2,
  .privacy-copy h2,
  .integration-copy h2,
  .faq-heading h2,
  .section-cta h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  [dir="rtl"] .section-heading h2,
  [dir="rtl"] .privacy-copy h2,
  [dir="rtl"] .integration-copy h2,
  [dir="rtl"] .faq-heading h2,
  [dir="rtl"] .section-cta h2 {
    font-size: clamp(32px, 9.5vw, 43px);
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large {
    grid-column: auto;
    min-height: 0;
    padding: 25px;
  }

  .feature-card-large {
    gap: 28px;
  }

  .feature-card h3 {
    font-size: 25px;
  }

  .context-map {
    min-height: 280px;
  }

  .node-one { inset-inline-start: 0; }
  .node-two { inset-inline-end: 0; }
  .node-three { inset-inline-end: 2%; }

  .step-card {
    display: block;
    padding: 24px;
  }

  .step-index {
    position: absolute;
    inset: 35px auto auto 36px;
    z-index: 2;
  }

  [dir="rtl"] .step-index {
    inset: 35px 36px auto auto;
  }

  .step-visual {
    height: 138px;
    margin-bottom: 24px;
  }

  .integration-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
    gap: 10px;
  }

  .integration-hub {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 128px;
    height: 128px;
    margin: 0 auto 18px;
    transform: none;
  }

  [dir="rtl"] .integration-hub {
    transform: none;
  }

  .integration-tile {
    position: relative;
    inset: auto;
    width: auto;
  }

  .hub-line {
    display: none;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .privacy-emblem {
    min-height: 190px;
  }

  .privacy-shield {
    width: 88px;
    height: 98px;
  }

  .ring-one { width: 145px; height: 145px; }
  .ring-two { width: 190px; height: 190px; }

  .privacy-list {
    display: block;
    grid-column: auto;
  }

  .privacy-list li {
    border-bottom: 1px solid var(--line);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .access-form {
    padding: 20px;
  }

  .button-lime {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-name {
    max-width: 88px;
    line-height: 1.05;
  }

  .nav-wrap {
    gap: 8px;
  }

  .floating-note {
    padding: 10px 11px;
  }

  .floating-note-context {
    inset-inline-start: -2px;
  }

  .floating-note-speaker {
    inset-inline-end: -2px;
  }

  .floating-note strong {
    font-size: 10px;
  }

  .summary-heading {
    display: block;
  }

  .context-badge {
    display: inline-block;
    margin-top: 7px;
  }

  .integration-board {
    grid-template-columns: 1fr;
  }

  .integration-hub {
    grid-column: 1;
  }

  .footer-links {
    gap: 20px;
  }
}

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

@media print {
  .site-header,
  .hero-actions,
  .floating-note,
  .signal-strip,
  .section-cta,
  .site-footer {
    display: none !important;
  }

  .hero,
  .section,
  .section-integrations {
    padding: 30px 0;
    color: var(--ink);
    background: var(--white);
  }

  .integration-copy h2,
  .integration-copy > p,
  .feature-language h3,
  .feature-language p {
    color: var(--ink);
  }
}

/* Privacy and support pages */
.legal-page,
.support-page {
  background: var(--paper);
}

.legal-page .site-header,
.support-page .site-header {
  background: rgba(248, 251, 249, 0.97);
}

.legal-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.legal-nav a:hover {
  color: var(--green-700);
}

.legal-main {
  padding: calc(var(--header-height) + 75px) 0 100px;
}

.legal-shell {
  max-width: 1030px;
}

.legal-intro {
  max-width: 850px;
  margin-bottom: 70px;
}

.legal-intro h1,
.support-hero h1 {
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(48px, 6vw, 76px);
}

[dir="rtl"] .legal-intro h1,
[dir="rtl"] .support-hero h1 {
  font-size: clamp(44px, 5.5vw, 69px);
}

.legal-intro > p {
  max-width: 760px;
  color: var(--ink-muted);
  font-size: 19px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-meta span {
  padding: 7px 11px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: start;
  gap: 70px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.legal-toc strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.legal-toc a {
  color: var(--ink-muted);
  font-size: 12px;
}

.legal-toc a:hover {
  color: var(--green-700);
}

.legal-article section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.legal-article h2 {
  margin-bottom: 16px;
  color: var(--green-950);
  font-size: 30px;
}

.legal-article p,
.legal-article li {
  color: var(--ink-soft);
}

.legal-article ul {
  display: grid;
  gap: 10px;
  padding-inline-start: 22px;
}

.legal-number {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.legal-callout {
  padding: 25px;
  background: var(--sand);
  border-inline-start: 4px solid #d4983d;
  border-radius: 16px;
}

.legal-callout strong {
  display: block;
  margin-bottom: 5px;
}

.legal-callout p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-footer {
  padding-top: 22px;
}

.legal-footer a:hover {
  color: var(--lime);
}

.support-hero {
  padding: calc(var(--header-height) + 90px) 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(202, 242, 105, 0.14), transparent 26%),
    var(--green-950);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 80px;
}

.support-hero h1 {
  color: var(--white);
}

.support-hero > div > div:first-child > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.support-status-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.support-status-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}

.support-status-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.support-status-card .text-link {
  color: var(--lime);
  font-size: 13px;
}

.support-status-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 15px;
  font-weight: 900;
}

.support-topics {
  background: var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-grid article {
  min-height: 265px;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.support-topic-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 13px;
  font-weight: 850;
}

.support-grid h3 {
  margin-bottom: 11px;
  color: var(--green-950);
  font-size: 22px;
}

.support-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.support-contact {
  padding: 0 0 100px;
  background: var(--paper);
}

.support-contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.support-contact h2 {
  margin-bottom: 0;
  color: var(--green-950);
  font-size: clamp(31px, 3vw, 43px);
}

.support-contact ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-inline-start: 20px;
  color: var(--ink-muted);
  font-size: 13px;
}

.error-page {
  position: relative;
  background:
    radial-gradient(circle at 72% 22%, rgba(202, 242, 105, 0.3), transparent 18%),
    var(--green-50);
}

.error-language-switch {
  position: fixed;
  z-index: 10;
  inset-block-start: 20px;
  inset-inline-end: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 42, 36, 0.12);
}

.error-main {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 30px;
}

.error-card {
  width: min(100%, 650px);
  padding: 50px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.error-card .brand {
  margin-bottom: 35px;
}

.error-code {
  display: block;
  color: var(--green-700);
  font-size: clamp(70px, 14vw, 120px);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.error-card h1 {
  margin-bottom: 15px;
  font-size: clamp(30px, 4vw, 46px);
}

.error-card > p {
  color: var(--ink-muted);
}

.error-card > p:last-child {
  margin: 25px 0 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .legal-layout,
  .support-hero-grid,
  .support-contact-panel {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    gap: 35px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .support-hero-grid {
    gap: 40px;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-contact-panel {
    gap: 25px;
  }

  .support-contact-panel .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .legal-nav {
    display: none;
  }

  .legal-page .language-switch,
  .support-page .language-switch {
    margin-inline-start: auto;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 45px);
  }

  .legal-intro {
    margin-bottom: 45px;
  }

  .legal-intro h1,
  .support-hero h1 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-toc strong {
    grid-column: 1;
  }

  .legal-article h2 {
    font-size: 26px;
  }

  .support-hero {
    padding-top: calc(var(--header-height) + 55px);
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-grid article {
    min-height: 0;
  }

  .support-contact {
    padding-bottom: 70px;
  }

  .support-contact-panel {
    padding: 27px 22px;
    border-radius: 26px;
  }

  .error-card {
    padding: 35px 22px;
  }
}
