:root {
  --blue: #123e6a;
  --royal: #1769aa;
  --turquoise: #0faf9e;
  --bright: #22c7c9;
  --ice: #e8f4f8;
  --graphite: #243746;
  --deep: #081f3d;
  --petrol: #08756c;
  --white: #ffffff;
  --border: rgba(18, 62, 106, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--graphite);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 24px rgba(8, 31, 61, 0.16);
}

.brand-mark img,
.logo-display img {
  width: 138%;
  height: 138%;
  object-fit: cover;
  object-position: center 47%;
  transform: translate(-14%, -14%);
}

.brand-name {
  display: flex;
  font-size: 21px;
  letter-spacing: -0.045em;
}

.brand-name strong:first-child {
  color: white;
}

.brand-name strong:last-child {
  color: var(--bright);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 720;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.desktop-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 4px;
}

.button-small {
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  min-height: 815px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 199, 201, 0.16), transparent 30%),
    linear-gradient(132deg, var(--deep) 0%, var(--blue) 55%, var(--royal) 100%);
}

.hero::after {
  position: absolute;
  content: "";
  right: -140px;
  bottom: -330px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 115px rgba(255, 255, 255, 0.018);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 220px;
  height: 220px;
  right: 34%;
  top: 120px;
  background: rgba(34, 199, 201, 0.08);
}

.hero-orb-two {
  width: 420px;
  height: 420px;
  left: -280px;
  bottom: -180px;
  border: 1px solid rgba(34, 199, 201, 0.22);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 78px;
  min-height: 815px;
  padding-top: 130px;
  padding-bottom: 70px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--bright), var(--turquoise));
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: white;
  font-size: clamp(3.15rem, 5vw, 5.2rem);
  line-height: 0.99;
  letter-spacing: -0.058em;
  font-weight: 720;
}

.hero h1 em {
  color: var(--bright);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button-primary {
  min-height: 56px;
  padding: 0 25px;
  color: white;
  background: linear-gradient(110deg, var(--royal), var(--turquoise));
  box-shadow: 0 16px 38px rgba(15, 175, 158, 0.25);
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(15, 175, 158, 0.34);
}

.button-secondary {
  min-height: 56px;
  padding: 0 24px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 21px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 550;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurances b {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--deep);
  background: var(--bright);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 199, 201, 0.22), rgba(23, 105, 170, 0) 68%);
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  height: 536px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 90px rgba(2, 18, 38, 0.34);
}

.hero-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 31, 61, 0.76) 100%);
  pointer-events: none;
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(8, 31, 61, 0.56);
  backdrop-filter: blur(12px);
}

.mini-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 14px;
  background: white;
}

.mini-logo img,
.speciality-logo img {
  width: 138%;
  height: 138%;
  object-fit: cover;
  object-position: center 47%;
  transform: translate(-14%, -14%);
}

.hero-photo figcaption small,
.hero-photo figcaption strong {
  display: block;
}

.hero-photo figcaption small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.hero-photo figcaption strong {
  color: white;
  font-size: 15px;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 410px);
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 36px 90px rgba(2, 18, 38, 0.33);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-display {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  overflow: hidden;
  border-radius: 23px;
  background: white;
  box-shadow: 0 12px 26px rgba(3, 29, 55, 0.25);
}

.hero-card-top p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.hero-card-top strong {
  color: white;
  font-size: 18px;
}

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

.journey-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 25px;
  left: 21px;
  bottom: -1px;
  background: rgba(34, 199, 201, 0.4);
}

.journey-list li > span {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 14px;
  color: var(--bright);
  background: rgba(34, 199, 201, 0.1);
  border: 1px solid rgba(34, 199, 201, 0.26);
  font-size: 11px;
  font-weight: 760;
}

.journey-list strong,
.journey-list small {
  display: block;
}

.journey-list strong {
  color: white;
  font-size: 15px;
  margin-bottom: 4px;
}

.journey-list small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 47px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(8, 31, 61, 0.33);
  font-size: 12px;
  font-weight: 650;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright);
  box-shadow: 0 0 0 5px rgba(34, 199, 201, 0.12);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 38px rgba(2, 18, 38, 0.18);
  color: var(--blue);
}

.floating-note > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: var(--ice);
  color: var(--turquoise);
}

.floating-note small,
.floating-note strong {
  display: block;
}

.floating-note small {
  color: #698091;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-note strong {
  margin-top: 2px;
  font-size: 12px;
}

.floating-note-one {
  top: 86px;
  right: -18px;
}

.floating-note-two {
  bottom: 80px;
  left: -20px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--border);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  margin: 0;
  padding: 29px 34px;
  border-right: 1px solid var(--border);
}

.trust-grid p:first-child {
  border-left: 1px solid var(--border);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.section-pad {
  padding-block: 112px;
}

.section-kicker {
  margin: 0 0 19px;
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--bright);
}

.intro-section {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 110px;
  align-items: start;
}

.intro-grid h2,
.about-copy h2,
.clinics-copy h2,
.section-heading h2,
.scope-copy h2,
.faq-intro h2,
.cta-inner h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.45rem, 4.2vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.intro-copy {
  padding-top: 36px;
}

.intro-copy p,
.about-copy > p,
.clinics-copy > p,
.scope-copy > p,
.faq-intro > p,
.section-heading > p:last-child {
  margin: 0 0 18px;
  color: #5b7080;
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
}

.text-link span {
  color: var(--turquoise);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.about-section {
  overflow: hidden;
  background: var(--ice);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 105px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 570px;
}

.about-visual::before {
  position: absolute;
  content: "";
  width: 390px;
  height: 390px;
  left: -140px;
  top: -70px;
  border: 1px solid rgba(15, 175, 158, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(15, 175, 158, 0.035), 0 0 0 90px rgba(15, 175, 158, 0.025);
}

.about-photo-wrap {
  position: absolute;
  inset: 0 42px 0 0;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 32px 70px rgba(18, 62, 106, 0.16);
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.about-seal {
  position: absolute;
  right: 0;
  bottom: 45px;
  width: 194px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--royal), var(--turquoise));
  box-shadow: 0 18px 40px rgba(18, 62, 106, 0.24);
  color: white;
}

.about-seal strong {
  display: block;
  margin-bottom: 4px;
  font-size: 38px;
  line-height: 1;
}

.about-seal span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
}

.about-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  color: white;
  background: var(--turquoise);
  font-size: 11px;
}

.clarity-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 31px;
  padding: 18px 20px;
  border: 1px solid rgba(18, 62, 106, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.clarity-note > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.clarity-note p {
  margin: 0;
  color: #627684;
  font-size: 12px;
  line-height: 1.65;
}

.clinics-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 28%, rgba(34, 199, 201, 0.16), transparent 27%),
    linear-gradient(130deg, var(--deep), var(--blue) 58%, var(--royal));
}

.clinics-section::after {
  position: absolute;
  content: "";
  width: 680px;
  height: 680px;
  right: -340px;
  top: -290px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.02), 0 0 0 115px rgba(255, 255, 255, 0.016);
}

.clinics-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 112px;
}

.clinics-copy h2 {
  margin-bottom: 28px;
  color: white;
}

.clinics-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.button-light {
  min-height: 56px;
  margin-top: 17px;
  padding: 0 25px;
  color: var(--blue);
  background: white;
  box-shadow: 0 16px 40px rgba(2, 18, 38, 0.22);
}

.speciality-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  box-shadow: 0 34px 80px rgba(2, 18, 38, 0.3);
  backdrop-filter: blur(16px);
}

.speciality-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.speciality-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  overflow: hidden;
  border-radius: 19px;
  background: white;
}

.speciality-brand small,
.speciality-brand strong {
  display: block;
}

.speciality-brand small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.speciality-brand strong {
  color: white;
  font-size: 19px;
}

.speciality-list {
  display: grid;
  gap: 0;
  padding-block: 14px;
}

.speciality-list p {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.speciality-list span {
  color: var(--bright);
  font-size: 11px;
  font-weight: 760;
}

.speciality-list strong {
  color: white;
  font-size: 14px;
}

.speciality-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.speciality-footer span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--deep);
  background: var(--bright);
  font-weight: 800;
}

.journey-section {
  background: white;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-right: auto;
  margin-bottom: 62px;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  max-width: 640px;
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.step-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(150deg, #fff, #f8fbfc);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 175, 158, 0.3);
  box-shadow: 0 22px 48px rgba(18, 62, 106, 0.1);
}

.step-card::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(15, 175, 158, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(15, 175, 158, 0.025);
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border: 1px solid rgba(15, 175, 158, 0.18);
  border-radius: 14px;
  color: var(--turquoise);
  background: rgba(15, 175, 158, 0.08);
  font-size: 11px;
  font-weight: 780;
}

.step-card h3 {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: -0.025em;
}

.step-card p {
  margin: 0;
  color: #687c8a;
  font-size: 13px;
  line-height: 1.7;
}

.scope-section {
  background: var(--ice);
}

.scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.88fr);
  gap: 110px;
  align-items: center;
}

.scope-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.35rem, 4vw, 3.75rem);
}

.scope-flow {
  padding: 20px 30px;
  border: 1px solid rgba(18, 62, 106, 0.1);
  border-radius: 30px;
  background: white;
  box-shadow: 0 24px 60px rgba(18, 62, 106, 0.09);
}

.scope-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 88px;
  border-bottom: 1px solid var(--border);
}

.scope-row:last-child {
  border: 0;
}

.scope-row > span {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 14px;
  color: var(--turquoise);
  background: rgba(15, 175, 158, 0.09);
  font-size: 10px;
  font-weight: 780;
}

.scope-row.clinic > span {
  color: white;
  background: var(--blue);
}

.scope-row strong,
.scope-row small {
  display: block;
}

.scope-row strong {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 14px;
}

.scope-row small {
  color: #718490;
  font-size: 11px;
}

.satisfaction-card {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 25px 30px;
  border: 1px solid rgba(15, 175, 158, 0.15);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.78);
}

.satisfaction-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(145deg, var(--royal), var(--turquoise));
}

.satisfaction-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 15px;
}

.satisfaction-card p {
  margin: 0;
  color: #687c8a;
  font-size: 12px;
  line-height: 1.6;
}

.benefits-section {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--border);
}

.benefits-grid article {
  min-height: 262px;
  padding: 31px 28px;
  background: white;
}

.benefits-grid article > span {
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 780;
}

.benefits-grid h3 {
  margin: 58px 0 13px;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.benefits-grid p {
  margin: 0;
  color: #6b7f8d;
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  border-top: 1px solid var(--border);
  background: #f8fbfc;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.15fr);
  gap: 112px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 35px;
}

.faq-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 3.8vw, 3.7rem);
}

.button-outline {
  min-height: 52px;
  margin-top: 13px;
  padding: 0 23px;
  border: 1px solid rgba(18, 62, 106, 0.19);
  color: var(--blue);
  background: white;
}

.faq-list {
  border-top: 1px solid rgba(18, 62, 106, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(18, 62, 106, 0.16);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  color: var(--blue);
  cursor: pointer;
  font-size: 15px;
  font-weight: 690;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--ice);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  color: white;
  background: var(--turquoise);
}

.faq-list details > p {
  max-width: 660px;
  margin: -2px 55px 25px 0;
  color: #657987;
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, var(--blue), var(--royal) 58%, var(--turquoise));
}

.cta-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -230px;
  top: -250px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 96px rgba(255, 255, 255, 0.018);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
  padding-block: 90px;
}

.cta-inner > div {
  max-width: 780px;
}

.cta-inner h2 {
  color: white;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.cta-inner p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.button-cta {
  min-height: 60px;
  padding: 0 27px;
  color: var(--blue);
  background: white;
  box-shadow: 0 18px 45px rgba(2, 18, 38, 0.22);
  white-space: nowrap;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 65px;
  padding-block: 58px;
}

.brand-footer .brand-name strong:first-child {
  color: white;
}

.footer-top > div:first-child > p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-size: 12px;
}

.footer-links a:hover {
  color: white;
}

.button-footer {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-whatsapp {
  display: none;
}

.trust-grid strong {
  color: var(--blue);
  font-size: 15px;
}

.trust-grid span {
  margin-top: 5px;
  color: #657987;
  font-size: 12px;
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.4rem);
  }

  .intro-grid,
  .about-grid,
  .clinics-grid,
  .scope-grid,
  .faq-grid {
    gap: 58px;
  }

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

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

  .footer-top {
    gap: 30px;
  }
}

@media (max-width: 830px) {
  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: 78px;
  }

  .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .section-pad {
    padding-block: 88px;
  }

  .intro-grid,
  .about-grid,
  .clinics-grid,
  .scope-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .about-visual {
    order: 2;
    min-height: 570px;
  }

  .about-copy {
    order: 1;
  }

  .clinics-grid {
    gap: 48px;
  }

  .speciality-card {
    max-width: 540px;
  }

  .scope-grid {
    gap: 44px;
  }

  .faq-intro {
    position: static;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .button-cta {
    width: fit-content;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .button-footer {
    justify-self: start;
  }
}

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

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

  .brand-name {
    font-size: 19px;
  }

  .hero-grid {
    padding-top: 112px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-photo {
    height: 460px;
    border-radius: 30px;
  }

  .hero-photo figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-card {
    width: calc(100% - 18px);
    padding: 22px;
  }

  .floating-note-one {
    right: -6px;
    top: 78px;
  }

  .floating-note-two {
    left: -4px;
    bottom: 60px;
  }

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

  .trust-grid p,
  .trust-grid p:first-child {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 24px;
  }

  .section-pad {
    padding-block: 72px;
  }

  .intro-grid,
  .about-grid,
  .clinics-grid,
  .scope-grid,
  .faq-grid {
    gap: 42px;
  }

  .intro-grid h2,
  .about-copy h2,
  .clinics-copy h2,
  .section-heading h2,
  .scope-copy h2,
  .faq-intro h2,
  .cta-inner h2 {
    font-size: clamp(2.2rem, 11vw, 3.15rem);
  }

  .intro-copy p,
  .about-copy > p,
  .clinics-copy > p,
  .scope-copy > p,
  .faq-intro > p,
  .section-heading > p:last-child {
    font-size: 15px;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-photo-wrap {
    inset: 0 18px 0 0;
    border-radius: 30px;
  }

  .about-seal {
    right: 0;
    bottom: 24px;
    width: 170px;
    padding: 18px;
  }

  .clinics-section {
    padding-bottom: 84px;
  }

  .speciality-card {
    padding: 22px;
    border-radius: 26px;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-heading.centered {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-heading.centered > p:last-child {
    margin-left: 0;
  }

  .step-card {
    min-height: 220px;
  }

  .scope-flow {
    padding: 10px 19px;
  }

  .scope-row {
    min-height: 82px;
  }

  .satisfaction-card {
    align-items: flex-start;
    gap: 15px;
    padding: 21px;
  }

  .benefits-grid article {
    min-height: 220px;
  }

  .benefits-grid h3 {
    margin-top: 42px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 14px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .cta-inner {
    padding-block: 72px;
  }

  .button-cta {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    display: grid;
    padding-bottom: 92px;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 50;
    right: 15px;
    bottom: 14px;
    left: 15px;
    display: flex;
    min-height: 54px;
    padding: 0 20px;
    color: white;
    background: linear-gradient(110deg, var(--royal), var(--turquoise));
    box-shadow: 0 16px 40px rgba(8, 31, 61, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Identidade sem fundo, iconografia e contactos oficiais */
.brand-logo {
  display: block;
  width: 205px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 7px rgba(255, 255, 255, 0.16));
}

.header-actions,
.cta-actions,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 720;
  white-space: nowrap;
}

.header-phone:hover,
.footer-contact > a:hover {
  color: var(--bright);
}

.header-phone:focus-visible,
.footer-contact > a:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 4px;
}

.mini-logo,
.speciality-logo {
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.mini-logo img,
.speciality-logo img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.step-card-top,
.benefit-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 27px;
}

.step-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(15, 175, 158, 0.18);
  border-radius: 16px;
  color: var(--turquoise);
  background: linear-gradient(145deg, rgba(34, 199, 201, 0.13), rgba(23, 105, 170, 0.08));
}

.step-number {
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
}

.benefit-number {
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 780;
}

.benefits-grid h3 {
  margin-top: 0;
}

.button-cta-phone {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.footer-contact {
  align-items: flex-end;
  flex-direction: column;
}

.footer-contact > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-size: 15px;
  font-weight: 720;
}

.mobile-contact-bar {
  display: none;
}

/* Escala de leitura reforçada para todos os públicos */
body {
  font-size: 17px;
}

.desktop-nav,
.button-small,
.text-link,
.check-list,
.speciality-list strong,
.scope-row strong,
.button {
  font-size: 16px;
}

.hero-lead {
  font-size: 20px;
}

.hero-assurances,
.trust-grid span,
.hero-photo figcaption small,
.floating-note strong,
.speciality-brand small,
.speciality-footer,
.scope-row small,
.footer-top > div:first-child > p,
.footer-links {
  font-size: 13px;
}

.hero-photo figcaption strong,
.trust-grid strong,
.satisfaction-card strong {
  font-size: 17px;
}

.floating-note small {
  font-size: 10px;
}

.section-kicker {
  font-size: 14px;
}

.intro-copy p,
.about-copy > p,
.clinics-copy > p,
.scope-copy > p,
.faq-intro > p,
.section-heading > p:last-child {
  font-size: 19px;
  line-height: 1.72;
}

.clarity-note p,
.satisfaction-card p {
  font-size: 15px;
}

.step-card {
  min-height: 270px;
}

.step-card h3,
.benefits-grid h3 {
  font-size: 20px;
}

.step-card p,
.benefits-grid p {
  font-size: 16px;
  line-height: 1.72;
}

.benefits-grid article {
  min-height: 292px;
}

.faq-list summary {
  font-size: 17px;
}

.faq-list details > p {
  font-size: 16px;
  line-height: 1.75;
}

.cta-inner p:not(.section-kicker) {
  font-size: 18px;
}

.footer-bottom {
  font-size: 12px;
}

@media (max-width: 1020px) {
  .header-phone {
    display: none;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 830px) {
  .brand-logo {
    width: 188px;
  }

  .header-actions {
    display: none;
  }

  .footer-contact {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 172px;
  }

  .hero-lead,
  .intro-copy p,
  .about-copy > p,
  .clinics-copy > p,
  .scope-copy > p,
  .faq-intro > p,
  .section-heading > p:last-child,
  .cta-inner p:not(.section-kicker) {
    font-size: 17px;
  }

  .check-list,
  .step-card p,
  .benefits-grid p,
  .faq-list details > p {
    font-size: 16px;
  }

  .step-card,
  .benefits-grid article {
    min-height: 0;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 9px;
  }

  .mobile-contact-bar .mobile-phone,
  .mobile-contact-bar .mobile-whatsapp {
    position: static;
    display: flex;
    min-height: 56px;
    width: 100%;
    padding: 0 17px;
    color: white;
    font-size: 15px;
    box-shadow: 0 16px 40px rgba(8, 31, 61, 0.28);
  }

  .mobile-contact-bar .mobile-phone {
    background: var(--blue);
  }

  .mobile-contact-bar .mobile-whatsapp {
    background: linear-gradient(110deg, var(--royal), var(--turquoise));
  }
}


/* Base portátil para hospedagem estática */
img { display: block; max-width: 100%; }
svg { display: block; }
