:root {
  --navy: #282c82;
  --navy-2: #1d225f;
  --gold: #f0aa3d;
  --gold-2: #d98b1b;
  --location-blue: #0a4b91;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --surface: #ffffff;
  --surface-soft: #f7f8fc;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Tahoma, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}
body[dir="rtl"] {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 10;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08);
}
.top-strip {
  background: var(--location-blue);
  color: #fff;
  font-size: 14px;
}
.top-strip__inner {
  min-height: 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.top-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.98;
}
.pin {
  color: var(--gold);
  font-size: 11px;
  border: 2px solid var(--gold);
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  line-height: 1;
}
.pin::first-letter { color: transparent; }

.navbar { position: relative; }
.navbar__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}
.brand__logo {
  width: 92px;
  height: auto;
}
.brand__text {
  display: grid;
  line-height: 1.1;
}
.brand__text strong {
  color: var(--navy);
  font-size: 18px;
}
.brand__text small {
  color: var(--gold-2);
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: var(--navy-2);
}
.site-menu a {
  position: relative;
  padding: 8px 0;
}
.site-menu a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.site-menu a:hover::after { transform: scaleX(1); }
.lang-toggle {
  border: 1px solid rgba(40,44,130,.18);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 800;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.section { padding: 96px 0; }
.section-pattern {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(240, 170, 61, 0.16), transparent 24rem),
    radial-gradient(circle at 80% 8%, rgba(40, 44, 130, 0.13), transparent 27rem),
    linear-gradient(135deg, #ffffff 0%, #f6f7ff 58%, #fff8ed 100%);
}
.section-pattern::before {
  content: "";
  position: absolute;
  inset: auto -80px -200px auto;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(40,44,130,.08), rgba(240,170,61,.15));
  border-radius: 80px;
  transform: rotate(45deg);
}
.hero { min-height: 760px; display: grid; align-items: center; }
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  color: var(--navy-2);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 20px 0 24px;
}
h2 {
  color: var(--navy-2);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 14px 0 18px;
}
h3 { color: var(--navy-2); line-height: 1.2; }
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: #374151;
  max-width: 680px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(17,24,39,.12); }
.btn--primary { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.btn--ghost { border-color: rgba(40,44,130,.2); color: var(--navy); background: rgba(255,255,255,.68); }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 14px;
}
.hero__facts div {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(40,44,130,.1);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(40,44,130,.08);
}
.hero__facts strong { display: block; color: var(--navy); font-size: 28px; line-height: 1; }
.hero__facts span { color: var(--muted); font-size: 14px; font-weight: 700; }
.hero__visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}
.emblem-card {
  width: min(100%, 440px);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(40,44,130,.12);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.emblem-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 180px;
  height: 180px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .2;
}
.emblem-card img { width: 300px; margin: 0 auto 26px; }
.emblem-card__caption {
  background: linear-gradient(135deg, rgba(40,44,130,.08), rgba(240,170,61,.12));
  border-radius: 22px;
  padding: 22px;
}
.emblem-card__caption span { color: var(--gold-2); font-weight: 900; }
.emblem-card__caption strong { display: block; color: var(--navy-2); font-size: 21px; line-height: 1.2; margin-top: 6px; }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(40,44,130,.12);
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(17,24,39,.12);
  color: var(--navy-2);
}
.floating-card span { font-size: 22px; }
.floating-card--one { top: 52px; inset-inline-start: 0; }
.floating-card--two { bottom: 90px; inset-inline-start: 22px; }
.floating-card--three { top: 140px; inset-inline-end: 0; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading p { color: var(--muted); font-size: 18px; }
.section-heading--left { text-align: start; margin: 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.business-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 288px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.business-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,170,61,.55);
  box-shadow: var(--shadow);
}
.business-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(40,44,130,.1), rgba(240,170,61,.15));
  font-size: 26px;
  margin-bottom: 20px;
}
.business-card h3 { font-size: 22px; margin-bottom: 10px; }
.business-card p { color: #4b5563; margin-bottom: 18px; }
.business-card span, .text-link {
  margin-top: auto;
  color: var(--gold-2);
  font-weight: 900;
}
.text-link:hover { color: var(--navy); }

.section-accent {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-accent::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border: 70px solid rgba(240,170,61,.18);
  border-radius: 70px;
  transform: rotate(45deg);
  inset: auto -180px -220px auto;
}
.value__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.value h2, .value h3 { color: #fff; }
.value p { color: rgba(255,255,255,.78); }
.value-list { display: grid; gap: 16px; }
.value-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(10px);
}
.value-item span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--gold);
  color: var(--navy-2);
  display: grid;
  place-items: center;
  font-weight: 950;
}
.value-item h3 { margin-bottom: 6px; }
.value-item p { margin: 0; }

.markets { background: var(--surface-soft); }
.market-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.market {
  min-height: 160px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 12px;
  box-shadow: 0 12px 30px rgba(17,24,39,.05);
}
.market span { font-size: 34px; }
.market b { color: var(--navy); line-height: 1.2; }
.market small { color: var(--muted); font-weight: 800; }

.group__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}
.company-panels { display: grid; gap: 18px; }
.company-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px 28px 28px 112px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17,24,39,.06);
  overflow: hidden;
}
body[dir="rtl"] .company-panel { padding: 28px 112px 28px 28px; }
.company-panel__badge {
  position: absolute;
  inset-inline-start: 24px;
  top: 28px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), #ffd083);
  color: var(--navy-2);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 13px;
}
.company-panel h3 { font-size: 23px; margin-bottom: 8px; }
.company-panel p { margin-bottom: 0; color: var(--muted); }

.contact {
  background: linear-gradient(180deg, #fff, #f7f8fc);
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}
.contact-card, .contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.contact-card { padding: 36px; }
.contact-card p { color: var(--muted); font-size: 18px; }
.contact-info { display: grid; gap: 12px; margin-top: 26px; }
.contact-info a {
  display: grid;
  gap: 3px;
  border-radius: 18px;
  background: var(--surface-soft);
  padding: 16px 18px;
  border: 1px solid transparent;
}
.contact-info a:hover { border-color: rgba(240,170,61,.55); }
.contact-info strong { color: var(--navy); }
.contact-info span { color: #4b5563; }
.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label { display: grid; gap: 7px; color: var(--navy-2); font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(40,44,130,.08);
}
.form-note { margin: 0; color: var(--muted); font-size: 13px; }

.footer {
  background: var(--navy-2);
  color: #fff;
  padding: 28px 0;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer p { margin: 0; color: rgba(255,255,255,.75); }
.footer a { color: #fff; font-weight: 900; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .14s; }

@media (max-width: 980px) {
  .top-strip__inner { flex-direction: column; gap: 6px; padding: 8px 0; align-items: flex-start; }
  .navbar__inner { min-height: 74px; }
  .brand__logo { width: 72px; }
  .brand__text small { display: none; }
  .nav-toggle { display: flex; }
  .site-menu {
    position: absolute;
    top: calc(100% + 0px);
    inset-inline: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .site-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-menu a, .lang-toggle { padding: 12px 14px; text-align: start; }
  .hero { min-height: auto; padding: 76px 0; }
  .hero__grid, .value__grid, .group__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 460px; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, var(--container)); }
  .section { padding: 68px 0; }
  .brand { min-width: 0; }
  .brand__text strong { font-size: 15px; }
  .top-strip { font-size: 12px; }
  h1 { font-size: 42px; }
  .hero__facts, .cards-grid, .market-strip { grid-template-columns: 1fr; }
  .hero__visual { min-height: 390px; }
  .emblem-card { padding: 24px; border-radius: 26px; }
  .emblem-card img { width: 230px; }
  .floating-card { display: none; }
  .business-card { min-height: auto; }
  .company-panel, body[dir="rtl"] .company-panel { padding: 96px 22px 22px; }
  .company-panel__badge { top: 22px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
