/* IRC Medical Sector — enterprise clinical design */

:root {
  --navy: #0b2c55;
  --navy-2: #123a6b;
  --brand: #3163a7;
  --brand-2: #25508a;
  --teal: #0d8a96;
  --teal-2: #12a3b0;
  --gold: #c4a056;
  --bg: #f4f8fb;
  --bg-alt: #eef5f8;
  --surface: #ffffff;
  --text: #1a2d41;
  --muted: #5a6b7c;
  --line: #dce6ee;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 44, 85, 0.1);
  --shadow-sm: 0 8px 24px rgba(11, 44, 85, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --container-padding: 22px;
  --header-h: 78px;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-heading: "Plus Jakarta Sans", sans-serif;
}

html[lang="ar"],
html[dir="rtl"] {
  --font-body: "29LT Bukra", sans-serif;
  --font-heading: "29LT Bukra", sans-serif;
}

html[lang="ar"] body,
html[dir="rtl"] body {
  font-weight: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.55rem); font-weight: 500; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.25rem); font-weight: 500; }
h3 { font-size: 1.12rem; font-weight: 500; letter-spacing: -0.01em; }

p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: -80px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

/* Decorative clinical pattern */
.pattern {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(13, 138, 150, 0.08) 1px, transparent 0);
  background-size: 22px 22px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy) 0%, #0f3b6a 55%, #0c5663 100%);
  color: #e8f1f8;
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e8f1f8;
  padding: 8px 10px;
  min-height: 40px;
  border-radius: 999px;
  font-weight: 600;
}

.topbar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.topbar__icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar__icon svg {
  width: 14px;
  height: 14px;
}

.topbar__link--lang {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding-inline: 14px;
  font-weight: 800;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(18, 163, 176, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7f6f8;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ee0d0;
  box-shadow: 0 0 0 4px rgba(78, 224, 208, 0.18);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
}

.header {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 230, 238, 0.9);
  box-shadow: 0 8px 30px rgba(11, 44, 85, 0.05);
}

.header.is-scrolled {
  box-shadow: 0 10px 32px rgba(11, 44, 85, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  height: 50px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.25;
}

.brand__tag {
  font-size: 12.5px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav a {
  color: #385068;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--brand);
  background: rgba(49, 99, 167, 0.07);
}

.header__cta {
  display: inline-flex;
  margin-inline-start: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle__icon {
  display: grid;
  gap: 5px;
}

.nav-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 8px 22px 18px;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--teal) 140%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(49, 99, 167, 0.28);
}

.btn--primary:hover { color: #fff; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }

.btn--outline {
  background: #fff;
  border-color: rgba(49, 99, 167, 0.22);
  color: var(--brand);
}

.btn--dark {
  background: var(--navy);
  color: #fff;
}

.btn--dark:hover { color: #fff; }

.btn--light {
  background: #fff;
  border-color: var(--line);
  color: var(--brand);
}

.btn--block { width: 100%; }

.btn__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.btn__icon svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(86vh, 760px);
  display: grid;
  color: #fff;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slider-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__slider-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  direction: ltr;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__slider-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero__slider-slide.is-active .hero__slider-img {
  animation: heroKenBurns 7s ease forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8, 28, 54, 0.42) 0%, rgba(11, 44, 85, 0.28) 48%, rgba(13, 90, 100, 0.16) 100%),
    linear-gradient(to top, rgba(8, 22, 42, 0.22), transparent 42%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 72px 0 92px;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(18, 163, 176, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #bff4f7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 { color: #fff; max-width: 16ch; }

.lead {
  font-size: 1.12rem;
  color: rgba(236, 246, 255, 0.86);
  max-width: 54ch;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hero .media-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
}

.hero .media-carousel__btn svg { width: 20px; height: 20px; }
.hero .media-carousel__btn--prev { left: 18px; }
.hero .media-carousel__btn--next { right: 18px; }

.hero__slider-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
}

.hero__slider-dots {
  display: flex;
  gap: 8px;
}

.hero__slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.hero__slider-dot.is-active {
  width: 28px;
  background: #4ee0d0;
}

/* ---------- Stats ---------- */
.stats {
  position: relative;
  z-index: 4;
  margin-top: -48px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
}

.stat {
  padding: 22px 18px;
  text-align: center;
  border-radius: 16px;
}

.stat__kpi {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.stat__label {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
}

.section--alt,
.section--cta {
  background: linear-gradient(180deg, #eef6f8 0%, #f7fbfd 100%);
}

.section--navy {
  background:
    radial-gradient(circle at 12% 20%, rgba(18, 163, 176, 0.16), transparent 28%),
    linear-gradient(160deg, #0b2c55 0%, #123a6b 55%, #0c4d58 100%);
  color: #dceaf4;
}

.section--navy h2,
.section--navy h3 { color: #fff; }

.section--navy .muted,
.section--navy p { color: rgba(220, 234, 244, 0.78); }

.section__head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section__kicker {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section--navy .section__kicker { color: #7fe8df; }

.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card,
.info,
.service,
.why,
.license-card,
.vision-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.info:hover,
.service:hover,
.why:hover,
.license-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(160deg, rgba(13, 138, 150, 0.14), rgba(49, 99, 167, 0.1));
  color: var(--teal);
}

.icon svg { width: 22px; height: 22px; }

.card p,
.info p,
.service p,
.why p { color: var(--muted); font-size: 0.97rem; }

.info-grid,
.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vision-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.vision-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 138, 150, 0.16), transparent 70%);
  inset-inline-end: -40px;
  bottom: -40px;
}

.quote-mark {
  font-family: inherit;
  font-size: 42px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.55;
}

/* ---------- Roles ---------- */
.roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.role {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
}

.role .icon {
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.12);
  color: #7fe8df;
}

.role strong {
  display: block;
  color: #fff;
  margin: 10px 0 4px;
  font-family: var(--font-heading);
}

.role span { color: rgba(220, 234, 244, 0.72); font-size: 0.92rem; }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px 20px;
  min-height: 150px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

.timeline .n {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--brand), var(--teal));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
}

.timeline h3 { margin-bottom: 4px; }
.timeline p { color: var(--muted); font-size: 0.95rem; }

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow__item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  font-weight: 700;
}

.tag {
  display: inline-block;
  margin-bottom: 8px;
  color: #7fe8df;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ---------- Countries ---------- */
.country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
}

.media-frame {
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.section-img {
  width: 100%;
  display: block;
}

/* ---------- Licenses ---------- */
.license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.license-card img {
  width: 100%;
  border-radius: 14px;
  margin-top: 16px;
  border: 1px solid var(--line);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 18px;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  color: var(--muted);
  padding-bottom: 16px;
}

/* ---------- Contact ---------- */
.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.cta__form,
.cta__contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta__form h2,
.cta__contact h2 { grid-column: 1 / -1; }

.cta__form > p { grid-column: 1 / -1; color: var(--muted); }

.cta__form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.cta__form label:nth-last-of-type(1),
.cta__form button,
.cta__form #medicalInquiryStatus {
  grid-column: 1 / -1;
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f7fafc;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}

.cta__form input:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49, 99, 167, 0.12);
}

.cta__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.status-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
}

.status-msg svg { width: 18px; height: 18px; }
.status-msg--ok { background: #e8f8f0; color: #157a4b; }
.status-msg--err { background: #fdeeee; color: #b42318; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(232, 241, 248, 0.78);
  padding: 48px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer strong,
.footer h3 {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

.footer a { color: rgba(232, 241, 248, 0.86); }
.footer a:hover { color: #7fe8df; }

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 13.5px;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__link svg { width: 16px; height: 16px; }

/* ---------- FABs ---------- */
.fab-stack {
  position: fixed;
  inset-inline-end: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 8px;
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(11, 44, 85, 0.22);
}

.fab img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.fab--whatsapp { background: #25d366; }

/* ---------- Motion ---------- */
.anim-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Embedded ---------- */
html.is-embedded .site-header,
html.is-embedded .topbar,
html.is-embedded .header,
html.is-embedded .footer {
  display: none !important;
}

html.is-embedded .hero {
  min-height: 560px;
}

/* ---------- RTL ---------- */
html[dir="rtl"] .faq summary::after { margin-inline-start: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cards,
  .roles,
  .flow { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .split,
  .cta { grid-template-columns: 1fr; }
  .nav,
  .header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav:not([hidden]) { display: block; }
}

@media (max-width: 760px) {
  .info-grid,
  .service-grid,
  .why-grid,
  .vision-grid,
  .license-grid,
  .footer__grid,
  .cta__form { grid-template-columns: 1fr; }
  .hero { min-height: 640px; }
  .hero__content { padding: 48px 0 80px; }
  .hero h1 { max-width: none; }
  .stats { margin-top: -32px; }
  .section { padding: 56px 0; }
  .brand__meta { display: none; }
  .topbar__text { display: none; }
  .topbar__link--lang .topbar__text { display: inline; }
  .hero .media-carousel__btn { display: none; }
  .timeline li { grid-template-columns: 48px 1fr; }
}

@media (max-width: 520px) {
  .cards,
  .roles,
  .steps,
  .flow,
  .stats__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim-reveal,
  .hero__slider-img,
  .hero__slider-track,
  .card,
  .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
