:root {
  --ink: #102033;
  --text: #253246;
  --muted: #687284;
  --line: #dfe5ec;
  --soft: #f5f7fa;
  --paper: #ffffff;
  --mint: #dff5ec;
  --teal: #0f766e;
  --gold: #c79a32;
  --gold-soft: #fff4d7;
  --danger: #b42318;
  --shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
  --radius: 8px;
  --container: 1180px;
  --label-font: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-image {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-image img {
  max-height: 72px;
  object-fit: contain;
}

.brand-fallback {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #425066;
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 999px;
}

.language-switch a,
.language-switch span {
  min-width: 32px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.language-switch .active {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 1px 5px rgba(16, 32, 51, 0.08);
}

.nav-language {
  display: none;
}

[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

[dir="rtl"] .language-switch,
[dir="rtl"] .brand-text,
[dir="rtl"] .brand-fallback,
[dir="rtl"] .metric strong,
[dir="rtl"] .card-number,
[dir="rtl"] .scope-list span,
[dir="rtl"] .process-list strong,
[dir="rtl"] input[type="tel"] {
  direction: ltr;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .approach-grid,
[dir="rtl"] .about-grid,
[dir="rtl"] .faq-grid,
[dir="rtl"] .contact-copy,
[dir="rtl"] .contact-form,
[dir="rtl"] .footer-grid {
  text-align: right;
}

[dir="rtl"] .section-heading {
  text-align: center;
}

[dir="rtl"] .service-card ul {
  padding-right: 18px;
  padding-left: 0;
}

[dir="rtl"] .send-method label,
[dir="rtl"] .contact-pill {
  text-align: right;
}

[dir="rtl"] .text-link {
  direction: rtl;
}

[dir="rtl"] .scroll-top {
  right: auto;
  left: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-dark {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.16);
}

.btn-dark:hover {
  background: #172d47;
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.btn-light:hover {
  border-color: #b8c5d4;
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.08);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding-top: 78px;
  background:
    linear-gradient(135deg, rgba(223, 245, 236, 0.9), rgba(255, 244, 215, 0.58) 42%, rgba(255, 255, 255, 0.95) 74%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: var(--label-font);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: clamp(16px, 1.45vw, 21px);
  letter-spacing: 0.045em;
  line-height: 1.32;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.025em;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #445268;
  font-size: clamp(17px, 2vw, 20px);
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(223, 229, 236, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(223, 229, 236, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-topline span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-topline strong {
  color: var(--ink);
  text-align: right;
}

.scope-list {
  display: grid;
  gap: 12px;
}

.scope-list div {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.scope-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.24s ease, background 0.24s ease;
}

.scope-list p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .scope-list div:hover {
    z-index: 2;
    transform: translateY(-4px) scale(1.025);
    border-color: rgba(15, 118, 110, 0.38);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(16, 32, 51, 0.12);
  }

  .scope-list div:hover span {
    transform: scale(1.08);
    background: #ffe8aa;
  }

  .cards.three .service-card:hover {
    z-index: 2;
    transform: translateY(-6px) scale(1.025);
    border-color: rgba(15, 118, 110, 0.36);
    background: linear-gradient(135deg, #ffffff, #f3fbf8);
    box-shadow: 0 20px 42px rgba(16, 32, 51, 0.14);
  }
}

.trust-strip {
  margin-top: 56px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.trust-strip > p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.client-row,
.logo-grid {
  display: grid;
  gap: 12px;
}

.client-row {
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
}

.logo-grid {
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  margin-top: 34px;
}

.client-logo {
  position: relative;
  min-width: 0;
  min-height: 98px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px 16px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.client-logo img {
  width: min(100%, 154px);
  height: 64px;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, 0.42);
  background: linear-gradient(135deg, #ffffff, #eefbf7);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.14);
}

.client-logo:hover img {
  transform: scale(1.08);
  filter: none;
  opacity: 1;
}

.client-logo span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(6px);
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.client-logo:hover span,
.client-logo.missing span {
  color: var(--teal);
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .eyebrow,
.approach-grid > div > .eyebrow,
.about-grid > div > .eyebrow,
.faq-grid > div > .eyebrow,
.contact-copy > .eyebrow {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 12px 20px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  background: rgba(223, 245, 236, 0.7);
  font-size: clamp(15px, 1.15vw, 18px);
  letter-spacing: 0.06em;
  line-height: 1.14;
}

.approach-grid > div > .eyebrow,
.about-grid > div > .eyebrow,
.faq-grid > div > .eyebrow,
.contact-copy > .eyebrow {
  margin-inline: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.services,
.clients,
.faq {
  background: var(--soft);
}

.service-groups {
  display: grid;
  gap: 18px;
}

.group-label {
  display: flex;
  justify-content: center;
}

.group-label span {
  padding: 11px 18px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  color: var(--teal);
  background: var(--mint);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.group-label.international span {
  color: #795312;
  background: var(--gold-soft);
  border-color: rgba(199, 154, 50, 0.24);
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(16, 32, 51, 0.02);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards.three .service-card {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.card-number {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.service-card p,
.compact p,
.section-text,
.values p,
.process-list p,
.leader-content p,
.faq-list p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.service-card p,
.compact p,
.process-list p,
.leader-content p,
.values p {
  margin: 0;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #46556b;
}

.wide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 24px;
  border-color: rgba(199, 154, 50, 0.36);
  background: linear-gradient(135deg, var(--paper), #fffaf0);
}

.approach-grid,
.about-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

.section-text {
  margin: 18px 0 0;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-list strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.compact {
  min-height: 180px;
}

.compact h3 {
  margin-bottom: 12px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.values div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.values h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.leadership {
  background: #ffffff;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.leader-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  padding: 30px 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

}

.leader-photo {
  position: relative;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 22px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #102033, #0f766e);
  box-shadow: 0 0 0 1px var(--line), 0 18px 35px rgba(16, 32, 51, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.leader-photo::before {
  content: attr(data-initials);
  color: rgba(255, 255, 255, 0.78);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.leader-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  transition: transform 0.3s ease;
}

.leader-photo img.missing {
  display: none;
}

.leader-content {
  max-width: 320px;
  padding: 0;
}

.leader-content h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.leader-title {
  color: var(--teal) !important;
  font-weight: 800;
  margin-bottom: 14px !important;
}

.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.11);
}

.leader-card:hover .leader-photo {
  box-shadow: 0 0 0 1px rgba(199, 154, 50, 0.5), 0 18px 38px rgba(16, 32, 51, 0.16);
}

.leader-card:hover .leader-photo img {
  transform: scale(1.04);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: "×";
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}

details p {
  margin: 12px 0 0;
}

.contact {
  background:
    linear-gradient(135deg, rgba(16, 32, 51, 0.96), rgba(15, 118, 110, 0.86)),
    var(--ink);
}

.contact .eyebrow,
.contact h2 {
  color: #ffffff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-pill {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.contact-pill span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-pill strong {
  display: block;
  margin-top: 4px;
}

.office-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.social-block {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.social-block > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.legal-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 245, 236, 0.72), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.legal-hero {
  padding: 78px 0 42px;
}

.legal-hero h1 {
  max-width: 940px;
}

.legal-lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: #445268;
  font-size: clamp(17px, 1.7vw, 20px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 88px;
}

.legal-nav,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.07);
}

.legal-nav {
  position: sticky;
  top: 104px;
  padding: 18px;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

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

.legal-card {
  display: grid;
  gap: 28px;
  padding: 34px;
}

.legal-card section {
  display: grid;
  gap: 12px;
}

.legal-card h2 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.legal-card p,
.legal-card li {
  color: var(--text);
  font-size: 16px;
}

.legal-card p {
  margin: 0;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

[dir="rtl"] .legal-card ul {
  padding-right: 20px;
  padding-left: 0;
}

.legal-note {
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(223, 245, 236, 0.62);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span,
.send-method legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  color: var(--text);
  background: #ffffff;
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.send-method {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.send-method legend {
  padding: 0 6px;
}

.send-method label {
  display: inline-flex;
  grid-template-columns: auto;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.send-method input {
  width: auto;
  min-height: auto;
}

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

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

.mobile-cta {
  display: none;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 58;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 229, 236, 0.96);
  border-radius: 50%;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.scroll-top span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--teal);
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b1625;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.72fr));
  gap: 32px;
}

.footer-brand img {
  width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.footer-brand span {
  color: #ffffff;
  font-weight: 900;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.site-footer .footer-social a {
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px;
    border-radius: 6px;
  }

  .nav a:hover {
    background: var(--soft);
  }

  .nav .nav-language {
    display: flex;
    width: max-content;
    margin: 6px 12px 2px;
  }

  .hero-grid,
  .approach-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-nav {
    position: static;
  }

  .cards.three,
  .cards.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .leader-card {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 16px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .legal-hero {
    padding: 58px 0 30px;
  }

  .legal-layout {
    padding-bottom: 64px;
  }

  .legal-card {
    padding: 22px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-image {
    width: 62px;
    height: 62px;
  }

  .brand-image img {
    max-height: 62px;
  }

  .nav {
    top: 72px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy,
  .hero-actions,
  .hero-lead,
  .hero .eyebrow,
  h1,
  .metrics,
  .hero-panel,
  .trust-strip {
    max-width: calc(100vw - 32px);
  }

  .hero .eyebrow {
    font-size: clamp(17px, 4.8vw, 20px);
    letter-spacing: 0.025em;
    line-height: 1.45;
  }

  .section-heading .eyebrow,
  .approach-grid > div > .eyebrow,
  .about-grid > div > .eyebrow,
  .faq-grid > div > .eyebrow,
  .contact-copy > .eyebrow {
    font-size: clamp(16px, 4.2vw, 18px);
    letter-spacing: 0.045em;
  }

  h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.012em;
  }

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

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 13px;
  }

  .metric strong {
    font-size: 22px;
  }

  .hero-panel {
    padding: 18px;
  }

  .panel-topline {
    display: grid;
  }

  .panel-topline strong {
    text-align: left;
  }

  [dir="rtl"] .panel-topline strong {
    text-align: right;
  }

  .scope-list div {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }

  .client-row,
  .logo-grid,
  .cards.three,
  .cards.four,
  .values,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .client-row,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    margin-top: 16px;
  }

  .trust-strip > p {
    font-size: 18px;
  }

  .client-logo {
    min-height: 82px;
  }

  .group-label span {
    width: 100%;
    border-radius: var(--radius);
    font-size: 19px;
    text-align: center;
  }

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

  .leader-photo {
    width: 156px;
    height: 156px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(16, 32, 51, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #ffffff;
    background: var(--ink);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--teal);
  }

  .mobile-cta a:nth-child(3) {
    grid-column: 1 / -1;
    background: #1f7a8c;
  }

  .scroll-top {
    right: 16px;
    bottom: 126px;
    width: 42px;
    height: 42px;
  }

  .site-footer {
    padding-bottom: 132px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-inline: 16px;
  }

  .btn {
    padding-inline: 14px;
  }

  .metric {
    padding: 16px;
  }

  .card {
    padding: 20px;
  }

  .contact-form {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .hero-actions,
  .hero-lead,
  .hero .eyebrow,
  h1,
  .metrics,
  .trust-strip {
    max-width: 358px;
  }
}

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

.section-cta {
  margin-top: 2rem;
  text-align: center;
}
