:root {
  --brand-orange: #f39314;
  --brand-amber: #f4ad0f;
  --brand-blue: #0ba4dc;
  --brand-deep: #075985;
  --brand-lime: #cbe61d;
  --ink: #172033;
  --ink-soft: #52606d;
  --surface: #ffffff;
  --surface-warm: #fff9f2;
  --surface-blue: #f0f9fd;
  --border: #dde5ea;
  --line: #dde5ea;
  --border-blue: #cce9f5;
  --shadow-sm: 0 8px 24px rgba(17, 48, 70, 0.07);
  --shadow-md: 0 18px 48px rgba(17, 48, 70, 0.1);
  --shadow-lg: 0 28px 80px rgba(17, 48, 70, 0.14);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shell: 1240px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 750;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--brand-deep);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(11, 164, 220, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 229, 234, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.brand {
  display: flex;
  flex: 0 0 214px;
  align-items: center;
  min-height: 48px;
}

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

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 23px;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #26334a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand-orange);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--brand-deep);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff9f00, #f17800);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(243, 147, 20, 0.24);
  font-size: 14px;
  font-weight: 800;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.header-phone:hover {
  box-shadow: 0 14px 32px rgba(243, 147, 20, 0.34);
  transform: translateY(-1px);
}

.header-phone svg {
  width: 19px;
  height: 19px;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 9%, rgba(244, 173, 15, 0.2), transparent 28%),
    radial-gradient(circle at 65% 90%, rgba(11, 164, 220, 0.1), transparent 30%),
    linear-gradient(180deg, #fffdf9, #fff 82%);
}

.hero::before {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(243, 147, 20, 0.16);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  min-height: 660px;
  padding-top: 64px;
  padding-bottom: 72px;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(42px, 3.75vw, 54px);
}

.hero-name {
  white-space: nowrap;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-amber));
  border-radius: 99px;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions,
.profile-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff9f00, #f27900);
  box-shadow: 0 12px 26px rgba(243, 147, 20, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(243, 147, 20, 0.34);
}

.button-secondary {
  color: var(--brand-deep);
  background: #fff;
  border-color: var(--brand-blue);
}

.button-secondary:hover {
  background: var(--surface-blue);
}

.button-superdoc {
  min-width: 224px;
  color: #263238;
  background: #fff;
  border-color: #cfdade;
  box-shadow: 0 8px 22px rgba(17, 48, 70, 0.07);
}

.button-superdoc:hover {
  border-color: #43bdb4;
  box-shadow: 0 12px 28px rgba(40, 127, 124, 0.14);
}

.button-superdoc img {
  width: 92px;
  height: auto;
}

.button-superdoc span {
  padding-left: 10px;
  border-left: 1px solid var(--border);
}

.hero-services-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  gap: 8px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin: 38px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 13px;
  gap: 11px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 16px rgba(17, 48, 70, 0.04);
}

.trust-icon,
.card-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.trust-icon svg {
  width: 21px;
  height: 21px;
}

.trust-icon.blue,
.card-icon.blue {
  color: var(--brand-blue);
  background: #e9f8fe;
}

.trust-icon.lime,
.card-icon.lime {
  color: #799100;
  background: #f4fad3;
}

.trust-icon.orange,
.card-icon.orange {
  color: var(--brand-orange);
  background: #fff2df;
}

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

.trust-list strong {
  margin-bottom: 2px;
  font-size: 11px;
  line-height: 1.25;
}

.trust-list small {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.3;
}

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

.hero-photo-frame {
  position: absolute;
  z-index: 2;
  top: 6px;
  right: 0;
  width: 94%;
  height: 470px;
  overflow: hidden;
  background: #eaf2f4;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 48% 48% 22% 22% / 44% 44% 18% 18%;
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 7% center;
  transform: scale(1.05);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  z-index: 1;
  top: -20px;
  right: -22px;
  width: 430px;
  height: 430px;
  border: 2px solid rgba(203, 230, 29, 0.72);
}

.orbit-two {
  z-index: 1;
  right: 55px;
  bottom: -4px;
  width: 290px;
  height: 290px;
  border: 2px dashed rgba(11, 164, 220, 0.38);
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: -4px;
  bottom: 2px;
  display: flex;
  align-items: center;
  width: 245px;
  min-height: 84px;
  padding: 15px 18px;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.note-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--brand-blue);
  background: var(--surface-blue);
  border-radius: 13px;
}

.note-mark svg {
  width: 23px;
  height: 23px;
}

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

.hero-note strong {
  font-size: 13px;
}

.hero-note small {
  color: var(--ink-soft);
  font-size: 10px;
}

.booking-strip {
  position: relative;
  z-index: 6;
  margin-top: -34px;
  padding-bottom: 24px;
}

.booking-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(270px, 320px);
  align-items: center;
  min-height: 218px;
  padding: 24px 32px;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.booking-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  padding: 8px;
  background: #fff;
  border: 1px solid #d9e3e6;
  border-radius: 20px;
}

.booking-logo img {
  width: 92px;
  height: auto;
}

.booking-copy .eyebrow {
  margin-bottom: 7px;
}

.booking-copy h2 {
  margin-bottom: 7px;
  font-size: 27px;
}

.booking-copy > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.button-superdoc-primary {
  color: #fff;
  background: linear-gradient(135deg, #23aaa1, #167f7d);
  box-shadow: 0 12px 26px rgba(35, 170, 161, 0.22);
}

.button-superdoc-primary:hover {
  box-shadow: 0 16px 34px rgba(35, 170, 161, 0.31);
}

.booking-actions {
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: 9px;
}

.booking-actions .button {
  width: 100%;
}

.booking-phone {
  color: var(--brand-deep);
  background: #fff;
  border-color: #8fd2d0;
  box-shadow: 0 8px 20px rgba(17, 91, 106, 0.08);
}

.booking-phone:hover {
  background: #effaf9;
  border-color: #4eb7b2;
  box-shadow: 0 12px 24px rgba(17, 91, 106, 0.14);
}

.booking-phone svg {
  width: 18px;
  height: 18px;
}

.booking-helper {
  margin: 1px 2px 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.section {
  padding: 104px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.heading-row > p {
  max-width: 470px;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 16px;
}

.services-section {
  background: #fff;
}

.services-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
}

.service-featured {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 32px;
  background: linear-gradient(150deg, #eefaff 0%, #e2f5fc 58%, #fff 100%);
  border: 1px solid #c9e8f4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.service-featured::after {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 210px;
  height: 210px;
  content: "";
  background: radial-gradient(circle, rgba(244, 173, 15, 0.23), transparent 68%);
  border-radius: 50%;
}

.service-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin-bottom: 38px;
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 42% 58% 48% 52% / 58% 40% 60% 42%;
}

.service-illustration svg {
  width: 118px;
  height: 118px;
  stroke-width: 2.1;
}

.service-kicker,
.online-label,
.article-category {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-featured h3 {
  max-width: 280px;
  font-size: 25px;
}

.service-featured p {
  color: var(--ink-soft);
  font-size: 14px;
}

.service-featured > a,
.consultation-card > a,
.text-link,
.article-more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

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

.service-card {
  position: relative;
  min-height: 252px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 7px 20px rgba(17, 48, 70, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #b9dce9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border-radius: 15px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 16px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.consultation-card {
  color: #fff;
  background: linear-gradient(145deg, #ff9f00, #f27900);
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(243, 147, 20, 0.2);
}

.consultation-card h3,
.consultation-card > a {
  color: #fff;
}

.card-icon.white {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-warm);
}

.process-section::before,
.process-section::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.process-section::before {
  top: -180px;
  left: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(244, 173, 15, 0.22);
}

.process-section::after {
  right: -110px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(11, 164, 220, 0.12), transparent 68%);
}

.process-shell {
  position: relative;
  z-index: 2;
}

.centered {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  color: var(--ink-soft);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.process-list::before {
  position: absolute;
  z-index: -1;
  top: 74px;
  right: 16%;
  left: 16%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--brand-blue) 0 7px, transparent 7px 15px);
  opacity: 0.35;
}

.process-list li {
  position: relative;
  min-height: 290px;
  padding: 38px 32px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #efe1d2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: 17px;
  left: 20px;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 800;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  color: var(--brand-blue);
  background: var(--surface-blue);
  border: 1px solid var(--border-blue);
  border-radius: 24px;
}

.process-list li:nth-child(2) .step-icon {
  color: var(--brand-orange);
  background: #fff5e8;
  border-color: #f8dfbd;
}

.process-list li:nth-child(3) .step-icon {
  color: #718800;
  background: #f6fadf;
  border-color: #e1ed9a;
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.process-list h3 {
  font-size: 18px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.profile-section {
  background: #fff;
}

.profile-grid {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.profile-photo-card {
  position: relative;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.profile-photo-card::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  left: -28px;
  width: 150px;
  height: 150px;
  content: "";
  background-image: radial-gradient(var(--brand-blue) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: 0.38;
}

.profile-image-wrap {
  overflow: hidden;
  background: #f4f4f1;
  border-radius: 22px;
}

.profile-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.profile-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8px 5px;
  gap: 16px;
}

.profile-caption strong,
.profile-caption small {
  display: block;
}

.profile-caption strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.profile-caption small {
  color: var(--ink-soft);
  font-size: 11px;
}

.verified-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--brand-blue);
  background: var(--surface-blue);
  border-radius: 50%;
}

.verified-mark svg {
  width: 24px;
  height: 24px;
}

.profile-copy {
  max-width: 680px;
}

.profile-lead {
  color: #27354b;
  font-size: 18px;
  font-weight: 600;
}

.profile-copy > p:not(.eyebrow):not(.profile-lead) {
  color: var(--ink-soft);
}

.profile-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 34px 0;
  gap: 16px;
}

.profile-points > div {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  gap: 12px;
  background: var(--surface-warm);
  border: 1px solid #f3e2cf;
  border-radius: 16px;
}

.check {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--brand-orange);
  border-radius: 50%;
}

.check svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.profile-points strong,
.profile-points small {
  display: block;
}

.profile-points strong {
  font-size: 13px;
}

.profile-points small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
}

.profile-location {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.profile-location svg {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
}

.knowledge-section {
  color: #fff;
  background: linear-gradient(125deg, #075985, #087dad 58%, #0ba4dc);
}

.knowledge-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  min-height: 360px;
  padding-top: 70px;
  padding-bottom: 70px;
  gap: 50px;
}

.eyebrow.light {
  color: #e4f8ff;
}

.eyebrow.light > span {
  background: var(--brand-amber);
}

.knowledge-heading h2 {
  margin-bottom: 0;
  color: #fff;
}

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

.knowledge-grid article {
  display: flex;
  align-items: flex-start;
  min-height: 205px;
  padding: 28px 24px;
  gap: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 45, 72, 0.16);
}

.knowledge-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  color: var(--brand-orange);
  background: var(--surface-warm);
  border-radius: 13px;
}

.knowledge-icon svg {
  width: 23px;
  height: 23px;
}

.knowledge-grid h3 {
  font-size: 15px;
}

.knowledge-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.articles-section {
  background: #fff;
}

.articles-heading {
  align-items: center;
}

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

.article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(17, 48, 70, 0.05);
}

.featured-article,
.compact-article {
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.article-image {
  display: block;
  height: 180px;
  overflow: hidden;
  background: #ecf2f4;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.article-card:hover .article-image img {
  transform: scale(1.035);
}

.article-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.article-category {
  color: var(--brand-orange);
}

.article-card h3 {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.35;
}

.featured-article h3 {
  font-size: 17px;
}

.article-card p {
  color: var(--ink-soft);
  font-size: 12px;
}

.article-more {
  margin-top: auto;
  color: var(--brand-deep);
  font-size: 11px;
}

.online-section {
  padding-top: 20px;
  background: #fff;
}

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

.online-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.online-card.consultation {
  grid-template-columns: 1.25fr 0.75fr;
  color: #fff;
  background: linear-gradient(135deg, #ff9e00, #f27900);
}

.online-card.test-card {
  grid-template-columns: 1fr;
  color: #fff;
  background: linear-gradient(135deg, #0a83b7, #075985);
}

.online-card.test-card::after {
  position: absolute;
  right: -86px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.online-copy {
  position: relative;
  z-index: 3;
  padding: 44px 0 44px 42px;
}

.online-label {
  color: rgba(255, 255, 255, 0.8);
}

.online-copy h2 {
  color: #fff;
  font-size: 31px;
}

.online-copy p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.button-light {
  color: var(--brand-orange);
  background: #fff;
}

.button-deep {
  color: var(--brand-deep);
  background: #fff;
}

.online-photo {
  position: relative;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
}

.online-photo::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #f27900 0%, transparent 45%);
}

.online-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.test-illustration {
  position: relative;
  min-height: 300px;
}

.paper {
  position: absolute;
  right: 62px;
  bottom: 50px;
  width: 145px;
  height: 185px;
  padding: 38px 22px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 18px 40px rgba(0, 32, 58, 0.25);
  transform: rotate(5deg);
}

.paper::before {
  position: absolute;
  top: 17px;
  left: 24px;
  width: 54px;
  height: 9px;
  content: "";
  background: #c7e9f6;
  border-radius: 99px;
}

.paper i {
  display: block;
  width: 100%;
  height: 7px;
  margin: 12px 0;
  background: #e3eef3;
  border-radius: 99px;
}

.pencil {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 32px;
  width: 18px;
  height: 150px;
  background: linear-gradient(90deg, #f4ad0f 0 55%, #e38c00 55% 70%, #f6d6a2 70%);
  border-radius: 10px 10px 3px 3px;
  transform: rotate(25deg);
}

.bubble {
  position: absolute;
  top: 55px;
  right: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 65px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 22px;
}

.bubble::after {
  position: absolute;
  bottom: -11px;
  left: 23px;
  width: 20px;
  height: 20px;
  content: "";
  background: #3b99bd;
  border-right: 1px solid rgba(255, 255, 255, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  transform: rotate(45deg);
}

.bubble b {
  position: relative;
  z-index: 2;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.contact-section {
  padding: 70px 0 90px;
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 190px;
  padding: 38px 46px;
  gap: 28px;
  background:
    radial-gradient(circle at 92% 0, rgba(244, 173, 15, 0.18), transparent 30%),
    var(--surface-warm);
  border: 1px solid #f1dfca;
  border-radius: var(--radius-lg);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--brand-blue);
  background: #fff;
  border: 1px solid var(--border-blue);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.contact-icon svg {
  width: 31px;
  height: 31px;
}

.contact-copy .eyebrow {
  margin-bottom: 8px;
}

.contact-copy h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.contact-copy > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, #064b72, #063c62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.1fr;
  padding-top: 72px;
  padding-bottom: 58px;
  gap: 50px;
}

.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  width: 230px;
  min-height: 66px;
  margin-bottom: 24px;
  padding: 9px 14px;
  background: #fff;
  border-radius: 13px;
}

.footer-logo-plate img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  font-size: 13px;
}

.footer-superdoc {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin: 4px 0 18px;
  padding: 9px 13px;
  gap: 12px;
  color: #263238;
  background: #fff;
  border-radius: 12px;
}

.footer-superdoc span {
  color: #52606d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-superdoc img {
  width: 104px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-weight: 800;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.footer-column a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  line-height: 1.4;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #7dd8f8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

@media (max-width: 1240px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 9.5px;
  }

  .header-phone {
    padding-inline: 15px;
  }
}

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

  .header-inner {
    justify-content: space-between;
  }

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

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
    gap: 34px;
  }

  .trust-list {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .trust-list li {
    min-height: 68px;
  }

  .trust-list strong {
    font-size: 12px;
  }

  .trust-list small {
    font-size: 10px;
  }

  .services-layout {
    grid-template-columns: 300px 1fr;
  }

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

  .profile-grid {
    grid-template-columns: 360px 1fr;
    gap: 50px;
  }

  .knowledge-shell {
    grid-template-columns: 1fr;
  }

  .knowledge-grid {
    margin-top: -14px;
  }

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

  .online-card {
    grid-template-columns: 1fr;
  }

  .online-photo,
  .test-illustration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 100%;
  }

  .consultation .online-copy {
    max-width: 65%;
  }

  .test-card .online-copy {
    max-width: none;
    padding-right: 72px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand {
    flex-basis: 185px;
  }

  .brand img {
    width: 185px;
  }

  .header-phone {
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
  }

  .header-phone span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 72px;
  }

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

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

  .hero-photo-frame {
    left: 0;
    width: 100%;
    height: 430px;
  }

  .hero-note {
    right: 18px;
  }

  .booking-card {
    grid-template-columns: 100px minmax(0, 1fr);
    padding: 24px;
  }

  .booking-logo {
    width: 96px;
    height: 96px;
  }

  .booking-actions {
    grid-column: 1 / span 2;
    width: 100%;
  }

  .section {
    padding: 84px 0;
  }

  .heading-row {
    display: block;
  }

  .heading-row > p {
    margin-top: 24px;
  }

  .services-layout,
  .profile-grid,
  .online-grid {
    grid-template-columns: 1fr;
  }

  .service-featured {
    min-height: 470px;
  }

  .process-list {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

  .process-list::before {
    top: 8%;
    right: auto;
    bottom: 8%;
    left: 64px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--brand-blue) 0 7px, transparent 7px 15px);
  }

  .process-list li {
    min-height: 210px;
    padding-left: 130px;
    text-align: left;
  }

  .step-icon {
    position: absolute;
    top: 62px;
    left: 27px;
  }

  .profile-photo-card {
    width: min(100%, 430px);
    margin-inline: auto;
  }

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

  .knowledge-grid article {
    min-height: 150px;
  }

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

  .online-card {
    min-height: 430px;
  }

  .consultation .online-copy {
    max-width: 70%;
  }

  .test-card {
    min-height: 340px;
  }

  .test-card .online-copy {
    padding-right: 80px;
  }

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

  .contact-actions {
    grid-column: 1 / span 2;
  }

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

  .footer-brand {
    grid-column: 1 / span 3;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.12;
  }

  h2 {
    font-size: 30px;
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: 170px;
  }

  .header-phone,
  .menu-button {
    width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 13px;
  }

  .header-phone {
    margin-left: 0;
  }

  .hero-grid {
    padding-top: 44px;
    padding-bottom: 62px;
    gap: 38px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
    font-size: clamp(34px, 10.2vw, 42px);
  }

  .hero-copy .hero-lead {
    order: 3;
  }

  .hero-copy .hero-actions {
    order: 4;
  }

  .hero-visual {
    order: 5;
  }

  .hero-copy .trust-list {
    order: 6;
  }

  .hero-copy .hero-services-link {
    order: 7;
  }

  .hero-name {
    white-space: normal;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 16px;
  }

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

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

  .button-superdoc {
    min-width: 0;
  }

  .hero-services-link {
    justify-content: center;
    margin-top: 16px;
  }

  .trust-list {
    margin-top: 26px;
  }

  .trust-list li {
    min-height: 70px;
    padding: 12px 14px;
  }

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

  .hero-photo-frame {
    position: relative;
    top: 0;
    height: 270px;
    border-width: 5px;
    border-radius: 32px 32px 86px 32px;
  }

  .hero-photo-frame img {
    object-position: 6% center;
    transform: scale(1.02);
  }

  .orbit-one {
    top: -14px;
    right: -42px;
    width: 260px;
    height: 260px;
  }

  .orbit-two {
    right: auto;
    bottom: -8px;
    left: -22px;
    width: 180px;
    height: 180px;
  }

  .hero-note {
    right: 9px;
    bottom: -25px;
    width: 220px;
    min-height: 70px;
    padding: 11px 13px;
  }

  .booking-strip {
    margin-top: -18px;
    padding-bottom: 6px;
  }

  .booking-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
    text-align: center;
  }

  .booking-logo {
    margin-inline: auto;
  }

  .booking-copy .eyebrow {
    justify-content: center;
  }

  .booking-copy h2 {
    font-size: 24px;
  }

  .booking-actions {
    grid-column: auto;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .heading-row > p {
    margin-top: 18px;
    font-size: 14px;
  }

  .services-layout {
    gap: 14px;
  }

  .service-featured {
    min-height: 440px;
    padding: 26px;
    border-radius: 22px;
  }

  .service-illustration {
    width: 125px;
    height: 125px;
    margin-bottom: 30px;
  }

  .service-illustration svg {
    width: 98px;
    height: 98px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .card-icon {
    margin-bottom: 20px;
  }

  .process-list li {
    min-height: 220px;
    padding: 36px 24px 28px 104px;
  }

  .process-list::before {
    left: 48px;
  }

  .step-icon {
    top: 65px;
    left: 14px;
    width: 66px;
    height: 66px;
  }

  .profile-grid {
    gap: 48px;
  }

  .profile-photo-card {
    padding: 11px;
    border-radius: 24px;
  }

  .profile-image-wrap {
    border-radius: 18px;
  }

  .profile-points {
    grid-template-columns: 1fr;
    margin: 26px 0;
  }

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

  .profile-actions .button,
  .profile-location {
    width: 100%;
  }

  .profile-location {
    justify-content: center;
  }

  .knowledge-shell {
    min-height: 0;
    padding-top: 66px;
    padding-bottom: 66px;
    gap: 28px;
  }

  .knowledge-grid article {
    min-height: 0;
    padding: 23px 19px;
  }

  .articles-heading .text-link {
    margin-top: 16px;
  }

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

  .featured-article,
  .compact-article {
    min-height: 250px;
  }

  .article-image,
  .compact-article .article-image {
    height: 102px;
  }

  .article-content,
  .featured-article .article-content {
    padding: 12px;
  }

  .article-category {
    margin-bottom: 7px;
    font-size: 8px;
  }

  .article-card h3,
  .featured-article h3 {
    display: -webkit-box;
    min-height: 66px;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .article-card p {
    display: none;
  }

  .article-more {
    min-height: 34px;
    font-size: 9px;
  }

  .online-section {
    padding-top: 0;
  }

  .online-grid {
    gap: 14px;
  }

  .online-card {
    min-height: 500px;
    border-radius: 22px;
  }

  .test-card {
    min-height: 300px;
  }

  .online-copy {
    max-width: none;
    padding: 32px 26px;
  }

  .online-copy h2 {
    font-size: 28px;
  }

  .online-photo,
  .test-illustration {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 235px;
  }

  .online-photo::before {
    background: linear-gradient(180deg, #f27900 0%, transparent 45%);
  }

  .paper {
    right: 90px;
    bottom: 22px;
    width: 125px;
    height: 165px;
  }

  .pencil {
    right: 70px;
    bottom: 15px;
  }

  .bubble {
    top: 10px;
    right: 34px;
  }

  .contact-section {
    padding: 62px 0 72px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 18px;
    text-align: center;
  }

  .contact-icon {
    margin-inline: auto;
  }

  .contact-copy .eyebrow {
    justify-content: center;
  }

  .contact-copy h2 {
    font-size: 27px;
  }

  .contact-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 54px;
    padding-bottom: 40px;
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / span 2;
  }

  .footer-logo-plate {
    width: 215px;
  }

  .footer-contact {
    grid-column: 1 / span 2;
  }

  .footer-column a {
    min-height: 44px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    gap: 4px;
  }
}

/* Protected preview mobile navigation */
.mobile-nav-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(8, 31, 45, 0.52);
  backdrop-filter: blur(3px);
}

.mobile-nav {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(88vw, 380px);
  height: 100vh;
  height: 100dvh;
  padding: 22px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -24px 0 60px rgba(14, 49, 67, 0.2);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.mobile-nav[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-head strong {
  color: var(--brand-deep);
  font-size: 20px;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border: 0;
  border-radius: 14px;
}

.mobile-nav-close svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-links {
  display: grid;
  padding: 16px 0 22px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav-links a.active {
  color: var(--brand-orange);
}

.mobile-nav-booking {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.mobile-nav-open {
  overflow: hidden;
}

/* About page: hero */
.about-page-main {
  background: #fff;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background:
    radial-gradient(circle at 92% 16%, rgba(11, 164, 220, 0.16), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(243, 147, 20, 0.13), transparent 30%),
    linear-gradient(135deg, #fff9f2 0%, #fff 48%, #f0f9fd 100%);
}

.about-hero::before {
  position: absolute;
  top: 72px;
  right: -110px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(11, 164, 220, 0.2);
  border-radius: 50%;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 76px;
}

.about-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(46px, 4.5vw, 68px);
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
}

.about-hero-lead {
  margin-bottom: 16px;
  color: var(--ink) !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.62;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 12px;
}

.about-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.about-quick-facts li {
  min-height: 112px;
  padding: 19px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.about-quick-facts strong,
.about-quick-facts span {
  display: block;
}

.about-quick-facts strong {
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.35;
}

.about-quick-facts span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.about-portrait-card {
  position: relative;
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 0;
}

.about-portrait-halo {
  position: absolute;
  z-index: -1;
  top: -34px;
  right: -38px;
  width: 82%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(11, 164, 220, 0.22), rgba(203, 230, 29, 0.18));
  border-radius: 50%;
  filter: blur(1px);
}

.about-portrait-frame {
  position: relative;
  height: 570px;
  overflow: hidden;
  background: linear-gradient(160deg, #effaff, #fff7ed);
  border: 8px solid #fff;
  border-radius: 34px 34px 112px 34px;
  box-shadow: var(--shadow-lg);
}

.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.about-portrait-card figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 44px);
  min-height: 86px;
  margin: -44px auto 0;
  padding: 18px 20px;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.about-portrait-card figcaption strong,
.about-portrait-card figcaption small {
  display: block;
}

.about-portrait-card figcaption strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.about-portrait-card figcaption small {
  color: var(--ink-soft);
  font-size: 12px;
}

.about-location {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  gap: 7px;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.about-location svg {
  width: 17px;
  height: 17px;
}

/* About page: message and principles */
.about-message-section {
  background: #fff;
}

.about-message-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 86px;
}

.about-message-copy {
  position: sticky;
  top: 34px;
}

.about-message-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 18px;
}

.about-message-copy blockquote {
  position: relative;
  margin: 30px 0 0;
  padding: 25px 28px 25px 34px;
  color: var(--brand-deep);
  background: linear-gradient(135deg, #f0f9fd, #fff);
  border: 1px solid var(--border-blue);
  border-left: 5px solid var(--brand-blue);
  border-radius: 0 18px 18px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.about-principles {
  display: grid;
  gap: 14px;
}

.about-principles article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  min-height: 150px;
  padding: 28px;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-principles article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.about-principles article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--brand-deep);
  background: linear-gradient(135deg, #f0f9fd, #fff6e9);
  border: 1px solid var(--border-blue);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 800;
}

.about-principles h3 {
  margin-bottom: 8px;
}

.about-principles p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

/* About page: support areas */
.about-support-section {
  background: var(--surface-blue);
}

.about-support-heading > p {
  max-width: 530px;
}

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

.about-support-grid article {
  position: relative;
  min-height: 244px;
  padding: 30px 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-blue);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-support-grid article::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(11, 164, 220, 0.07);
  border-radius: 50%;
}

.about-support-grid article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-support-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
}

.about-support-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.about-support-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.about-support-actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 24px;
}

/* About page: process */
.about-process-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(11, 164, 220, 0.28), transparent 30%),
    linear-gradient(135deg, #073e60, #075985 58%, #0876a1);
}

.about-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: 82px;
}

.about-process-heading h2,
.about-process-heading p {
  color: #fff;
}

.about-process-heading > p:last-child {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.76);
}

.about-process-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.about-process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  min-height: 138px;
  padding: 24px;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.about-process-list li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--ink);
  background: var(--brand-amber);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}

.about-process-list h3 {
  margin-bottom: 7px;
  color: #fff;
}

.about-process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

/* About page: booking */
.about-booking-section {
  background: linear-gradient(180deg, #fff, #fff9f2);
}

.about-booking-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) minmax(260px, 320px);
  align-items: center;
  min-height: 230px;
  padding: 34px;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.about-booking-logo {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.about-booking-logo img {
  width: 78px;
  height: auto;
}

.about-booking-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(27px, 2.4vw, 38px);
}

.about-booking-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.about-booking-actions {
  display: grid;
  gap: 10px;
}

.about-booking-actions .button {
  width: 100%;
}

/* About page: responsive */
@media (max-width: 1100px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 48px;
  }

  .about-quick-facts {
    grid-template-columns: 1fr;
  }

  .about-quick-facts li {
    min-height: 0;
  }

  .about-message-grid,
  .about-process-grid {
    gap: 52px;
  }

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

  .about-booking-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .about-booking-actions {
    grid-column: 1 / span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .about-hero {
    padding: 70px 0 84px;
  }

  .about-hero-grid,
  .about-message-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-portrait-card {
    width: min(100%, 430px);
  }

  .about-portrait-frame {
    height: 530px;
  }

  .about-message-copy {
    position: static;
  }

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

@media (max-width: 520px) {
  .about-hero {
    padding: 56px 0 70px;
  }

  .about-hero-copy h1 {
    font-size: 36px;
  }

  .about-hero-lead {
    font-size: 17px;
  }

  .about-hero-actions,
  .about-support-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-hero-actions .button,
  .about-support-actions .button,
  .about-support-actions .text-link {
    width: 100%;
  }

  .about-quick-facts,
  .about-support-grid {
    grid-template-columns: 1fr;
  }

  .about-quick-facts li {
    padding: 17px;
  }

  .about-portrait-frame {
    height: 440px;
    border-width: 6px;
    border-radius: 26px 26px 76px 26px;
  }

  .about-portrait-card figcaption {
    width: calc(100% - 24px);
    margin-top: -30px;
    padding: 14px;
  }

  .about-location {
    padding-inline: 10px;
  }

  .about-message-grid,
  .about-process-grid {
    gap: 38px;
  }

  .about-message-copy blockquote {
    padding: 22px;
    font-size: 16px;
  }

  .about-principles article {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 0;
    padding: 22px 18px;
    gap: 15px;
  }

  .about-principles article > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .about-support-grid article {
    min-height: 0;
    padding: 24px 22px;
  }

  .about-support-number {
    margin-bottom: 22px;
  }

  .about-process-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
    padding: 20px 17px;
    gap: 14px;
  }

  .about-process-list li > span {
    width: 44px;
    height: 44px;
  }

  .about-booking-card {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    text-align: center;
  }

  .about-booking-logo {
    margin-inline: auto;
  }

  .about-booking-copy .eyebrow {
    justify-content: center;
  }

  .about-booking-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

/* Shared inner-page foundation */
.content-page-main {
  background: #f7fafb;
}

.content-page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background: linear-gradient(135deg, #fff9f2 0%, #fff 48%, #f0f9fd 100%);
  border-bottom: 1px solid var(--border);
}

.content-page-hero::before,
.content-page-hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.content-page-hero::before {
  top: -170px;
  right: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(11, 164, 220, 0.15), rgba(11, 164, 220, 0));
}

.content-page-hero::after {
  bottom: -210px;
  left: -140px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(243, 147, 20, 0.15), rgba(243, 147, 20, 0));
}

.content-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.content-page-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
}

.content-page-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7;
}

.content-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-page-hero-card {
  position: relative;
  min-height: 300px;
  padding: 36px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #075985, #0a6f9f);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px 30px 86px 30px;
  box-shadow: var(--shadow-lg);
}

.content-page-hero-card::after {
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  content: "";
  border: 34px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
}

.hero-card-mark svg {
  width: 32px;
  height: 32px;
}

.content-page-hero-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}

.content-page-hero-card p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.cms-rich-text {
  color: #334155;
  font-size: 17px;
  line-height: 1.78;
}

.cms-rich-text p {
  margin-bottom: 20px;
}

.cms-rich-text h2,
.cms-rich-text h3 {
  margin-top: 34px;
  margin-bottom: 18px;
}

.cms-rich-text h2 {
  font-size: clamp(25px, 2vw, 34px);
}

.cms-rich-text h3 {
  font-size: clamp(21px, 1.7vw, 28px);
}

.cms-rich-text ul,
.cms-rich-text ol {
  display: grid;
  margin: 20px 0 28px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.cms-rich-text li {
  position: relative;
  padding-left: 30px;
}

.cms-rich-text li::before {
  position: absolute;
  top: 0.66em;
  left: 4px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(243, 147, 20, 0.12);
}

.cms-rich-text a {
  color: var(--brand-deep);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Disorders introduction and guidance */
.disorders-intro-section {
  padding-top: 96px;
  padding-bottom: 86px;
  background: #fff;
}

.disorders-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.7fr);
  align-items: start;
  gap: 62px;
}

.disorders-intro-copy {
  max-width: 760px;
}

.disorders-intro-copy > p:first-child {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.disorders-intro-copy h2 {
  padding-top: 18px;
}

.parent-guidance-card {
  position: sticky;
  top: 24px;
  padding: 32px;
  background: linear-gradient(145deg, #fff9f2, #fff);
  border: 1px solid #f6d9b3;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.parent-guidance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--brand-deep);
  background: #e7f6fb;
  border-radius: 18px;
}

.parent-guidance-icon svg {
  width: 30px;
  height: 30px;
}

.parent-guidance-card h2 {
  margin-bottom: 16px;
  font-size: 29px;
}

.parent-guidance-card > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.parent-guidance-card .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--brand-deep);
  font-size: 19px;
  font-weight: 800;
}

/* Disorders native accordion */
.disorders-list-section {
  padding-top: 92px;
  padding-bottom: 104px;
  background: linear-gradient(180deg, #f0f9fd, #f8fbfc);
}

.disorders-list-heading {
  margin-bottom: 42px;
}

.disorders-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.disorder-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.disorder-item[open] {
  border-color: #a9ddec;
  box-shadow: var(--shadow-md);
}

.disorder-item summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 44px;
  align-items: center;
  min-height: 82px;
  padding: 14px 18px;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.disorder-item summary::-webkit-details-marker {
  display: none;
}

.disorder-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border-radius: 15px;
  font-size: 13px;
  font-weight: 800;
}

.disorder-title {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.disorder-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  background: #fff9f2;
  border: 1px solid #f3d5ad;
  border-radius: 14px;
}

.disorder-toggle::before,
.disorder-toggle::after {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--brand-orange);
  border-radius: 99px;
  transition: transform 180ms ease;
}

.disorder-toggle::after {
  transform: rotate(90deg);
}

.disorder-item[open] .disorder-toggle::after {
  transform: rotate(0deg);
}

.disorder-answer {
  padding: 8px 28px 30px 86px;
  border-top: 1px solid #edf2f4;
  font-size: 16px;
}

.disorder-answer img {
  height: auto;
  margin: 24px 0;
  border-radius: 18px;
}

/* Therapies content cards */
.therapies-hero-card {
  background: linear-gradient(145deg, #e97700, #f39314);
}

.therapies-list-section {
  padding-top: 92px;
  padding-bottom: 104px;
}

.therapies-list {
  display: grid;
  gap: 28px;
}

.therapy-card {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.therapy-card:nth-child(even) {
  background: linear-gradient(145deg, #fff, #f7fcfe);
  border-color: var(--border-blue);
}

.therapy-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-amber));
  border-radius: 0 0 0 99px;
}

.therapy-card-header {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  margin-bottom: 30px;
  gap: 22px;
}

.therapy-card-header > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border: 1px solid var(--border-blue);
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
}

.therapy-card-header h2 {
  max-width: 920px;
  margin: 4px 0 0;
  font-size: clamp(27px, 2.6vw, 40px);
}

.therapy-card-body {
  display: flow-root;
  max-width: none;
}

.therapy-card-body > div {
  margin-bottom: 18px;
}

.therapy-card-body img {
  float: right;
  width: min(340px, 42%);
  height: auto;
  margin: 2px 0 28px 36px;
  border: 8px solid #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.therapy-card-body strong {
  color: var(--ink);
}

/* Pricing content presentation */
.pricing-hero-card {
  color: var(--ink);
  background: linear-gradient(145deg, #ffe5ba, #f39314);
}

.pricing-hero-card strong,
.pricing-hero-card p {
  color: var(--ink);
}

.pricing-hero-card .hero-card-mark {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
}

.pricing-content-section {
  padding-top: 92px;
  padding-bottom: 110px;
}

.pricing-content-card {
  max-width: 1080px;
  padding: clamp(28px, 5vw, 64px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.pricing-content-card > ul {
  margin-bottom: 58px;
}

.pricing-content-card > ul:first-of-type {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-content-card > ul:first-of-type li {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 24px 26px 24px 54px;
  background: linear-gradient(145deg, #fff9f2, #fff);
  border: 1px solid #f3d5ad;
  border-radius: 20px;
  color: var(--ink);
  font-weight: 700;
}

.pricing-content-card > ul:first-of-type li::before {
  top: 35px;
  left: 26px;
}

.pricing-content-card .orange_18 {
  display: block;
  margin-top: 8px;
  color: #9a4a00;
  font-size: 19px;
  font-weight: 800;
}

.pricing-content-card > h2,
.pricing-content-card > h3,
.pricing-content-card > h3 > .gray_20 {
  color: var(--ink);
}

.pricing-content-card > h2 {
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.pricing-content-card > h2:first-of-type {
  margin-top: 10px;
}

.pricing-content-card > h3 {
  margin-top: 52px;
  font-size: 27px;
}

.pricing-content-card > ul:not(:first-of-type) {
  padding: 28px 30px;
  background: var(--surface-blue);
  border: 1px solid var(--border-blue);
  border-radius: 22px;
}

.pricing-content-card > ol {
  margin-top: 26px;
  padding: 30px;
  background: linear-gradient(145deg, #fff9f2, #fff);
  border: 1px solid #f3d5ad;
  border-radius: 22px;
}

.pricing-content-card > ol li {
  margin-bottom: 20px;
}

.pricing-content-card > ol li:last-child {
  margin-bottom: 0;
}

.pricing-content-card .orange_24 {
  color: #9a4a00;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
}

/* Shared inner-page booking card */
.content-page-booking-section {
  padding-top: 0;
  padding-bottom: 104px;
}

.content-page-booking-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(210px, 0.46fr);
  align-items: center;
  padding: 30px 34px;
  gap: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.content-page-booking-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.content-page-booking-logo img {
  width: 76px;
  height: auto;
}

.content-page-booking-card h2 {
  margin-bottom: 0;
  font-size: clamp(27px, 2.5vw, 39px);
}

.content-page-booking-actions {
  display: grid;
  gap: 10px;
}

/* Inner-page responsive behavior */
@media (max-width: 1050px) {
  .content-page-hero-grid,
  .disorders-intro-grid {
    grid-template-columns: 1fr;
  }

  .content-page-hero-card {
    width: min(100%, 520px);
    min-height: 250px;
  }

  .parent-guidance-card {
    position: static;
  }

  .content-page-booking-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .content-page-booking-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .content-page-hero {
    padding: 66px 0 70px;
  }

  .content-page-hero-grid {
    gap: 40px;
  }

  .content-page-hero-copy h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .disorders-intro-section,
  .disorders-list-section,
  .therapies-list-section,
  .pricing-content-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .disorders-accordion {
    grid-template-columns: 1fr;
  }

  .therapy-card-body img {
    float: none;
    width: min(100%, 440px);
    margin: 8px auto 28px;
  }

  .pricing-content-card > ul:first-of-type {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .content-page-hero {
    padding: 54px 0 58px;
  }

  .content-page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .content-page-actions .button {
    width: 100%;
  }

  .content-page-hero-card {
    min-height: 232px;
    padding: 28px;
    border-radius: 24px 24px 64px 24px;
  }

  .hero-card-mark {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
  }

  .content-page-hero-card strong {
    font-size: 26px;
  }

  .parent-guidance-card,
  .pricing-content-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .disorder-item summary {
    grid-template-columns: 46px minmax(0, 1fr) 40px;
    min-height: 76px;
    padding: 12px 13px;
    gap: 11px;
  }

  .disorder-number {
    width: 44px;
    height: 44px;
  }

  .disorder-title {
    font-size: 15px;
  }

  .disorder-toggle {
    width: 40px;
    height: 40px;
  }

  .disorder-toggle::before,
  .disorder-toggle::after {
    top: 19px;
    left: 11px;
  }

  .disorder-answer {
    padding: 20px 18px 26px;
  }

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

  .therapy-card-header {
    grid-template-columns: 50px minmax(0, 1fr);
    margin-bottom: 24px;
    gap: 14px;
  }

  .therapy-card-header > span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .therapy-card-header h2 {
    font-size: 25px;
  }

  .therapy-card-body {
    font-size: 16px;
  }

  .pricing-content-card > ul:first-of-type li {
    min-height: 0;
    padding: 22px 18px 22px 48px;
  }

  .pricing-content-card > ul:first-of-type li::before {
    top: 32px;
    left: 22px;
  }

  .content-page-booking-card {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    text-align: center;
  }

  .content-page-booking-logo {
    margin-inline: auto;
  }

  .content-page-booking-card .eyebrow {
    justify-content: center;
  }

  .content-page-booking-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

/* Accessible live speech-test popup */
.speech-test-modal[hidden] {
  display: none;
}

.speech-test-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.speech-test-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 46, 0.7);
  backdrop-filter: blur(6px);
}

.speech-test-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 820px);
  max-height: min(88vh, 820px);
  max-height: min(88dvh, 820px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 26px;
  box-shadow: 0 32px 90px rgba(0, 31, 50, 0.34);
}

.speech-test-dialog:focus {
  outline: none;
}

.speech-test-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 26px 20px;
  gap: 24px;
  background: linear-gradient(135deg, #f0f9fd, #fff9f2);
  border-bottom: 1px solid var(--border);
}

.speech-test-dialog-head .online-label {
  margin-bottom: 7px;
  color: var(--brand-deep);
}

.speech-test-dialog-head h2 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 26px;
}

.speech-test-dialog-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.speech-test-close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brand-deep);
  background: #fff;
  border: 1px solid #b8dce9;
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(7, 89, 133, 0.1);
}

.speech-test-close:hover {
  background: var(--surface-blue);
}

.speech-test-close svg {
  width: 21px;
  height: 21px;
}

.speech-test-dialog-body {
  min-height: 0;
  padding: 16px;
  background: #eef6f9;
}

.speech-test-dialog-body iframe {
  display: block;
  width: 100%;
  height: min(64vh, 590px);
  height: min(64dvh, 590px);
  background: #fff;
  border: 0;
  border-radius: 17px;
}

.speech-test-modal-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .test-card .online-copy {
    padding-right: 26px;
  }

  .speech-test-modal {
    align-items: end;
    padding: 0;
  }

  .speech-test-dialog {
    width: 100%;
    max-height: 94vh;
    max-height: 94dvh;
    border-radius: 24px 24px 0 0;
  }

  .speech-test-dialog-head {
    padding: 20px 18px 16px;
    gap: 14px;
  }

  .speech-test-dialog-head h2 {
    font-size: 21px;
  }

  .speech-test-dialog-body {
    padding: 10px;
  }

  .speech-test-dialog-body iframe {
    height: 68vh;
    height: 68dvh;
    border-radius: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
