@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #17224d;
  --navy-2: #101832;
  --blue: #0291d4;
  --blue-2: #2f77df;
  --cyan: #56c5d6;
  --ice: #eef9ff;
  --soft: #f3f5ff;
  --line: #dde7f2;
  --text: #566179;
  --muted: #7a8498;
  --white: #ffffff;
  --pink: #ffe7eb;
  --gold: #f5a623;
  --shadow: 0 24px 70px rgba(23, 34, 77, 0.11);
  --radius: 8px;
  --container: min(1400px, calc(100vw - 20px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: "Outfit", "Tahoma", "Arial", sans-serif;
  text-align: right;
}

body.menu-open {
  overflow: hidden;
}

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

bdi[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(221, 231, 242, 0.75);
  font-size: 13px;
  color: var(--text);
}

.topbar__inner,
.nav__inner,
.footer__grid,
.footer__bottom {
  width: var(--container);
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 38px;
}

.topbar__links,
.topbar__right,
.topbar__urgent,
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__right {
  gap: 14px;
  margin-left: auto;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(2, 145, 212, 0.18);
  border-radius: 50%;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.topbar-social a:hover {
  transform: translateY(-2px);
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.topbar-social svg {
  width: 14px;
  height: 14px;
}

.topbar-social a:hover svg {
  color: var(--white);
}

.topbar svg,
.contact-line svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  flex: 0 0 auto;
}

.topbar__urgent {
  background: var(--blue);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 231, 242, 0.72);
}

.nav__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand img {
  width: 56px;
  height: auto;
}

.brand__text {
  display: none;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.nav-link,
.dropdown-trigger {
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 25px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: var(--blue);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 600;
}

.dropdown a:hover {
  background: var(--ice);
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle,
.faq-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lang-toggle {
  min-width: 42px;
  height: 40px;
  border: 1px solid rgba(2, 145, 212, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 253, 0.96));
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 34, 77, 0.08);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, color 0.28s ease;
}

.lang-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 145, 212, 0.48);
  color: var(--navy);
}

.icon-button:hover,
.menu-toggle:hover,
.faq-toggle:hover {
  transform: translateY(-1px);
  color: var(--blue);
  border-color: rgba(2, 145, 212, 0.35);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 19px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: #047fba;
}

.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 34, 77, 0.15);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(238, 249, 255, 0.94), rgba(238, 249, 255, 0.78)), var(--hero-bg) center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--pink);
  top: 34px;
  right: calc(50% - 470px);
  opacity: 0.9;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero::after,
.section-soft::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(2, 145, 212, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(2, 145, 212, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.hero__inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 562px;
  align-items: center;
  gap: 34px;
  padding: 38px 0 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 18px;
  flex: 0 0 34px;
  background: var(--blue);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 13h7l4-8 7 16 6-12 4 4h16' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: heartbeatLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero h1 {
  font-size: clamp(42px, 6.1vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
  max-width: 670px;
  color: var(--navy);
}

.hero p {
  margin: 20px 0 0;
  color: var(--text);
  line-height: 1.75;
  max-width: 560px;
  font-size: 18px;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__doctor {
  position: relative;
  align-self: end;
  min-height: 480px;
}

.hero__doctor img {
  position: absolute;
  right: -18px;
  bottom: -2px;
  max-height: 510px;
  width: min(520px, 50vw);
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(23, 34, 77, 0.16));
  animation: doctorIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 72px;
  width: 188px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(23, 34, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.hero__badge strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.hero__badge span {
  color: var(--text);
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  left: 18px;
  bottom: 28px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.scroll-cue::before {
  content: "";
  width: 2px;
  height: 58px;
  background: var(--blue);
  display: block;
  margin: 0 auto 10px;
  animation: linePulse 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 84px 0;
}

.seo-fallback {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0;
  color: var(--text);
  line-height: 1.7;
}

.seo-fallback h1,
.seo-fallback h2 {
  color: var(--navy);
}

.seo-fallback a {
  color: var(--blue);
  font-weight: 800;
}

.section-tight {
  padding: 58px 0;
}

.section-soft {
  position: relative;
  background: var(--soft);
  overflow: hidden;
}

.section-header {
  width: var(--container);
  margin: 0 auto 32px;
  text-align: center;
}

.section-header.left {
  text-align: left;
  margin-bottom: 28px;
}

.section-header h2,
.page-title h1 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}

.section-header p {
  color: var(--text);
  line-height: 1.7;
  margin: 12px auto 0;
  max-width: 760px;
}

.arabic-title {
  direction: rtl;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--navy);
  margin-top: 8px;
}

.service-grid,
.orthopedic-grid,
.post-grid,
.contact-grid,
.stats-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(221, 231, 242, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(23, 34, 77, 0.06);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.34s ease, border-color 0.34s ease;
  will-change: transform;
}

.service-card::after,
.orthopedic-card::after,
.post-card::after,
.contact-card::after,
.review-card::after,
.stat::after,
.form-panel::after,
.article-content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 34%, rgba(2, 145, 212, 0.08));
  transition: opacity 0.34s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(2, 145, 212, 0.32);
  box-shadow: 0 30px 78px rgba(23, 34, 77, 0.16);
}

.service-card:hover::after,
.orthopedic-card:hover::after,
.post-card:hover::after,
.contact-card:hover::after,
.review-card:hover::after,
.stat:hover::after,
.form-panel:hover::after,
.article-content:hover::after {
  opacity: 1;
}

.service-card__image {
  display: block;
  height: 210px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-2));
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
  transform: scale(1.055);
}

.service-card__body {
  padding: 16px 16px 18px;
}

.service-card h3,
.orthopedic-card h3,
.post-card h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 18px;
}

.service-card p {
  color: var(--text);
  line-height: 1.55;
  font-size: 14px;
  margin: 10px 0 13px;
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.line-link::after {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.2s ease;
}

.line-link:hover::after {
  transform: scaleX(1.45);
}

.about-split,
.faq-layout,
.booking-layout,
.legal-layout,
.article-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.about-split {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 36px 0 0 34px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-2));
  border-radius: var(--radius);
}

.about-media img {
  position: relative;
  width: 88%;
  max-height: 450px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 22px 36px rgba(23, 34, 77, 0.15));
}

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--navy);
  justify-items: start;
  text-align: left;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  justify-items: start;
}

.check-list li::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 5px var(--white), 0 0 0 1px rgba(2, 145, 212, 0.35);
}

.callout {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 34, 77, 0.08);
}

.callout svg {
  width: 24px;
  color: var(--blue);
}

.callout span {
  color: var(--muted);
  font-size: 13px;
  display: block;
}

.callout strong {
  font-size: 20px;
}

.arabic-panel {
  direction: rtl;
  text-align: right;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(23, 34, 77, 0.07);
}

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

.orthopedic-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  background: var(--white);
  border: 1px solid rgba(221, 231, 242, 0.96);
  border-radius: var(--radius);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  box-shadow: 0 14px 40px rgba(23, 34, 77, 0.04);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.34s ease, box-shadow 0.34s ease;
}

.orthopedic-card:hover {
  transform: translateY(-9px);
  border-color: rgba(2, 145, 212, 0.36);
  box-shadow: 0 28px 68px rgba(23, 34, 77, 0.12);
}

.orthopedic-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f1f4ff;
  display: grid;
  place-items: center;
}

.orthopedic-card__icon img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.orthopedic-card:hover .orthopedic-card__icon img {
  transform: scale(1.09) rotate(-2deg);
}

.orthopedic-card .line-link {
  margin-top: 12px;
}

.faq-layout {
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  direction: ltr;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}

.faq-label {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  line-height: 1.35;
}

.faq-marker {
  grid-column: 2;
  grid-row: 1;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  justify-self: end;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.65;
}

.faq-media img {
  border-radius: var(--radius);
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.booking-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.form-panel {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.34s ease, box-shadow 0.34s ease;
}

.form-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 145, 212, 0.32);
  box-shadow: 0 30px 78px rgba(23, 34, 77, 0.15);
}

.form-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.form-panel p {
  color: var(--text);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfdff;
  color: var(--navy);
  border-radius: 6px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(2, 145, 212, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(2, 145, 212, 0.08);
}

.form-status {
  min-height: 22px;
  color: var(--text);
  font-size: 14px;
}

.form-status.success {
  color: #087a4b;
}

.form-status.error {
  color: #b42318;
}

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

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
}

.step__icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(221, 231, 242, 0.9);
}

.step__icon img {
  max-width: 36px;
  max-height: 36px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.step p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.reviews {
  width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}

.reviews-marketing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.reviews-marketing h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.02;
  max-width: 840px;
}

.reviews-marketing p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--text);
  line-height: 1.72;
  font-size: 17px;
}

.reviews-score {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #1a2a64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(23, 34, 77, 0.18);
}

.reviews-score::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -84px;
  top: -84px;
  border-radius: 50%;
  background: rgba(86, 197, 214, 0.2);
}

.reviews-score strong {
  display: block;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-score span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.reviews-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-size: 13px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s ease, border-color 0.28s ease;
}

.reviews-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

.review-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: reviewMarquee 38s linear infinite;
}

.reviews:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  overflow: hidden;
  width: 292px;
  min-height: 178px;
  background: var(--white);
  border: 1px solid rgba(221, 231, 242, 0.95);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 16px 40px rgba(23, 34, 77, 0.07);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.34s ease, border-color 0.34s ease;
}

.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(2, 145, 212, 0.32);
  box-shadow: 0 28px 70px rgba(23, 34, 77, 0.14);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.avatar-img {
  object-fit: cover;
  padding: 0;
  background: #f1f4ff;
}

.review-card h4 {
  margin: 0;
  font-size: 15px;
}

.google-mark {
  margin-left: auto;
  color: #4285f4;
  font-weight: 800;
}

.stars {
  display: flex;
  gap: 3px;
  margin: 8px 0;
}

.star {
  width: 13px;
  height: 13px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
}

.review-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(238, 249, 255, 0.95), rgba(238, 249, 255, 0.82)), var(--hero-bg) center/cover no-repeat;
  padding: 74px 0 68px;
}

.page-title {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}

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

.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 42px rgba(23, 34, 77, 0.06);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.34s ease, box-shadow 0.34s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 145, 212, 0.34);
  box-shadow: 0 28px 72px rgba(23, 34, 77, 0.13);
}

.contact-card svg {
  width: 34px;
  color: var(--blue);
  margin-bottom: 16px;
}

.contact-card h3 {
  margin: 0 0 8px;
}

.contact-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 300px;
  border-radius: var(--radius);
  filter: saturate(0.95);
}

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

.post-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(23, 34, 77, 0.06);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.34s ease, box-shadow 0.34s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 145, 212, 0.32);
  box-shadow: 0 28px 72px rgba(23, 34, 77, 0.13);
}

.post-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover img {
  transform: scale(1.05);
}

.post-card__body {
  padding: 17px;
}

.post-meta {
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.post-card p {
  color: var(--text);
  line-height: 1.55;
  font-size: 14px;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
}

.article-content,
.side-panel,
.legal-content {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 34, 77, 0.06);
}

.article-content {
  padding: clamp(24px, 4vw, 44px);
}

.article-content img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 26px;
}

.article-content h2,
.article-content h3,
.legal-content h2,
.legal-content h3 {
  color: var(--navy);
  margin: 28px 0 10px;
}

.article-content p,
.article-content li,
.legal-content p,
.legal-content li {
  color: var(--text);
  line-height: 1.75;
}

.article-content ul,
.legal-content ul {
  padding-left: 20px;
}

.side-panel {
  padding: 22px;
  position: sticky;
  top: 104px;
}

.side-panel h3 {
  margin: 0 0 14px;
}

.side-panel a {
  display: block;
  padding: 11px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.side-panel a:hover {
  color: var(--blue);
}

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

.stat {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 12px;
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.34s ease, box-shadow 0.34s ease;
}

.stat:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 145, 212, 0.34);
  box-shadow: 0 28px 72px rgba(23, 34, 77, 0.12);
}

.stat strong {
  font-size: 42px;
  line-height: 1;
  color: var(--blue);
}

.stat span {
  display: block;
  color: var(--text);
  margin-top: 8px;
}

.legal-layout {
  grid-template-columns: 1fr;
}

.legal-content {
  padding: clamp(24px, 4vw, 44px);
}

.footer {
  position: relative;
  overflow: hidden;
  background: #121a47;
  color: var(--white);
  padding: 54px 0 0;
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.65fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer img.logo {
  width: 70px;
  margin-bottom: 18px;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer a:hover {
  color: #65d1ff;
}

.footer .map-embed {
  min-height: 230px;
}

.footer-cta {
  width: var(--container);
  margin: 34px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-cta h3 {
  margin: 0;
  font-size: 24px;
}

.footer__bottom {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social a:hover {
  transform: translateY(-2px);
  border-color: rgba(101, 209, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.social svg {
  width: 16px;
  height: 16px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.86s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--d, 0) * 70ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 92vw);
  background: var(--white);
  z-index: 50;
  transform: translateX(102%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -24px 0 70px rgba(23, 34, 77, 0.2);
  padding: 24px;
  overflow-y: auto;
}

.menu-open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.mobile-panel .mobile-sub {
  padding-left: 14px;
}

.mobile-panel .mobile-sub a {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-14px, 10px, 0);
  }
}

@keyframes linePulse {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes heartbeatLine {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.86;
  }
  18% {
    transform: scaleX(1.12);
    opacity: 1;
  }
  30% {
    transform: scaleX(0.96);
  }
  46% {
    transform: scaleX(1.06);
  }
}

@keyframes doctorIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes doctorInMobile {
  from {
    opacity: 0;
    transform: translate(-50%, 28px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes reviewMarqueeRtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

html[dir="rtl"] .review-track {
  animation-name: reviewMarqueeRtl;
}

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

html[dir="rtl"] .brand,
html[dir="rtl"] .topbar__links,
html[dir="rtl"] .topbar__right,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .nav-actions,
html[dir="rtl"] .hero__actions,
html[dir="rtl"] .review-card__top,
html[dir="rtl"] .btn,
html[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

html[dir="rtl"] .contact-line,
html[dir="rtl"] .topbar__urgent,
html[dir="rtl"] .callout,
html[dir="rtl"] .step {
  flex-direction: row;
}

html[dir="rtl"] .footer__bottom {
  flex-direction: row;
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .social {
  flex-direction: row;
  direction: rtl;
}

html[dir="rtl"] .dropdown {
  right: 0;
  left: auto;
  text-align: right;
}

html[dir="rtl"] .hero__copy,
html[dir="rtl"] .section-header,
html[dir="rtl"] .service-card,
html[dir="rtl"] .orthopedic-card,
html[dir="rtl"] .reviews-marketing,
html[dir="rtl"] .form-panel,
html[dir="rtl"] .article-content,
html[dir="rtl"] .side-panel,
html[dir="rtl"] .post-card,
html[dir="rtl"] .legal-content,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .about-split {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .check-list {
  justify-items: end;
  text-align: right;
}

html[dir="rtl"] .check-list li {
  grid-template-columns: minmax(0, 1fr) 24px;
  justify-items: end;
  padding-right: 0;
  padding-left: 0;
  text-align: right;
}

html[dir="rtl"] .check-list li::before {
  grid-column: 2;
  justify-self: end;
  right: 0;
  left: auto;
}

html[dir="rtl"] .faq-question {
  grid-template-columns: 34px 1fr;
  direction: ltr;
  text-align: right;
}

html[dir="rtl"] .faq-marker {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

html[dir="rtl"] .faq-label {
  grid-column: 2;
  grid-row: 1;
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .line-link::after {
  transform: scaleX(-1);
}

html[dir="rtl"] .mobile-panel {
  inset: 0 auto 0 0;
  transform: translateX(-104%);
  box-shadow: 24px 0 70px rgba(23, 34, 77, 0.2);
}

html[dir="rtl"] .menu-open .mobile-panel {
  transform: translateX(0);
}

html[dir="rtl"] .mobile-panel__head {
  flex-direction: row-reverse;
}

html[dir="rtl"] .mobile-panel .mobile-sub {
  padding-right: 14px;
  padding-left: 0;
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand__text {
    display: block;
  }

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

  .hero__inner {
    grid-template-columns: 1fr 0.78fr;
  }

  .reviews-marketing {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    max-width: 420px;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
    gap: 8px;
  }

  .topbar__right {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .topbar__urgent {
    border-radius: var(--radius);
  }

  .hero::before {
    right: -90px;
    top: 130px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 46px 0 0;
  }

  .hero__doctor {
    min-height: 390px;
  }

  .hero__doctor img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(440px, 96vw);
    animation: doctorInMobile 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero__badge,
  .scroll-cue {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .about-split,
  .faq-layout,
  .booking-layout,
  .article-layout,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .side-panel {
    position: static;
  }

  .footer-cta,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  html[dir="rtl"] .footer-cta,
  html[dir="rtl"] .footer__bottom {
    align-items: flex-end;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 14px, 1400px);
  }

  .brand__text,
  .topbar__links .contact-line:nth-child(2),
  .nav-actions .icon-button {
    display: none;
  }

  .service-grid,
  .orthopedic-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-media {
    min-height: 330px;
  }

  .review-card {
    width: 260px;
  }
}

/* Mobile refinements shared by every generated page. */
.mobile-panel .mobile-sub {
  display: none;
}

@media (max-width: 820px) {
  .topbar__inner {
    align-items: center;
    text-align: center;
    padding: 10px 0 12px;
    gap: 10px;
  }

  .topbar__links,
  .topbar__right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 12px;
  }

  .topbar__links .contact-line,
  .topbar__urgent {
    justify-content: center;
  }

  .topbar__urgent {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .topbar-social {
    justify-content: center;
  }

  .hero__copy,
  .hero__copy h1,
  .hero__copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__copy .eyebrow,
  .section-header .eyebrow,
  .about-split > .reveal:not(.about-media) .eyebrow,
  .steps .eyebrow,
  .reviews-marketing .eyebrow,
  .form-panel .eyebrow {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__doctor {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: auto;
    padding-top: 24px;
    overflow: hidden;
  }

  .hero__doctor img {
    position: relative;
    inset: auto;
    width: min(390px, 88vw);
    max-height: none;
    transform: none;
    animation: doctorIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .about-media {
    display: grid;
    place-items: end center;
  }

  .about-media::before {
    left: 50%;
    right: auto;
    width: min(88%, 520px);
    transform: translateX(-50%);
  }

  .about-media img {
    display: block;
    width: min(88%, 480px);
  }

  .about-split > .reveal:not(.about-media),
  .steps,
  .reviews-marketing,
  .section-header.left {
    text-align: center;
  }

  .about-split > .reveal:not(.about-media) h2,
  .about-split > .reveal:not(.about-media) p,
  .steps h2,
  .reviews-marketing h2,
  .reviews-marketing p:not(.eyebrow),
  .section-header.left p {
    margin-left: auto;
    margin-right: auto;
  }

  .callout {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .booking-layout {
    gap: 34px;
  }

  .steps {
    order: -1;
  }

  .reviews-score {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer__grid {
    text-align: center;
  }

  .footer .logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer .contact-line {
    justify-content: center;
  }

  .footer-cta,
  .footer__bottom,
  html[dir="rtl"] .footer-cta,
  html[dir="rtl"] .footer__bottom {
    align-items: center;
    text-align: center;
  }

  .social {
    justify-content: center;
    flex-wrap: wrap;
  }

  html[dir="rtl"] .hero__copy,
  html[dir="rtl"] .section-header,
  html[dir="rtl"] .about-split > .reveal:not(.about-media),
  html[dir="rtl"] .steps,
  html[dir="rtl"] .reviews-marketing,
  html[dir="rtl"] .footer__grid,
  html[dir="rtl"] .footer-cta,
  html[dir="rtl"] .footer__bottom {
    text-align: center;
  }

  html[dir="rtl"] .hero__copy h1,
  html[dir="rtl"] .hero__copy p,
  html[dir="rtl"] .section-header h2,
  html[dir="rtl"] .section-header p,
  html[dir="rtl"] .about-split > .reveal:not(.about-media) h2,
  html[dir="rtl"] .about-split > .reveal:not(.about-media) p,
  html[dir="rtl"] .steps h2,
  html[dir="rtl"] .reviews-marketing h2,
  html[dir="rtl"] .reviews-marketing p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  html[dir="rtl"] .hero__copy .eyebrow,
  html[dir="rtl"] .section-header .eyebrow,
  html[dir="rtl"] .about-split > .reveal:not(.about-media) .eyebrow,
  html[dir="rtl"] .steps .eyebrow,
  html[dir="rtl"] .reviews-marketing .eyebrow,
  html[dir="rtl"] .form-panel .eyebrow {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1400px, calc(100vw - 30px));
  }

  html,
  body {
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    min-width: 0;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar__inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .topbar__right {
    flex-direction: column;
  }

  .topbar__urgent {
    width: 100%;
    max-width: 340px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .topbar-social a {
    width: 34px;
    height: 34px;
  }

  .eyebrow {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    white-space: normal;
    text-align: center;
  }

  .eyebrow::before {
    flex: 0 0 auto;
    margin: 0 auto;
  }

  .eyebrow span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1,
  h2,
  h3,
  p,
  a,
  span,
  strong {
    overflow-wrap: break-word;
  }

  .hero__copy,
  .section-header,
  .reviews-marketing,
  .about-split > .reveal:not(.about-media),
  .service-card__body,
  .orthopedic-card,
  .form-panel,
  .step,
  .review-card,
  .footer {
    max-width: 100%;
  }

  .hero__inner {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 40px);
    max-width: 100%;
  }

  .hero__doctor {
    padding-top: 22px;
  }

  .hero__doctor img {
    width: min(340px, 90vw);
  }

  .about-media {
    min-height: 300px;
  }

  .about-media::before {
    top: 34px;
    width: min(96%, 360px);
  }

  .about-media img {
    width: min(92%, 350px);
  }

  .check-list {
    justify-items: start;
  }

  .check-list li {
    max-width: 340px;
    text-align: left;
  }

  html[dir="rtl"] .check-list {
    justify-items: end;
  }

  html[dir="rtl"] .check-list li {
    text-align: right;
  }

  .faq-layout {
    gap: 24px;
  }

  .faq-question {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 12px;
    padding: 18px 2px;
  }

  html[dir="rtl"] .faq-question {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .faq-item p {
    padding: 0 2px;
  }

  .step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .step p {
    max-width: 32rem;
  }

  .form-panel {
    padding: 24px 18px;
  }

  .reviews-marketing {
    gap: 18px;
  }

  .reviews-marketing p:not(.eyebrow) {
    max-width: 32rem;
  }

  .reviews-score {
    padding: 22px 18px;
  }

  .footer__bottom {
    justify-content: center;
    min-height: auto;
    padding-top: 20px;
  }

  .social span {
    flex-basis: 100%;
  }
}
