:root {
  --color-navy: #17235b;
  --color-navy-2: #24327d;
  --color-green: #159a3c;
  --color-green-dark: #0a6f2c;
  --color-red: #d71920;
  --color-gold: #d6ad4b;
  --color-text: #101828;
  --color-muted: #667085;
  --color-border: #e6e8ec;
  --color-soft: #f6f7f8;
  --color-white: #ffffff;
  --color-black: #000000;
  --shadow-soft: 0 18px 50px rgba(16, 24, 40, 0.10);
  --shadow-card: 0 10px 28px rgba(16, 24, 40, 0.09);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 90px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 88px 0; }
.section-muted { background: var(--color-soft); }
.center { text-align: center; margin-top: 36px; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-black);
  color: #fff;
}
.skip-link:focus { left: 12px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
::selection { background: rgba(21,154,60,.22); }
