:root {
  --ink: #17213b;
  --muted: #5f6b83;
  --navy: #25277e;
  --blue: #3679c5;
  --teal: #158f91;
  --mint: #e6f7f4;
  --gold: #d7a642;
  --coral: #cf6f5e;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --line: #dce5f0;
  --shadow: 0 18px 45px rgba(22, 34, 60, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.86rem 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(54, 121, 197, 0.15);
}

textarea {
  resize: vertical;
}

summary {
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-block-end: 1px solid rgba(220, 229, 240, 0.8);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 172px;
  text-decoration: none;
  grid-column: 1;
}

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

.site-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.15rem;
  grid-column: 2;
}

.site-menu a,
.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.site-menu a:hover,
.footer-grid a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.65rem;
  grid-column: 3;
}

.language-field {
  position: relative;
}

.language-select {
  min-width: 138px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.66rem 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.language-select:hover,
.language-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(54, 121, 197, 0.15);
  outline: none;
}

.language-select svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.language-menu {
  position: absolute;
  z-index: 90;
  inset-block-start: calc(100% + 0.4rem);
  inset-inline-end: 0;
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding-block: 0.25rem;
}

.language-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  text-align: start;
  font-weight: 800;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus,
.language-option[aria-selected="true"] {
  background: #e8eef8;
  outline: none;
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 15px;
  flex: 0 0 auto;
}

.language-flag img {
  width: 20px;
  height: 15px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(23, 33, 59, 0.08);
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.primary-button {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 25px rgba(21, 143, 145, 0.24);
  padding: 0.88rem 1.1rem;
}

.primary-button:hover {
  background: #107d7f;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 0.88rem 1.1rem;
}

.ghost-button {
  background: var(--soft);
  color: var(--navy);
  padding: 0.75rem 0.9rem;
}

.small-button {
  min-height: 40px;
}

.icon-button {
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--soft);
}

.nav-toggle {
  display: none;
  grid-column: 2;
  justify-self: end;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 22, 47, 0.86) 0%, rgba(19, 42, 80, 0.68) 42%, rgba(19, 42, 80, 0.18) 72%),
    linear-gradient(0deg, rgba(12, 22, 47, 0.15), rgba(12, 22, 47, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 6rem 4rem;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #9ff1df;
}

.hero h1 {
  font-size: 4.8rem;
  line-height: 0.98;
  margin: 0;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin: 1.35rem 0 0;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.5rem 0 0;
}

.hero-proof div {
  min-width: 150px;
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 0.85rem;
}

.hero-proof dt {
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.quick-lead {
  background: #fff;
  border-block-end: 1px solid var(--line);
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.35fr);
  gap: 2rem;
  align-items: start;
  padding-block: 3rem;
}

.section-intro h2,
.section-heading h2,
.final-cta h2,
.article-hero h1 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-intro p,
.section-heading p,
.final-cta p {
  color: var(--muted);
}

.compact p:last-child {
  margin-block-end: 0;
}

.lead-form {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-grid-full {
  grid-column: 1 / -1;
}

.lead-form label,
.lead-form .form-field {
  display: grid;
  gap: 0.4rem;
  margin-block-end: 0.9rem;
  color: var(--ink);
  font-weight: 800;
}

.lead-form label span,
.lead-form .form-field > span {
  font-size: 0.88rem;
}

.phone-fields {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(160px, 1fr);
  gap: 0.5rem;
}

.phone-country-picker {
  position: relative;
  display: grid;
}

.phone-code-button {
  width: 100%;
  height: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.86rem 0.7rem;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.phone-code-button:hover,
.phone-code-button:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(54, 121, 197, 0.15);
  outline: none;
}

.phone-code-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--muted);
}

.phone-code-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 15px;
  line-height: 1;
}

.phone-code-flag img,
.phone-country-flag img {
  width: 20px;
  height: 15px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(23, 33, 59, 0.08);
}

.phone-code-value {
  font-weight: 900;
  white-space: nowrap;
}

.phone-country-menu {
  position: absolute;
  z-index: 80;
  inset-block-start: calc(100% + 0.45rem);
  inset-inline-start: 0;
  width: min(370px, calc(100vw - 40px));
  max-height: 330px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding-block: 0.25rem;
}

.phone-country-option {
  width: 100%;
  min-height: 46px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 0.62rem 0.8rem;
  text-align: start;
  cursor: pointer;
}

.phone-country-option:hover,
.phone-country-option:focus,
.phone-country-option[aria-selected="true"] {
  background: #e8eef8;
  outline: none;
}

.phone-country-detected {
  padding-block-end: 0.2rem;
}

.phone-country-detected-label {
  padding: 0.5rem 0.8rem 0.25rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-country-divider {
  height: 1px;
  margin: 0.25rem 0;
  background: var(--line);
}

.phone-country-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 15px;
  line-height: 1;
}

.phone-country-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.phone-country-dial {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.submit-button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--teal);
  font-weight: 800;
}

.whatsapp-continue-button {
  width: 100%;
  margin-block-start: 0.75rem;
}

.whatsapp-continue-button[hidden] {
  display: none;
}

.experience-band,
.treatments-section,
.faq-section {
  background: var(--soft);
}

section {
  scroll-margin-block-start: 96px;
}

.experience-band,
.journey-section,
.treatments-section,
.operations-section,
.articles-section,
.faq-section {
  padding-block: 5rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: 2.2rem;
  align-items: start;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card,
.service-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 34, 60, 0.07);
}

.proof-card,
.service-card {
  padding: 1.25rem;
}

.proof-card svg,
.service-card > svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
  margin-block-end: 0.9rem;
}

.proof-card h3,
.service-card h3,
.article-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  line-height: 1.28;
}

.proof-card p,
.service-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-block-end: 2rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: calc(0.75rem + 21px);
  width: 2px;
  background: linear-gradient(var(--teal), var(--gold));
}

.timeline li {
  position: relative;
  padding: 1rem;
  padding-inline-start: 4.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-number {
  position: absolute;
  inset-inline-start: 0.75rem;
  inset-block-start: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
}

.timeline h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

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

.image-panel {
  position: sticky;
  inset-block-start: 96px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.treatment-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: 1.5rem;
  align-items: center;
  margin-block: 2rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.treatment-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.treatment-feature h3 {
  font-size: 1.85rem;
  line-height: 1.16;
  margin: 0;
}

.treatment-feature p:not(.eyebrow) {
  color: var(--muted);
}

.service-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 255px;
}

.service-card a {
  justify-self: start;
  margin-block-start: 1rem;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.operations-section {
  background: #fff;
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.ops-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.ops-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  font-weight: 800;
}

.ops-list svg {
  color: var(--coral);
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.article-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 143, 145, 0.45);
  box-shadow: var(--shadow);
}

.article-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1.25fr);
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  margin-block-end: 0;
}

.final-cta {
  color: #fff;
  background:
    linear-gradient(110deg, rgba(37, 39, 126, 0.94), rgba(21, 143, 145, 0.92)),
    url("assets/images/patient-transfer.png") center / cover;
}

.final-cta-inner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 3rem;
}

.final-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding-block: 3rem;
  background: #10172a;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(180px, 0.65fr));
  gap: 2rem;
}

.footer-logo {
  width: 190px;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.45rem;
  margin-block-end: 1rem;
}

.footer-grid h2 {
  font-size: 1rem;
  margin: 0 0 0.8rem;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  margin-block: 0.35rem;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-small {
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  inset-inline-end: 20px;
  inset-block-end: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: #25d366;
  color: #082413;
  text-decoration: none;
  font-weight: 900;
  padding: 0.85rem 1rem;
  box-shadow: 0 12px 28px rgba(12, 92, 45, 0.25);
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
}

.article-hero {
  position: relative;
  color: #fff;
  background: #17213b;
  overflow: hidden;
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 23, 42, 0.92), rgba(16, 23, 42, 0.45));
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: grid;
  align-content: center;
  padding-block: 4.5rem;
}

.article-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-block-start: 1.2rem;
}

.article-meta span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.article-main {
  background: var(--soft);
  padding-block: 4rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 2rem;
  align-items: start;
}

.article-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.article-body h2 {
  margin: 2rem 0 0.7rem;
  font-size: 1.65rem;
  line-height: 1.18;
}

.article-body h2:first-child {
  margin-block-start: 0;
}

.article-body p {
  color: var(--muted);
}

.article-body ul {
  padding-inline-start: 1.2rem;
  color: var(--muted);
}

.article-body li + li {
  margin-block-start: 0.35rem;
}

.article-callout {
  border-inline-start: 4px solid var(--teal);
  background: var(--mint);
  border-radius: var(--radius);
  padding: 1rem;
  margin-block: 1.4rem;
  color: var(--ink);
  font-weight: 800;
}

.article-side {
  position: sticky;
  inset-block-start: 96px;
  display: grid;
  gap: 1rem;
}

.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.2rem;
}

.side-panel h2,
.side-panel h3 {
  margin-block-start: 0;
  font-size: 1.2rem;
}

.side-panel p {
  color: var(--muted);
}

.article-link-list {
  display: grid;
  gap: 0.45rem;
}

.article-link-list a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

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

[dir="rtl"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(12, 22, 47, 0.86) 0%, rgba(19, 42, 80, 0.68) 42%, rgba(19, 42, 80, 0.18) 72%),
    linear-gradient(0deg, rgba(12, 22, 47, 0.15), rgba(12, 22, 47, 0.15));
}

[dir="rtl"] .hero-proof div {
  border-inline-start: 0;
  border-inline-end: 3px solid var(--gold);
  padding-inline-start: 0;
  padding-inline-end: 0.85rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .site-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    background: #fff;
    border-block-end: 1px solid var(--line);
    padding: 1rem 20px 1.2rem;
    box-shadow: var(--shadow);
    grid-column: 1 / -1;
  }

  .site-menu.is-open {
    display: grid;
    justify-content: stretch;
    gap: 0.3rem;
  }

  .site-menu a {
    padding: 0.85rem;
    border-radius: var(--radius);
    background: var(--soft);
  }

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

  .nav-actions {
    justify-self: end;
  }

  .ghost-button span {
    display: none;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .consultation-grid,
  .two-column,
  .journey-layout,
  .operations-grid,
  .faq-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .article-side {
    position: static;
  }

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

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 136px;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .language-select {
    min-width: 112px;
    max-width: 122px;
    padding-inline: 0.45rem;
  }

  .nav-actions .ghost-button {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .section-intro h2,
  .section-heading h2,
  .final-cta h2,
  .article-hero h1 {
    font-size: 1.85rem;
  }

  .experience-band,
  .journey-section,
  .treatments-section,
  .operations-section,
  .articles-section,
  .faq-section {
    padding-block: 3.5rem;
  }

  .form-grid,
  .proof-grid,
  .service-grid,
  .article-grid,
  .treatment-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .phone-fields {
    grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  }

  .phone-country-menu {
    width: min(340px, calc(100vw - 28px));
  }

  .timeline::before {
    inset-inline-start: calc(0.6rem + 18px);
  }

  .step-number {
    inset-inline-start: 0.6rem;
    width: 36px;
    height: 36px;
  }

  .timeline li {
    padding-inline-start: 3.6rem;
  }

  .article-body {
    padding: 1.25rem;
  }

  .whatsapp-float {
    inset-inline: 14px;
    justify-content: center;
  }
}
