:root {
  --navy: #06172f;
  --navy-2: #0c2340;
  --navy-soft: #16345a;
  --blue: #2563eb;
  --blue-soft: #e8f0fe;
  --text: #081426;
  --muted: #5d6676;
  --line: #e3e8f0;
  --bg: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-tint: #eef3f9;
  --card: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.06);
  --shadow-lg: 0 18px 50px rgba(11, 37, 69, 0.1);
  --max: 1680px;
  --header: 80px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  width: 100%;
  max-width: 100%;
  background: var(--bg);
}
body {
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  width: 100%;
  max-width: min(var(--max), 100%);
  margin: 0 auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
button, input, select, textarea { font-family: inherit; }

.container { width: min(var(--max), calc(100% - 80px)); margin: 0 auto; }
.section { padding: 36px 0; }
.section-tint { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 20px; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h1, .h1 { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.12; letter-spacing: -0.03em; font-weight: 800; color: var(--navy); }
h2, .h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.2; letter-spacing: -0.025em; font-weight: 800; color: var(--navy); }
h3 { font-size: 20px; line-height: 1.3; font-weight: 700; color: var(--navy); }
.lead { color: var(--muted); font-size: 16px; max-width: 560px; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-white { background: #fff; color: var(--navy); }
.btn-sm { height: 40px; padding: 0 16px; }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #eef1f5;
  height: var(--header);
  overflow: visible;
}
.site-header .header-inner { position: relative; }
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 30px;
  margin-left: auto;
}
.site-nav > a,
.nav-item > a {
  position: relative;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 15.5px;
  color: #2d3e54;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  padding-bottom: 6px;
  transition: color .25s ease, transform .25s ease;
}
.site-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.site-nav > a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}
.nav-item > a {
  z-index: 51;
}
.nav-item > a:hover {
  color: var(--blue);
}
.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-item > a:hover::after,
.nav-item > a.is-active::after {
  transform: scaleX(1);
}
.site-nav > a.is-active,
.nav-item > a.is-active { color: var(--navy); }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 2px;
}
.nav-sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: 0;
  padding: 6px 2px;
  color: #8a97a8;
  cursor: pointer;
  line-height: 0;
}
.nav-sub-toggle svg {
  display: block;
  transition: transform .28s ease;
}
.nav-item.is-expanded .nav-sub-toggle svg {
  transform: rotate(180deg);
}
.nav-sub {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid #eef1f5;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
  padding: 0;
  z-index: 40;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: max-height .32s ease, opacity .22s ease, transform .28s ease, visibility .28s;
}
.nav-sub a {
  display: block;
  padding: 13px 4px 13px 2px;
  margin: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: #33475b;
  white-space: normal;
  border-bottom: 1px solid #eef1f5;
}
.nav-sub a:last-child { border-bottom: 0; }
.nav-sub a:hover,
.nav-sub a.is-active {
  background: transparent;
  color: var(--blue);
}
.nav-item.is-expanded .nav-sub {
  min-width: 248px;
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .nav-item:hover .nav-sub-toggle svg { transform: rotate(180deg); }
  .nav-item:hover .nav-sub {
    min-width: 248px;
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 14px;
}
.contact-switch { position: relative; }
.contact-current { gap: 8px; white-space: nowrap; }
.contact-current svg { transition: transform .28s ease; }
.contact-current.btn:hover { transform: none; }
.contact-switch.is-open .contact-current {
  border-radius: 8px 8px 0 0;
}
.contact-switch.is-open .contact-current svg {
  transform: rotate(180deg);
}
.contact-menu {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  width: 100%;
  min-width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  padding: 0;
  overflow: hidden;
  z-index: 50;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height .32s ease, opacity .22s ease, visibility .28s;
}
.contact-switch.is-open .contact-menu,
.contact-menu.is-ported {
  max-height: 220px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .contact-switch:hover .contact-current { border-radius: 8px 8px 0 0; }
  .contact-switch:hover .contact-current svg { transform: rotate(180deg); }
  .contact-switch:hover .contact-menu {
    max-height: 220px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.contact-menu.is-ported {
  position: fixed;
  top: auto;
  z-index: 200;
}
.contact-menu a {
  display: block;
  position: relative;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #33475b;
  touch-action: manipulation;
  border: 0;
  background: transparent;
}
.contact-menu a:hover { background: transparent; color: var(--blue); }
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  font-size: 13px;
  color: #4b5b70;
}
.lang-current {
  background: none;
  border: 0;
  padding: 8px 6px;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  touch-action: manipulation;
}
.lang-current svg { transition: transform .28s ease; }
.lang-switch.is-open .lang-current svg {
  transform: rotate(180deg);
}
.lang-menu {
  display: block;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 0;
  width: max-content;
  max-width: min(220px, calc(100vw - 24px));
  max-height: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #fff;
  border: 0;
  border-top: 1px solid #eef1f5;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
  padding: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: max-height .32s ease, opacity .22s ease, transform .28s ease, visibility .28s;
}
.lang-switch.is-open .lang-menu,
.lang-menu.is-ported {
  min-width: min(188px, calc(100vw - 24px));
  max-height: min(70vh, 420px);
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .lang-switch:hover .lang-current svg { transform: rotate(180deg); }
  .lang-switch:hover .lang-menu {
    min-width: min(188px, calc(100vw - 24px));
    max-height: min(70vh, 420px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}
.lang-menu.is-ported {
  position: fixed;
  top: auto;
  z-index: 200;
}
.lang-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #33475b;
  touch-action: manipulation;
  border-bottom: 1px solid #eef1f5;
}
.lang-menu a:last-child { border-bottom: 0; }
.lang-menu a:hover,
.lang-menu a.is-active {
  background: transparent;
  color: var(--blue);
  font-weight: 600;
}
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0 36px;
}
.hero-copy .lead { margin-top: 18px; }
.hero-visual {
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: auto; display: block; }
.hero-cover {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 450px;
  gap: 0;
  align-items: stretch;
  padding: 24px 0 32px;
}
.hero-cover .hero-visual,
.hero-cover .hero-copy { grid-area: 1 / 1; }
.hero-cover .hero-visual {
  position: relative;
  width: 60%;
  margin-left: auto;
  min-height: 450px;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: none;
}
.hero-cover .hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-cover .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-cover .hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 42%;
  padding: 36px 28px 36px 8px;
}

.card-grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.media-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.media-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; }
.media-card .body { padding: 22px 22px 24px; }
.media-card h3 { margin-bottom: 8px; }
.media-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

.icon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.icon-item { text-align: center; }
.icon-item .ico {
  width: 48px; height: 48px; margin: 0 auto 14px;
  color: var(--blue);
  display: grid; place-items: center;
}
.feature-box .icon-item .ico {
  width: 96px;
  height: 96px;
}
.icon-item h3 { font-size: 15px; margin-bottom: 6px; }
.icon-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.about-div-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.about-div-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 342px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.about-div-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about-div-card .copy {
  position: relative;
  z-index: 1;
  width: 52%;
  height: 60%;
  min-width: 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
}
.about-div-card h3 {
  font-size: 15px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.about-div-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
#standard { scroll-margin-top: calc(var(--header) + 16px); }
.about-dir .lead { margin: 16px 0 24px; }
.split.about-dir img {
  aspect-ratio: auto;
  object-fit: unset;
  height: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.split.split-media {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 40px;
}
.split.split-media img,
.split.split-media .rounded-img {
  aspect-ratio: 16 / 4.8;
}
.sports-std {
  background: #f1f2f6;
}
.work-std {
  background: #f5f6fa;
}
.split img, .rounded-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}
.process {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.process.cols-6 { grid-template-columns: repeat(6, 1fr); }
.process.cols-5 { grid-template-columns: repeat(5, 1fr); }
.process-item { text-align: center; position: relative; }
.process-item .ico, .process-item .num {
  width: 52px; height: 52px; margin: 0 auto 12px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}
.process-item h3 { font-size: 15px; margin-bottom: 6px; }
.process-item p { font-size: 13px; color: var(--muted); }
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
.process-flow .process-item { flex: 1; min-width: 0; }
.process-flow .process-item .ico {
  width: auto;
  height: auto;
  margin: 0 auto 16px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.process-flow .process-item .ico svg {
  width: 42px;
  height: 42px;
}
.contact-after.process-flow .process-item .ico svg {
  width: 50px;
  height: 50px;
}
.contact-after .process-arrow { height: 50px; }
.process-flow .process-arrow {
  flex: 0 0 18px;
  color: #c4ccd6;
  display: grid;
  place-items: center;
  height: 42px;
}
html[dir="rtl"] .process-flow .process-arrow { transform: scaleX(-1); }

.cta-banner {
  background: linear-gradient(135deg, #06172f 0%, #16345a 100%);
  color: #fff;
  padding: 28px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner h2 { color: #fff; max-width: 620px; font-size: clamp(24px, 3vw, 34px); }
.cta-banner p { color: rgba(255,255,255,.72); margin-top: 8px; }

.site-footer { background: #fff; padding: 28px 0 16px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr .85fr; gap: 36px; }
.footer-brand .logo { margin-bottom: 4px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 280px; }
.site-footer h4 { font-size: 12px; letter-spacing: .12em; color: #7b8898; margin-bottom: 14px; }
.site-footer a, .footer-contact p { display: block; color: #3d4d63; font-size: 14px; margin-bottom: 8px; }
.footer-social {
  display: grid;
  grid-template-columns: repeat(2, 36px);
  gap: 16px 20px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  color: #3d4d63;
}
.footer-social a:hover { color: var(--navy); }
.footer-social svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}
.footer-bar {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #8a96a6;
  font-size: 12px;
}

.feature-box {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 48px 40px;
}
.spec-card, .icon-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.spec-card img, .spec-thumb {
  width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex: 0 0 64px; background: var(--bg-soft);
}
.spec-card h3, .icon-card h3 { font-size: 16px; margin-bottom: 6px; }
.spec-card p, .icon-card p { font-size: 13px; color: var(--muted); }
.fitness-specs .section-head { margin-bottom: 22px; }
.fitness-specs .spec-card {
  align-items: center;
  min-height: 148px;
  padding: 26px 24px;
  gap: 20px;
}
.fitness-specs .spec-card img {
  width: 128px;
  height: 128px;
  flex: 0 0 128px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.fitness-specs .spec-card .ico {
  width: 128px;
  height: 128px;
  flex: 0 0 128px;
  display: grid;
  place-items: center;
  color: var(--navy);
}
.fitness-specs .spec-card .ico svg {
  width: 56px;
  height: 56px;
}
.fitness-specs .spec-card .btn-link { margin-top: 8px; }
.medical-catalog .spec-card {
  align-items: center;
  min-height: 132px;
  padding: 18px 20px;
  gap: 16px;
}
.medical-catalog .spec-card img {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}
.medical-catalog .spec-card .btn-link { margin-top: 8px; }
.zone-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; }
.zone-stack { display: grid; gap: 50px; }
.fitness-zones .zone-grid {
  height: 480px;
  align-items: stretch;
  overflow: hidden;
}
.fitness-zones .zone-grid > * {
  min-height: 0;
}
.fitness-zones .zone-stack {
  height: 100%;
  min-height: 0;
  grid-template-rows: 1fr 1fr;
}
.zone-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  color: #fff;
}
.zone-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.zone-card.tall img { min-height: 420px; }
.fitness-zones .zone-card,
.fitness-zones .zone-card.tall {
  height: 100%;
  min-height: 0;
}
.fitness-zones .zone-card img,
.fitness-zones .zone-card.tall img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.zone-card .shade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(8,20,38,.78));
}
.zone-card h3 { color: #fff; }
.zone-card p { color: rgba(255,255,255,.82); font-size: 14px; margin-top: 6px; }
.zone-card.is-ui .shade { display: none; }
.card-grid .zone-card img { aspect-ratio: 16 / 10; object-fit: cover; object-position: center; }

.process-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 80%;
  margin: 0 auto;
  padding: 8px 0 20px;
}
.process-rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 28px;
  border-left: 2px dashed #9ec0f5;
  transform: translateX(-50%);
}
.process-rail-item {
  position: relative;
  width: calc(50% - 42px);
}
.process-rail-item.is-left { align-self: flex-start; }
.process-rail-item.is-right { align-self: flex-end; }
.process-rail-item + .process-rail-item { margin-top: -104px; }
.process-rail-item::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  border-top: 2px dashed #9ec0f5;
}
.process-rail-item.is-left::before { right: -42px; }
.process-rail-item.is-right::before { left: -42px; }
.process-rail-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 6px var(--blue);
  z-index: 1;
}
.process-rail-item.is-left::after { right: -42px; transform: translate(50%, -50%); }
.process-rail-item.is-right::after { left: -42px; transform: translate(-50%, -50%); }
.process-rail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-height: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.process-rail-card img {
  width: 100%;
  height: 100%;
  min-height: 216px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--bg-soft);
}
.process-rail-copy {
  min-width: 0;
  padding: 6px 2px;
}
.process-rail-no {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}
.process-rail-copy h3 { font-size: 18px; margin: 0 0 8px; }
.process-rail-copy p { font-size: 14px; color: var(--muted); margin: 0 0 12px; }
.zigzag { display: grid; gap: 24px; }
.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.zigzag-item:nth-child(even) .zigzag-copy { order: 2; }
.step-no { color: var(--blue); font-weight: 800; letter-spacing: .12em; font-size: 13px; margin-bottom: 10px; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: 80%;
  margin: 0 auto;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.compare-card li { list-style: none; margin: 0 0 12px; padding-left: 0; color: var(--muted); display: flex; gap: 10px; }
.compare-card ul { margin: 18px 0 0; padding: 0; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 8px; flex: 0 0 8px;
}

.form-grid { display: grid; grid-template-columns: 1.32fr 0.68fr; gap: 36px; }
.form-card, .tips-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row-single { grid-template-columns: 1fr; }
label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #3d4d63; }
label .req { color: var(--blue); }
label .opt { font-weight: 500; color: #8a93a3; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d7dee8;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
.file-box {
  border: 1.5px dashed #c9d3e0;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  color: var(--muted);
  margin-bottom: 16px;
  background: var(--bg-soft);
}
.tips-card li { color: var(--muted); margin-bottom: 10px; }
.alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #e8f6ee;
  color: #146c36;
  font-size: 14px;
}

.news-meta { font-size: 12px; color: #7b8898; margin-bottom: 8px; letter-spacing: .04em; }
.article { max-width: 820px; margin: 0 auto; }
.article .cover { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; margin: 24px 0 32px; }
.article-body { color: #3d4d63; font-size: 16px; line-height: 1.8; white-space: pre-wrap; }

.tabs { display: flex; gap: 22px; margin-bottom: 18px; flex-wrap: wrap; }
.tabs button {
  background: none; border: 0; padding: 0 0 8px;
  color: #7b8898; font-weight: 600; cursor: pointer;
}
.tabs button.is-active { color: var(--navy); box-shadow: inset 0 -2px 0 var(--blue); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.roadmap {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 90%;
  margin: 0 auto;
}
.roadmap-card {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid #d7e3f4;
  box-shadow: var(--shadow);
}
.roadmap-card .ico {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.roadmap-copy {
  min-width: 0;
  max-width: 58%;
}
.roadmap-card .year { color: var(--blue); font-weight: 800; margin-bottom: 10px; }
.roadmap-card h3 { font-size: 18px; margin-bottom: 8px; }
.roadmap-card p { font-size: 14px; }
.roadmap-link {
  position: relative;
  flex: 0 0 72px;
  align-self: center;
}
.roadmap-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px dashed #9ec0f5;
}
.roadmap-link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.contact-copy { min-width: 0; }
.contact-card h3 { font-size: 14px; color: #7b8898; letter-spacing: .08em; margin-bottom: 8px; }
.contact-card p { font-weight: 700; color: var(--navy); word-break: break-word; }
.contact-card .ico {
  flex: 0 0 108px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  color: var(--blue);
  display: grid;
  place-items: center;
}

.card-ico {
  color: var(--blue);
  margin-bottom: 10px;
}
.contact-cat-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.contact-cat-card .body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-cat-card .ico {
  flex: 0 0 40px;
  color: var(--blue);
  display: grid;
  place-items: start;
  padding-top: 2px;
}
.contact-cat-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-cat-card p { color: var(--muted); font-size: 14px; margin: 0; }
.spec-icon-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: 0 0 44px;
}
.sports-pkg .container {
  width: min(1100px, calc(100% - 80px));
}
.sports-pkg .spec-icon-card {
  align-items: center;
  min-height: 118px;
  padding: 28px 24px;
}
.sports-pkg .spec-icon-card .ico {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  flex: 0 0 44px;
}
.sports-pkg .spec-icon-card .ico svg {
  width: 44px;
  height: 44px;
}
.hero-visual-stack { position: relative; }
.hero-spec-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 16px 16px 14px;
  color: var(--text);
}
.hero-spec-card strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.hero-spec-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}
.hero-spec-row:first-of-type { border-top: 0; }
.hero-spec-row .ico { color: var(--blue); display: grid; }
.hero-spec-card .btn-link { margin-top: 10px; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.plan-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px 22px;
}
.plan-card:last-child { border-right: 0; }
.plan-card .ico {
  color: var(--blue);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.plan-card .ico svg {
  width: 58px;
  height: 58px;
}
.plan-card .btn-link { margin-top: 12px; }
.project-file {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 22px;
}
.project-file-title {
  font-size: 22px;
  margin: 0 0 22px;
}
.project-file-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.project-file-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 22px 8px;
  border-right: 1px solid var(--line);
}
.project-file-item:first-child { padding-left: 0; }
.project-file-item:last-child { border-right: 0; padding-right: 0; }
.project-file-item .ico {
  flex: 0 0 44px;
  width: 44px;
  color: var(--blue);
  margin-top: 2px;
}
.project-file-item .ico svg {
  width: 44px;
  height: 44px;
}
.project-file-item > div:last-child {
  min-width: 0;
  flex: 1 1 auto;
}
.project-file-item h4 {
  font-size: 16px;
  margin: 0 0 6px;
}
.project-file-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
}
.pair-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.process.is-lined { position: relative; }
.process.is-lined .process-item .num {
  background: #fff;
  border: 1.5px solid var(--blue);
  position: relative;
  z-index: 1;
}
.process.is-lined::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #d5deea;
}
.compare { align-items: center; }
.compare-swap {
  display: none;
  color: var(--blue);
}
.compare { grid-template-columns: 1fr auto 1fr; }
.compare-swap { display: grid; place-items: center; }
.compare-card li .ico { color: var(--blue); flex: 0 0 18px; }
.tips-card {
  background: var(--bg-soft);
  border: 0;
  width: 100%;
  justify-self: end;
  padding: 40px 20px;
}
.tips-inner {
  width: 100%;
}
.tips-card h3 {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.2;
}
.tips-lead {
  margin-top: 8px;
  font-size: 15px;
}
.tips-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  margin-bottom: 18px;
  line-height: 1.7;
}
.tips-card ul { margin: 20px 0 0; padding: 0; }
.tips-card li .ico { color: var(--blue); flex: 0 0 16px; margin-top: 2px; }
.tips-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.tips-note .ico {
  color: var(--blue);
  flex: 0 0 16px;
  margin-top: 1px;
}
.file-box .ico { color: var(--blue); margin: 0 auto 8px; }
.file-hint { font-size: 13px; margin: 6px 0 12px; }
.approach-main { grid-template-columns: repeat(3, 1fr); }
.approach-main .media-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.approach-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.55fr) minmax(0, 0.78fr);
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.approach-mosaic .pos-lt { grid-area: 1 / 1; }
.approach-mosaic .pos-lb { grid-area: 2 / 1; }
.approach-mosaic .pos-c { grid-area: 1 / 2 / span 2 / 3; }
.approach-mosaic .pos-rt { grid-area: 1 / 3; }
.approach-mosaic .pos-rb { grid-area: 2 / 3; }
.approach-mosaic .media-card { min-height: 0; }
.approach-mosaic .media-card img {
  width: 56%;
  margin: 18px auto 0;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.approach-mosaic .media-card.is-featured img {
  width: 100%;
  margin: 0;
  aspect-ratio: auto;
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.approach-mosaic .media-card .body { margin-top: auto; }

.purpose {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.purpose h2 { font-size: clamp(26px, 3.2vw, 40px); }

@media (min-width: 981px) {
  .site-nav,
  .header-actions {
    display: flex !important;
    position: static !important;
    inset: auto !important;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border: 0;
    z-index: auto;
  }
  .nav-toggle { display: none !important; }
  .hero { grid-template-columns: 1.05fr 0.95fr; }
  .hero.hero-cover { grid-template-columns: 1fr; }
  .split, .zigzag-item { grid-template-columns: 1fr 1fr; }
  .split.split-media { grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr); }
  .form-grid { grid-template-columns: 1.32fr 0.68fr; }
  .zone-grid { grid-template-columns: 1.4fr 1fr; }
  .compare { grid-template-columns: 1fr auto 1fr; }
  .footer-grid { grid-template-columns: 1.4fr .7fr .7fr 1fr .85fr; }
  .cta-inner { display: flex; }
  .plan-grid { grid-template-columns: repeat(4, 1fr); }
  .pair-photos { grid-template-columns: 1fr 1fr; }
  .approach-main { grid-template-columns: repeat(3, 1fr); }
  .approach-mosaic {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.55fr) minmax(0, 0.78fr);
    grid-template-rows: 1fr 1fr;
  }
  html[dir="rtl"] .approach-mosaic .pos-lt { grid-area: 1 / 3; }
  html[dir="rtl"] .approach-mosaic .pos-lb { grid-area: 2 / 3; }
  html[dir="rtl"] .approach-mosaic .pos-rt { grid-area: 1 / 1; }
  html[dir="rtl"] .approach-mosaic .pos-rb { grid-area: 2 / 1; }
  html[dir="rtl"] .approach-mosaic .pos-c { grid-area: 1 / 2 / span 2 / 3; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .process { grid-template-columns: repeat(7, 1fr); }
  .process.cols-6 { grid-template-columns: repeat(6, 1fr); }
  .process.cols-5 { grid-template-columns: repeat(5, 1fr); }
  .contact-cards { grid-template-columns: repeat(4, 1fr); }
  .icon-grid { grid-template-columns: repeat(6, 1fr); }
  .about-div-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-spec-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(260px, calc(100% - 36px));
    margin-top: 0;
  }
  .process-flow {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .process-flow .process-item { flex: 1; width: auto; }
  .process-flow .process-arrow {
    display: grid;
    transform: none;
    margin: 0;
  }
  html[dir="rtl"] .process-flow .process-arrow { transform: scaleX(-1); }
}

@media (max-width: 1180px) {
  .site-nav { gap: 22px; }
  .site-nav a { font-size: 14.5px; }
}

@media (max-width: 980px) {
  :root { --header: 64px; }
  body { padding-top: var(--header); }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }
  .container,
  .page-home .container {
    width: min(var(--max), calc(100% - 32px));
    max-width: 100%;
  }
  .hero, .split, .split.split-media, .zigzag-item, .form-grid, .zone-grid, .compare, .footer-grid, .cta-inner, .plan-grid, .pair-photos {
    grid-template-columns: 1fr;
  }
  .page-fitness .plan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .page-fitness .plan-card {
    border: 0;
    padding: 16px 8px;
  }
  .cta-inner,
  html[dir="rtl"] .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cta-banner .btn {
    flex-shrink: 0;
    white-space: nowrap;
    height: auto;
    min-height: 46px;
    padding: 12px 20px;
  }
  .hero.hero-cover { grid-template-columns: 1fr; }
  .process-rail { width: 100%; }
  .process-rail::before { left: 18px; transform: none; }
  .process-rail-item {
    width: 100%;
    align-self: stretch !important;
  }
  .process-rail-item + .process-rail-item { margin-top: 0; }
  .process-rail-item::before { left: 18px; right: auto; width: 24px; }
  .process-rail-item.is-left::before,
  .process-rail-item.is-right::before { left: 18px; right: auto; }
  .process-rail-item.is-left::after,
  .process-rail-item.is-right::after {
    left: 18px;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .process-rail-item { padding-left: 42px; }
  .process-rail-card { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 220px; }
  .hero-cover {
    grid-template-rows: 450px;
  }
  .hero-cover .hero-visual { min-height: 450px; width: 58%; }
  .hero-cover .hero-copy { max-width: 48%; padding: 32px 20px; }
  .approach-main { grid-template-columns: 1fr 1fr; }
  .approach-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .approach-mosaic .pos-lt,
  .approach-mosaic .pos-lb,
  .approach-mosaic .pos-c,
  .approach-mosaic .pos-rt,
  .approach-mosaic .pos-rb { grid-area: auto; }
  .approach-mosaic .pos-c { grid-column: 1 / -1; }
  .approach-mosaic .media-card.is-featured img { min-height: 0; }
  .compare { grid-template-columns: 1fr; width: 100%; }
  .compare-swap { transform: rotate(90deg); }
  .plan-card { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .project-file-grid { grid-template-columns: 1fr 1fr; gap: 0 8px; }
  .project-file-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 12px 16px 0;
  }
  .project-file-item:nth-child(even) { padding-right: 0; padding-left: 12px; }
  .project-file-item:nth-last-child(-n+2) { border-bottom: 0; }
  .hero-spec-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 16px; }
  .zigzag-item:nth-child(even) .zigzag-copy { order: 0; }
  .grid-3, .grid-4, .process, .process.cols-6, .process.cols-5, .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
  .roadmap { flex-wrap: wrap; gap: 18px; width: 100%; }
  .roadmap-link { display: none; }
  .roadmap-card { flex: 1 1 calc(50% - 9px); }
  .roadmap-copy { max-width: 70%; }
  .about-div-grid { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    z-index: 39;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
  }
  .site-nav.is-open > a,
  .site-nav.is-open .nav-item > a {
    display: block;
    width: max-content;
    max-width: calc(100% - 48px);
    padding: 12px 0 10px;
    transform: none;
    z-index: auto;
  }
  .nav-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 8px;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #eef1f5;
  }
  .nav-item > a { flex: 1 1 auto; max-width: calc(100% - 48px); }
  .nav-sub-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-inline-start: auto;
    border-radius: 8px;
    color: #8a97a8;
  }
  .nav-sub-toggle:hover,
  .nav-item.is-open .nav-sub-toggle { background: transparent; color: var(--navy); }
  .nav-item.is-open .nav-sub-toggle svg { transform: rotate(180deg); }
  .nav-sub {
    display: block;
    position: static;
    left: auto;
    top: auto;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid #eef1f5;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }
  .nav-sub::before { display: none; }
  .nav-item.is-open .nav-sub {
    max-height: 480px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 4px 0 10px;
  }
  .nav-sub a {
    padding: 11px 0;
    padding-inline-start: 16px;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #516f90;
    white-space: normal;
    border-radius: 0;
    border-bottom: 0;
  }
  .nav-sub a.is-active,
  .nav-sub a:hover {
    background: transparent;
    color: var(--blue);
    font-weight: 600;
  }
  .site-header,
  .header-inner {
    max-width: 100%;
    min-width: 0;
  }
  .header-inner { gap: 6px; flex-wrap: nowrap; }
  .logo { min-width: 0; max-width: min(132px, 34vw); }
  .logo-img { height: 32px; max-width: 100%; }
  .header-actions {
    display: flex;
    margin-left: auto;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
  }
  .header-actions .btn-sm {
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
    max-width: 42vw;
    overflow: hidden;
  }
  .contact-current {
    min-width: 0;
  }
  .page-home .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .lang-switch.is-open .lang-menu,
  .lang-menu.is-ported {
    max-height: calc(100dvh - var(--header) - 20px);
  }
  .nav-toggle {
    display: block;
    margin-left: 0;
    flex-shrink: 0;
  }
  body.nav-open { overflow: hidden; }
  .zone-card.tall { min-height: 0; }
  .fitness-zones .zone-grid { height: auto; overflow: visible; }
  .fitness-zones .zone-stack { height: auto; min-height: 0; grid-template-rows: none; }
  .fitness-zones .zone-card,
  .fitness-zones .zone-card.tall { height: auto; }
  .fitness-zones .zone-card img,
  .fitness-zones .zone-card.tall img { min-height: 220px; height: auto; }
  .process-flow { flex-wrap: wrap; justify-content: center; gap: 22px 10px; }
  .process-flow .process-item { flex: 0 0 28%; }
  .process-flow .process-arrow { display: none; }
}

html[lang^="ar"] body { font-family: Cairo, "Segoe UI", Tahoma, sans-serif; }
html[lang^="ar"] .eyebrow,
html[lang^="ar"] .vn-eyebrow { letter-spacing: 0.04em; text-transform: none; }
html[lang^="ar"] .site-nav a,
html[lang^="ar"] .nav-item > a {
  font-family: Cairo, "Segoe UI", Tahoma, sans-serif;
  letter-spacing: 0.02em;
  font-size: 16px;
}
html[lang^="ja"] body { font-family: "Noto Sans JP", Inter, "Segoe UI", sans-serif; }
html[lang^="ko"] body { font-family: "Noto Sans KR", Inter, "Segoe UI", sans-serif; }
html[lang^="th"] body { font-family: "Noto Sans Thai", Inter, "Segoe UI", sans-serif; }
html[lang^="hi"] body { font-family: "Noto Sans Devanagari", Inter, "Segoe UI", sans-serif; }
html[lang^="th"] .eyebrow,
html[lang^="th"] .vn-eyebrow,
html[lang^="hi"] .eyebrow,
html[lang^="hi"] .vn-eyebrow,
html[lang^="ja"] .eyebrow,
html[lang^="ja"] .vn-eyebrow,
html[lang^="ko"] .eyebrow,
html[lang^="ko"] .vn-eyebrow {
  letter-spacing: 0.06em;
  text-transform: none;
}
html[lang^="ar"] .vn-shell .vn-button,
html[lang^="ar"] .vn-shell .vn-textlink,
html[lang^="th"] .vn-shell .vn-button,
html[lang^="th"] .vn-shell .vn-textlink,
html[lang^="hi"] .vn-shell .vn-button,
html[lang^="hi"] .vn-shell .vn-textlink,
html[lang^="ja"] .vn-shell .vn-button,
html[lang^="ja"] .vn-shell .vn-textlink,
html[lang^="ko"] .vn-shell .vn-button,
html[lang^="ko"] .vn-shell .vn-textlink {
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a,
  .site-nav a::after,
  .nav-sub,
  .nav-sub-toggle svg,
  .contact-menu,
  .contact-current svg,
  .lang-menu,
  .lang-current svg {
    transition: none;
  }
  .site-nav a:hover { transform: none; }
}
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .nav-sub { left: auto; right: 0; }
html[dir="rtl"] .site-nav { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .header-actions { margin-left: 0; margin-right: 0; }
html[dir="rtl"] .logo-img { object-position: right center; }
html[dir="rtl"] .dir-arrow { display: inline-block; transform: scaleX(-1); }
html[dir="rtl"] .zigzag-item:nth-child(even) .zigzag-copy { order: 0; }
html[dir="rtl"] .cta-inner,
html[dir="rtl"] .footer-bar { flex-direction: row-reverse; }
html[dir="rtl"] .spec-card,
html[dir="rtl"] .icon-card { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .plan-card { flex-direction: column; text-align: center; }
html[dir="rtl"] .project-file-item { flex-direction: row-reverse; text-align: right; border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .project-file-item:first-child { padding-right: 0; padding-left: 22px; }
html[dir="rtl"] .project-file-item:last-child { border-left: 0; padding-left: 0; }
html[dir="rtl"] .compare-card li { flex-direction: row-reverse; }
html[dir="rtl"] .tips-card,
html[dir="rtl"] .form-card,
html[dir="rtl"] .section-head.left { text-align: right; }
html[dir="rtl"] .tips-card { justify-self: start; }
html[dir="rtl"] .tips-note { flex-direction: row-reverse; }
html[dir="rtl"] .about-div-card { flex-direction: row-reverse; }
html[dir="rtl"] .about-div-card .copy { text-align: right; }
html[dir="rtl"] .roadmap-card { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .contact-cat-card { flex-direction: column; }
html[dir="rtl"] .contact-cat-card .body { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .contact-card { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .process-rail-item.is-left { align-self: flex-end; }
html[dir="rtl"] .process-rail-item.is-right { align-self: flex-start; }
html[dir="rtl"] .process-rail-item.is-left::before { right: auto; left: -42px; }
html[dir="rtl"] .process-rail-item.is-right::before { left: auto; right: -42px; }
html[dir="rtl"] .process-rail-item.is-left::after { right: auto; left: -42px; transform: translate(-50%, -50%); }
html[dir="rtl"] .process-rail-item.is-right::after { left: auto; right: -42px; transform: translate(50%, -50%); }
html[dir="rtl"] .process-rail-card { direction: rtl; }
html[dir="rtl"] .hero-cover .hero-copy {
  margin-left: auto;
  max-width: 42%;
  padding: 36px 8px 36px 28px;
  text-align: right;
}
html[dir="rtl"] .hero-cover .hero-visual {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .hero-cover .hero-visual img { object-position: center left; }
html[dir="rtl"] .hero-cover .hero-visual::after {
  inset: 0 0 0 auto;
  width: 28%;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .icon-grid, .process, .process.cols-6, .process.cols-5, .contact-cards, .form-row, .about-div-grid, .plan-grid, .approach-main, .approach-mosaic, .project-file-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner .btn {
    width: 100%;
  }
  .page-sports .process-flow,
  .page-fitness .process-flow,
  .page-medical .process-flow,
  .page-contact .process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 18px 12px;
  }
  .page-sports .process-flow .process-item,
  .page-fitness .process-flow .process-item,
  .page-medical .process-flow .process-item,
  .page-contact .process-flow .process-item {
    flex: unset;
    width: auto;
  }
  .page-sports .process-flow .process-arrow,
  .page-fitness .process-flow .process-arrow,
  .page-medical .process-flow .process-arrow,
  .page-contact .process-flow .process-arrow { display: none; }
  .page-sports .process-item h3,
  .page-fitness .process-item h3,
  .page-medical .process-item h3,
  .page-contact .process-item h3 { font-size: 14px; }
  .page-sports .process-item p,
  .page-fitness .process-item p,
  .page-medical .process-item p,
  .page-contact .process-item p { font-size: 12px; }
  .page-sports .sports-pkg .card-grid {
    grid-template-columns: 1fr;
  }
  .page-fitness .plan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .page-fitness .plan-card {
    border: 0;
    padding: 12px 8px;
  }
  .page-fitness .plan-card h3 { font-size: 14px; }
  .page-fitness .plan-card p { font-size: 12px; }
  .page-about .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .page-about .icon-item h3 { font-size: 14px; }
  .page-about .icon-item p { font-size: 12px; }
  .roadmap-card { flex: 1 1 100%; }
  .roadmap-copy { max-width: 100%; }
  .project-file-item,
  .project-file-item:nth-child(even),
  .project-file-item:first-child,
  html[dir="rtl"] .project-file-item,
  html[dir="rtl"] .project-file-item:first-child,
  html[dir="rtl"] .project-file-item:last-child {
    border-left: 0;
    border-right: 0;
    padding: 16px 0;
  }
  .project-file-item:last-child { border-bottom: 0; }
  .process.is-lined::before { display: none; }
  .about-div-card .copy { width: 62%; }
  .container { width: min(var(--max), calc(100% - 32px)); }
  .sports-pkg .container { width: min(1100px, calc(100% - 32px)); }
  .section { padding: 28px 0; }
  .hero { padding: 24px 0 28px; gap: 20px; }
  .hero-visual, .hero-visual img { min-height: 0; }
  .hero-cover {
    grid-template-rows: minmax(320px, auto);
    padding: 16px 0 24px;
  }
  .hero-cover .hero-visual { width: 100%; min-height: 320px; margin: 0; background: #fff; }
  .hero-cover .hero-visual img { min-height: 100%; height: 100%; opacity: 0.08; }
  .hero-cover .hero-copy { padding: 28px 20px; max-width: 100%; }
  .hero-cover .hero-visual::after { width: 100%; background: none; }
  .process-rail-card { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; align-items: stretch; }
  .process-flow .process-item { flex: 0 0 auto; width: 100%; }
  .process-flow .process-arrow {
    display: grid;
    transform: rotate(90deg);
    margin: -6px auto;
  }
}

@media (min-width: 981px) {
  .header-inner { gap: 28px; flex-wrap: nowrap; }
  .logo { min-width: 0; max-width: none; }
  .logo-img { height: 48px; max-width: 210px; }
  .site-nav {
    display: flex !important;
    position: static !important;
    inset: auto !important;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border: 0;
    margin-left: auto;
  }
  .header-actions {
    display: flex !important;
    position: static !important;
    margin-left: 0;
    gap: 14px;
  }
  .header-actions .btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }
  .nav-toggle { display: none !important; }
}
