:root {
  --ink: #122126;
  --muted: #5d6f73;
  --line: #dce7e6;
  --surface: #f7fbfa;
  --white: #ffffff;
  --teal: #078a8d;
  --teal-dark: #04686b;
  --lime: #b6d957;
  --coral: #ef7f67;
  --shadow: 0 22px 70px rgba(18, 33, 38, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.subpage .site-header,
.legal-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(18, 33, 38, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--lime));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 26px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

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

.language-switcher {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  max-height: 44px;
  overflow: hidden;
  transition: max-height 180ms ease, background 180ms ease;
}

.language-switcher:not(.is-open) button:not(.is-active) {
  display: none;
}

.language-switcher.is-open {
  position: relative;
  z-index: 25;
  max-height: 176px;
  overflow-y: auto;
}

.site-header.is-scrolled .language-switcher,
.site-header.is-open .language-switcher {
  border-color: var(--line);
  background: var(--surface);
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

.language-switcher button:focus-visible {
  outline: 2px solid rgba(182, 217, 87, 0.85);
  outline-offset: 2px;
}

.language-switcher::-webkit-scrollbar {
  width: 4px;
}

.language-switcher::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 72px) 76px;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 37, 43, 0.82) 0%, rgba(4, 37, 43, 0.56) 42%, rgba(4, 37, 43, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 37, 43, 0.15), rgba(4, 37, 43, 0.55));
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--white);
}

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

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.7vw, 5.8rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: var(--white);
}

.button.outline:hover {
  color: var(--white);
  background: var(--teal);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--surface);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
}

.home-partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.home-partner-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.home-partner-section .button {
  margin-top: 12px;
}

.section,
.photo-section,
.process-section,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p,
.process-copy p,
.split-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 33, 38, 0.06);
}

.service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 26px 24px;
  padding-top: 24px;
}

.service-icon {
  display: inline-flex;
  color: var(--teal);
  font-weight: 900;
}

.service-svg {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 9px;
  border: 1px solid rgba(7, 138, 141, 0.28);
  border-radius: 999px;
  color: var(--teal);
  background: #f0f7f4;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-card p,
.step p {
  color: var(--muted);
}

.service-card h3,
.service-card p {
  margin-right: 26px;
  margin-left: 26px;
}

.service-card p {
  margin-bottom: 26px;
}

.partner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(72px, 10vw, 118px) clamp(20px, 6vw, 72px);
  background: var(--surface);
}

.partner-hero-copy {
  max-width: 700px;
}

.partner-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
  line-height: 1.04;
}

.partner-hero-copy p,
.partner-band p,
.partner-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.partner-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: var(--white);
  box-shadow: var(--shadow);
}

.partner-hero-image img,
.partner-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.partner-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 33, 38, 0.06);
}

.partner-card span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--teal);
  font-weight: 900;
}

.partner-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 900;
}

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

.partner-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(72px, 10vw, 118px) clamp(20px, 6vw, 72px);
  background: #f0f7f4;
}

.partner-band img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 46px rgba(18, 33, 38, 0.14);
}

.partner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(52px, 8vw, 88px) clamp(20px, 6vw, 72px);
  color: var(--white);
  background: #122126;
}

.partner-cta > div {
  max-width: 760px;
}

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

.partner-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.training-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 72px) 70px;
}

.training-hero img,
.training-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.training-hero img {
  object-fit: cover;
}

.training-hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 33, 38, 0.84) 0%, rgba(18, 33, 38, 0.56) 48%, rgba(18, 33, 38, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 33, 38, 0.16), rgba(18, 33, 38, 0.58));
}

.training-hero-content {
  position: relative;
  max-width: 780px;
  color: var(--white);
}

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

.training-hero-content h1 {
  font-size: clamp(2.55rem, 5.2vw, 4.9rem);
  line-height: 1;
}

.training-hero-content p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.training-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.training-strip div {
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--white);
}

.training-strip strong,
.training-strip span {
  display: block;
}

.training-strip span {
  color: var(--muted);
}

.training-section {
  background: var(--surface);
}

.training-grid .partner-card {
  background: var(--white);
}

.training-photo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  padding: clamp(72px, 10vw, 118px) clamp(20px, 6vw, 72px);
  background: var(--white);
}

.training-photo-band p {
  color: var(--muted);
  font-size: 1.08rem;
}

.training-photo-band figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.training-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.training-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
}

.training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(182, 217, 87, 0.2);
}

.training-gallery-section {
  background: #f0f7f4;
}

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

.training-gallery article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 33, 38, 0.08);
}

.training-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.training-gallery div {
  padding: 24px;
}

.training-gallery p {
  color: var(--muted);
}

.photo-section {
  background: #f0f7f4;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 46px rgba(18, 33, 38, 0.14);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 33, 38, 0.02) 35%, rgba(18, 33, 38, 0.78) 100%);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  color: var(--white);
}

.photo-card strong,
.photo-card span,
.photo-card em {
  display: block;
}

.photo-card em {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.photo-card strong {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.photo-card span {
  color: rgba(255, 255, 255, 0.82);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  background: var(--surface);
}

.process-copy {
  max-width: 620px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 124px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #dff3ef;
  font-weight: 900;
}

.step img {
  width: 124px;
  height: 86px;
  border-radius: 8px;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.locations {
  max-width: 700px;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.location-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 460px);
  gap: clamp(28px, 5vw, 58px);
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

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

.contact-list strong {
  color: var(--ink);
}

.contact-list a,
.contact-list span {
  color: var(--muted);
}

.contact-list small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-branch {
  align-items: start;
}

.contact-branch a {
  display: inline-block;
  margin-bottom: 2px;
}

.contact-photo {
  max-width: 520px;
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 7;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(18, 33, 38, 0.11);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cddcda;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(7, 138, 141, 0.16);
}

.form-status {
  display: none;
  margin: 0;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status.is-error {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #122126;
}

.site-footer > span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-page {
  background: var(--surface);
}

.subpage main {
  padding-top: 82px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 136px clamp(20px, 6vw, 72px) 72px;
}

.legal-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
}

.legal-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
}

.legal-updated {
  margin-top: 28px;
  font-size: 0.95rem;
}

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

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(4, 37, 43, 0.82) 0%, rgba(4, 37, 43, 0.56) 42%, rgba(4, 37, 43, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 37, 43, 0.15), rgba(4, 37, 43, 0.55));
}

[dir="rtl"] .hero-content,
[dir="rtl"] .process-copy,
[dir="rtl"] .section-heading,
[dir="rtl"] .locations,
[dir="rtl"] .contact-copy,
[dir="rtl"] .partner-hero-copy,
[dir="rtl"] .partner-card,
[dir="rtl"] .partner-band,
[dir="rtl"] .partner-cta {
  text-align: right;
}

[dir="rtl"] .photo-card figcaption {
  text-align: right;
}

[dir="rtl"] .hero-actions,
[dir="rtl"] .location-list {
  justify-content: flex-start;
}

[dir="rtl"] .contact-list li {
  grid-template-columns: 130px 1fr;
}

[dir="rtl"] .contact-list a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

[dir="rtl"] .content-ltr {
  direction: ltr;
}

[dir="rtl"] .content-ltr .partner-hero-copy,
[dir="rtl"] .content-ltr .section-heading,
[dir="rtl"] .content-ltr .partner-band,
[dir="rtl"] .content-ltr .partner-cta {
  text-align: left;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .partner-hero-copy {
    max-width: none;
  }

  .partner-hero-copy h1 {
    max-width: 760px;
  }

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

  .partner-hero,
  .partner-band,
  .training-photo-band {
    grid-template-columns: 1fr;
  }

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

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

  .photo-card,
  .photo-card img {
    min-height: 340px;
  }

  .process-section,
  .split-section,
  .contact-section,
  .home-partner-section {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .step img {
    grid-column: 2;
    width: 100%;
    max-width: 280px;
    height: 120px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  [dir="rtl"] .site-nav {
    text-align: right;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 20px 56px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 37, 43, 0.86), rgba(4, 37, 43, 0.55)),
      linear-gradient(180deg, rgba(4, 37, 43, 0.08), rgba(4, 37, 43, 0.66));
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .trust-strip,
  .training-strip,
  .service-grid,
  .partner-grid,
  .training-gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .partner-cta {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .language-switcher button {
    min-width: 34px;
  }

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

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