:root {
  --ink: #123047;
  --ink-2: #073b66;
  --muted: #6b7c8f;
  --navy: #073b66;
  --navy-2: #0a4f7f;
  --teal: #4fafa3;
  --teal-dark: #20887e;
  --mint: #ddefef;
  --mint-2: #edf7f7;
  --gold: #d8aa4c;
  --bg: #f7fafc;
  --surface: #ffffff;
  --surface-2: #eef7f7;
  --line: #dbe8ee;
  --soft-red: #eaf6f5;
  --shadow: 0 24px 60px rgba(7, 59, 102, 0.12);
  --shadow-soft: 0 14px 34px rgba(7, 59, 102, 0.09);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  text-align: left;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  text-align: right;
}

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

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  color: #fff;
  background: linear-gradient(90deg, var(--navy), #0b547a);
  font-size: 0.92rem;
}

.topbar-inner,
.topbar-links,
.social-links,
.nav-shell,
.header-actions,
.language-switcher,
.action-row,
.center-action,
.country-top,
.blog-meta {
  display: flex;
  align-items: center;
}

.topbar-inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links {
  flex-wrap: wrap;
  gap: 14px;
}

.topbar a {
  color: #fff;
}

.topbar bdi,
.contact-card bdi {
  unicode-bidi: isolate;
}

.social-links {
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 76px;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-logo {
  width: clamp(220px, 18vw, 300px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  border-radius: 6px;
}

html[dir="rtl"] .brand-logo {
  object-position: right center;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.25;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.primary-nav a {
  padding: 10px 9px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--navy);
  background: var(--mint-2);
}

.header-actions {
  gap: 10px;
}

.language-switcher {
  padding: 4px;
  gap: 2px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  direction: ltr;
}

.language-switcher button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switcher button.active {
  color: #fff;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 59, 102, 0.2);
}

.button-primary:hover {
  background: var(--navy-2);
}

.button-soft {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(7, 59, 102, 0.08);
}

.button-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.9rem;
}

.full-width {
  width: 100%;
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247, 250, 252, 0.98) 0%, rgba(237, 247, 247, 0.96) 58%, #fff 100%);
  isolation: isolate;
}

.hero-shape {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(79, 175, 163, 0.18);
  border-radius: 34px;
  pointer-events: none;
}

.hero-shape-one {
  top: 54px;
  right: 5%;
  width: 260px;
  height: 190px;
  background: rgba(221, 239, 239, 0.62);
  transform: rotate(10deg);
}

.hero-shape-two {
  bottom: 44px;
  left: -70px;
  width: 220px;
  height: 260px;
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(-14deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 74px 0 66px;
}

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

html[dir="rtl"] .hero-copy {
  margin: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--teal-dark);
}

.hero .eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  color: var(--navy);
  background: var(--mint);
  border: 1px solid rgba(79, 175, 163, 0.22);
  border-radius: 999px;
}

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

h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

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

.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero .button-soft {
  color: var(--navy);
  background: #fff;
}

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

.hero-highlight-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-highlight-card > div {
  min-width: 0;
}

.hero-highlight-card:nth-child(5) {
  grid-column: 1 / -1;
}

.hero-highlight-card h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.hero-highlight-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint-2);
  border: 1px solid rgba(79, 175, 163, 0.2);
  border-radius: 12px;
}

.action-row {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 620px;
  margin-top: 22px;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.94rem;
}

.hero-note strong {
  color: var(--navy);
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 30px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 247, 247, 0.96)),
    #fff;
  border: 1px solid rgba(219, 232, 238, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(79, 175, 163, 0.18);
  border-radius: 26px;
  pointer-events: none;
}

.hero-visual::before {
  inset: 24px auto auto 24px;
  width: 118px;
  height: 86px;
  background: rgba(221, 239, 239, 0.55);
}

.hero-visual::after {
  right: 26px;
  bottom: 28px;
  width: 140px;
  height: 104px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(92%, 470px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 22px 28px rgba(7, 59, 102, 0.14));
}

.medical-orbit,
.visual-card {
  position: absolute;
  z-index: 2;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.medical-orbit {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--teal-dark);
  border-radius: 16px;
}

.orbit-one {
  top: 54px;
  left: 34px;
}

.orbit-two {
  top: 84px;
  right: 36px;
}

.orbit-three {
  bottom: 82px;
  left: 42px;
}

.visual-card {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 900;
}

.visual-card .icon {
  width: 19px;
  height: 19px;
  color: var(--teal-dark);
}

.visual-card-top {
  top: 28px;
  left: 150px;
}

.visual-card-bottom {
  right: 34px;
  bottom: 42px;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #0b5277 56%, var(--teal-dark) 100%);
}

.page-hero-inner {
  width: min(880px, calc(100% - 32px));
  padding: 72px 0;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.page-hero .eyebrow {
  color: #ccefeb;
}

.section {
  padding: 76px 0;
}

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

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

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

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

.info-card,
.step-card,
.testimonial-card,
.blog-card,
.detail-panel,
.side-card,
.contact-card,
.result-card,
.disclaimer-box,
.metric-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-card,
.blog-card,
.detail-panel,
.side-card,
.contact-card,
.result-card,
.disclaimer-box {
  padding: 24px;
}

.info-card h3,
.detail-panel h2,
.side-card h2,
.contact-card h2 {
  overflow-wrap: anywhere;
}

.info-card {
  min-height: 252px;
}

.info-card p,
.blog-card p,
.detail-panel p,
.side-card p,
.contact-card p,
.testimonial-card blockquote,
.disclaimer-box p,
.body-copy {
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--teal-dark);
  background: linear-gradient(145deg, var(--mint), #fff);
  border: 1px solid rgba(79, 175, 163, 0.24);
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 900;
}

.card-icon .icon {
  width: 25px;
  height: 25px;
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
}

.card-link::after {
  content: "";
  width: 28px;
  height: 2px;
  margin: 15px 0 0 10px;
  background: var(--teal);
}

html[dir="rtl"] .card-link::after {
  margin: 15px 10px 0 0;
}

.country-top {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.country-code,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  color: var(--navy);
  background: var(--mint-2);
  border: 1px solid rgba(79, 175, 163, 0.22);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.step-card {
  padding: 22px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 1.42rem;
  font-weight: 900;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.feature-grid article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.testimonial-card {
  margin: 0;
  padding: 24px;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
}

.testimonial-card figcaption {
  display: grid;
  gap: 2px;
}

.testimonial-card span {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.center-action {
  justify-content: center;
  margin-top: 28px;
}

.cta-band {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #0b5277 56%, var(--teal-dark) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 52px 0;
}

.cta-inner h2 {
  margin-bottom: 8px;
}

.cta-inner p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .eyebrow {
  color: #dff7f4;
}

.cta-band .button-primary {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 30px rgba(3, 22, 39, 0.22);
}

.split-layout,
.service-detail-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.service-detail-layout {
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.metric-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.metric-panel div {
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius);
}

.metric-panel strong {
  display: block;
  color: var(--teal-dark);
  font-size: 2rem;
  line-height: 1.1;
}

.metric-panel span {
  color: var(--muted);
  font-weight: 700;
}

.side-card {
  position: sticky;
  top: 98px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(79, 175, 163, 0.16);
}

html[dir="rtl"] .check-list li {
  padding-right: 28px;
  padding-left: 0;
}

html[dir="rtl"] .check-list li::before {
  right: 0;
  left: auto;
}

.blog-meta {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.legal-page {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-page h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

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

.panel-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel-form label {
  font-weight: 900;
}

.panel-form input,
.panel-form select,
.panel-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.panel-form textarea {
  resize: vertical;
}

.panel-form input:focus,
.panel-form select:focus,
.panel-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(79, 175, 163, 0.16);
}

.form-message {
  margin: 0;
  padding: 12px;
  color: var(--teal-dark);
  background: #e9f8f7;
  border: 1px solid rgba(79, 175, 163, 0.24);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-method-section {
  padding-bottom: 28px;
}

.contact-method-section + .section {
  padding-top: 0;
}

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

.contact-method-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 168px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-method-card > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint-2);
  border: 1px solid rgba(79, 175, 163, 0.22);
  border-radius: 14px;
}

.contact-method-card strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.contact-method-card bdi,
.contact-method-card em {
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}

.map-placeholder {
  display: grid;
  min-height: 190px;
  place-items: center;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(79, 175, 163, 0.16), rgba(221, 239, 239, 0.78)),
    var(--bg);
  border: 1px dashed rgba(7, 59, 102, 0.22);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
}

.result-card.is-hidden,
.form-message.is-hidden {
  display: none;
}

.result-card {
  display: grid;
  gap: 14px;
}

.result-card .steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.disclaimer-box {
  border-left: 4px solid var(--gold);
}

html[dir="rtl"] .disclaimer-box {
  border-right: 4px solid var(--gold);
  border-left: 1px solid var(--line);
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 8px;
}

.disclaimer-box p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(140px, 1fr));
  gap: 28px;
  padding: 54px 0 34px;
}

.footer-brand .brand-logo {
  width: min(260px, 100%);
  background: #fff;
}

.footer-brand .brand-text small,
.footer-about p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:not(.brand):hover {
  color: #fff;
}

.footer-contact bdi {
  unicode-bidi: isolate;
}

.footer-bottom {
  display: grid;
  gap: 12px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-text {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(32, 136, 126, 0.3);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    order: 4;
    display: none;
    width: 100%;
    flex: 0 0 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  html[dir="rtl"] .header-actions {
    margin-right: auto;
    margin-left: 0;
  }

  .card-grid,
  .country-grid,
  .testimonial-grid,
  .blog-grid,
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-visual {
    width: min(620px, 100%);
    min-height: 470px;
    margin: 0 auto;
  }

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

@media (max-width: 820px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.64rem;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .topbar-links {
    width: 100%;
    min-width: 0;
    gap: 8px 12px;
  }

  .topbar-links > * {
    overflow-wrap: anywhere;
  }

  .social-links {
    display: none;
  }

  .hero-grid {
    gap: 34px;
    padding: 54px 0 60px;
  }

  .hero-copy {
    display: contents;
    margin-right: 0;
  }

  .hero-intro {
    order: 1;
  }

  .hero-visual {
    order: 2;
    min-height: 430px;
  }

  .hero-highlights {
    order: 3;
  }

  .hero-note {
    order: 4;
  }

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

  .page-hero-inner {
    padding: 56px 0;
  }

  .section {
    padding: 56px 0;
  }

  .split-layout,
  .service-detail-layout,
  .form-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .side-card {
    position: static;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.42rem;
  }

  .brand-text small,
  .site-header .brand-text,
  .header-actions .button {
    display: none;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
    background: var(--mint-2);
    border-color: rgba(7, 59, 102, 0.18);
    box-shadow: 0 8px 18px rgba(7, 59, 102, 0.08);
  }

  .header-actions {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  html[dir="rtl"] .header-actions {
    margin-right: 0;
  }

  .language-switcher {
    width: min(190px, 100%);
  }

  .language-switcher button {
    flex: 1;
  }

  .site-header .brand {
    grid-column: 1;
    min-width: 0;
  }

  .primary-nav {
    grid-column: 1 / -1;
  }

  .brand-logo {
    width: clamp(116px, 34vw, 140px);
    height: 44px;
    object-fit: contain;
    object-position: left center;
    border-radius: 6px;
  }

  html[dir="rtl"] .brand-logo {
    object-position: right center;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  .hero-lead {
    font-size: 1rem;
  }

  .hero-grid {
    gap: 28px;
    padding: 42px 0 52px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-highlight-card:nth-child(5) {
    grid-column: auto;
  }

  .hero-note {
    display: block;
  }

  .hero-note strong {
    display: block;
    margin-bottom: 3px;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px 18px 78px;
    border-radius: 22px;
  }

  .hero-visual::before,
  .hero-visual::after,
  .medical-orbit {
    display: none;
  }

  .hero-visual img {
    width: 100%;
    max-height: none;
    border-radius: 18px;
  }

  .visual-card {
    bottom: 20px;
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .visual-card-top {
    top: auto;
    left: 18px;
  }

  .visual-card-bottom {
    right: 18px;
  }

  .action-row,
  .action-row .button,
  .cta-inner .button {
    width: 100%;
  }

  .card-grid,
  .country-grid,
  .testimonial-grid,
  .blog-grid,
  .details-grid,
  .steps-grid,
  .feature-grid,
  .result-card .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-method-card {
    min-height: auto;
  }

  .footer-grid {
    gap: 18px;
  }

  .floating-whatsapp {
    right: 8px;
    bottom: 8px;
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
  }
}
