:root {
  --green-950: oklch(0.20 0.055 155);
  --green-900: oklch(0.29 0.09 154);
  --green-800: oklch(0.36 0.13 151);
  --green-700: oklch(0.43 0.155 148);
  --green-600: oklch(0.48 0.17 145);
  --green-500: oklch(0.58 0.185 143);
  --green-400: oklch(0.67 0.16 143);
  --teal-300: oklch(0.79 0.095 183);
  --surface: oklch(0.97 0.008 155);
  --surface-strong: oklch(0.935 0.014 155);
  --ink: oklch(0.22 0.028 158);
  --ink-soft: oklch(0.42 0.03 158);
  --line: oklch(0.87 0.018 155);
  --white: oklch(1 0 0);
  --shadow: 0 18px 70px oklch(0.16 0.035 155 / 0.13);
  --shadow-soft: 0 12px 40px oklch(0.16 0.035 155 / 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1200px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Atkinson Hyperlegible Next", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Chivo", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--teal-300);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--green-700);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 152px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--teal-300);
}

.section-heading h2,
.journey h2,
.about h2,
.location h2,
.faq h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5.2vw, 4.5rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 60ch;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.19rem);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.button svg,
.inline-cta svg,
.header-portal svg,
.final-cta svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 10px 30px oklch(0.38 0.15 146 / 0.32);
}

.button-primary:hover {
  background: var(--green-500);
  box-shadow: 0 14px 36px oklch(0.38 0.15 146 / 0.42);
}

.button-large {
  min-height: 58px;
  padding-inline: 26px;
  font-size: 1rem;
}

.button-ghost {
  color: var(--white);
  border-color: oklch(1 0 0 / 0.48);
  background: oklch(0.2 0.05 155 / 0.28);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: oklch(0.2 0.05 155 / 0.52);
}

.button-dark {
  color: var(--white);
  background: var(--green-950);
}

.button-dark:hover {
  background: var(--green-800);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.button-light:hover {
  background: var(--teal-300);
}

.button-outline-dark {
  color: var(--green-950);
  border-color: var(--line);
}

.button-outline-dark:hover {
  border-color: var(--green-600);
  background: var(--surface);
}

/* Header */
.site-header {
  position: absolute;
  z-index: 30;
  top: 22px;
  width: 100%;
  transition: transform 350ms var(--ease-out), top 350ms var(--ease-out);
}

.site-header.is-sticky {
  position: fixed;
  top: 12px;
  animation: header-drop 400ms var(--ease-out) both;
}

.header-shell {
  display: flex;
  width: min(calc(100% - 40px), 1320px);
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  padding: 10px 12px 10px 24px;
  border: 1px solid oklch(1 0 0 / 0.65);
  border-radius: 24px;
  background: oklch(1 0 0 / 0.95);
  box-shadow: 0 10px 38px oklch(0.15 0.04 155 / 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  width: 208px;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-inline: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--green-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-portal {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease-out);
}

.header-results {
  color: var(--white);
  background: var(--green-900);
}

.header-results:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

.header-doctor {
  color: var(--green-950);
  background: var(--teal-300);
}

.header-doctor:hover {
  color: var(--white);
  background: oklch(0.48 0.11 205);
  transform: translateY(-1px);
}

.menu-trigger {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--green-950);
}

.mobile-menu {
  width: min(calc(100% - 24px), 480px);
  max-height: calc(100dvh - 24px);
  margin: 12px 12px 12px auto;
  padding: 0;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu[open] {
  animation: menu-in 320ms var(--ease-out) both;
}

.mobile-menu::backdrop {
  background: oklch(0.13 0.04 155 / 0.66);
  backdrop-filter: blur(4px);
}

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

.mobile-menu-head p {
  margin: 0;
  font-family: "Chivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.menu-close {
  display: grid;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  place-items: center;
}

.menu-close svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
}

.mobile-menu nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Chivo", sans-serif;
  font-size: clamp(1.3rem, 7vw, 2rem);
  font-weight: 650;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  padding: 8px 24px 28px;
}

.text-link {
  padding: 12px;
  color: var(--green-700);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: min(920px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, oklch(0.14 0.05 157 / 0.98) 0%, oklch(0.18 0.055 155 / 0.86) 38%, oklch(0.17 0.04 155 / 0.2) 70%, transparent 100%),
    linear-gradient(0deg, oklch(0.13 0.04 155 / 0.5), transparent 50%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid oklch(0.82 0.12 166 / 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  right: -160px;
  bottom: -260px;
  width: 720px;
  height: 720px;
}

.hero-orbit-two {
  right: 80px;
  bottom: -390px;
  width: 780px;
  height: 780px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 120px;
}

.hero-kicker {
  display: flex;
  max-width: 650px;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: oklch(0.93 0.025 160);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-kicker span {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--teal-300);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.4vw, 6rem);
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: oklch(0.94 0.014 160);
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
  line-height: 1.55;
}

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

.hero-note {
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 5px;
  color: oklch(0.88 0.025 160);
  font-size: 0.9rem;
}

[data-reveal] {
  animation: hero-reveal 800ms var(--ease-out) both;
}

[data-reveal]:nth-of-type(2),
.hero h1[data-reveal] {
  animation-delay: 100ms;
}

.hero-lead[data-reveal] {
  animation-delay: 180ms;
}

.hero-actions[data-reveal] {
  animation-delay: 260ms;
}

.hero-note[data-reveal] {
  animation-delay: 340ms;
}

/* Access dock */
.access-dock {
  position: relative;
  z-index: 4;
  margin-top: -72px;
}

.access-dock-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.access-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px;
  color: var(--white);
  background: var(--green-900);
}

.access-intro span {
  margin-bottom: 2px;
  color: var(--teal-300);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-intro strong {
  font-family: "Chivo", sans-serif;
  font-size: 1.25rem;
}

.access-dock-inner > a {
  display: grid;
  min-height: 128px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  transition: background 220ms ease;
}

.access-dock-inner > a:last-child {
  border-right: 0;
}

.access-dock-inner > a:hover {
  background: var(--surface);
}

.access-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green-700);
  background: oklch(0.92 0.045 154);
  place-items: center;
}

.access-icon svg,
.access-arrow {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.access-dock small,
.access-dock strong {
  display: block;
}

.access-dock small {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.access-dock strong {
  font-size: 1rem;
}

.access-arrow {
  width: 19px;
  color: var(--green-700);
  transition: transform 220ms var(--ease-out);
}

.access-dock a:hover .access-arrow {
  transform: translateX(4px);
}

/* Toxicology */
.toxicology {
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 112px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, oklch(0.75 0.14 173 / 0.36), transparent 28%),
    var(--green-700);
}

.toxicology-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(48px, 9vw, 132px);
}

.toxicology-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 5.75rem);
}

.toxicology-copy {
  padding-block: 26px;
  border-block: 1px solid oklch(1 0 0 / 0.2);
}

.toxicology-copy p {
  max-width: 46ch;
  margin-bottom: 10px;
  color: oklch(0.94 0.025 164);
}

.toxicology-copy p:first-child {
  color: var(--white);
  font-family: "Chivo", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.toxicology-copy .button {
  margin-top: 20px;
}

/* Services */
.services {
  padding-top: clamp(130px, 13vw, 200px);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "heading visual"
    "list visual";
  gap: 56px 84px;
  align-items: start;
}

.services-heading {
  grid-area: heading;
}

.services-heading h2 {
  max-width: 590px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green-600);
  color: var(--green-800);
  font-weight: 700;
}

.inline-cta svg {
  transition: transform 220ms var(--ease-out);
}

.inline-cta:hover svg {
  transform: translateX(5px);
}

.services-visual {
  position: sticky;
  top: 120px;
  grid-area: visual;
  min-width: 0;
}

.services-visual picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 10px var(--radius-lg);
  background: var(--surface);
}

.services-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.services-visual:hover img {
  transform: scale(1.025);
}

.visual-caption {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 6px 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.visual-caption span {
  color: var(--green-700);
  font-weight: 700;
}

.visual-caption p {
  margin: 0;
}

.service-list {
  grid-area: list;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.service-list article > span {
  padding-top: 5px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-list h3 {
  margin-bottom: 9px;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.service-list p {
  max-width: 54ch;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Journey */
.journey {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, oklch(0.47 0.14 158 / 0.55), transparent 30%),
    var(--green-950);
}

.journey-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 80px;
}

.journey-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.journey-head > p {
  max-width: 42ch;
  margin-bottom: 12px;
  color: oklch(0.82 0.032 164);
}

.care-line {
  position: absolute;
  top: 57%;
  left: 50%;
  width: min(1180px, calc(100% - 60px));
  height: 110px;
  transform: translate(-50%, -50%);
}

.care-line svg {
  width: 100%;
  height: 100%;
}

.care-line path {
  fill: none;
  stroke: oklch(0.74 0.13 174 / 0.46);
  stroke-dasharray: 9 9;
  stroke-linecap: round;
  stroke-width: 2;
}

.journey-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 84px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  min-height: 270px;
  padding: 30px;
  border: 1px solid oklch(1 0 0 / 0.13);
  border-radius: var(--radius-md);
  background: oklch(0.32 0.08 155 / 0.44);
  backdrop-filter: blur(6px);
}

.journey-steps li:nth-child(2) {
  transform: translateY(46px);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--teal-300);
  font-family: "Chivo", sans-serif;
  font-weight: 800;
  place-items: center;
}

.journey-steps h3 {
  margin-bottom: 14px;
  font-size: 1.48rem;
}

.journey-steps p {
  margin: 0;
  color: oklch(0.84 0.024 164);
  line-height: 1.55;
}

/* Plans */
.plans {
  background: var(--surface);
}

.plans-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.plans-panel {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.plan-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-logos li {
  display: flex;
  min-width: 0;
  min-height: 178px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.plan-logo-frame {
  display: grid;
  width: 100%;
  height: 84px;
  place-items: center;
}

.plan-logo-frame img {
  width: auto;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.plan-logo-unimed img {
  transform: scale(1.18);
}

.plan-logo-amil img {
  filter: invert(17%) sepia(98%) saturate(6915%) hue-rotate(258deg) brightness(94%) contrast(116%);
}

.plan-logo-apas img {
  max-height: 92px;
}

.plan-logos li > span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.plans-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.plans-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plans-contact h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.plans-contact p {
  margin: 0;
  color: var(--ink-soft);
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.about-media picture {
  display: block;
  overflow: hidden;
  border-radius: 10px var(--radius-xl) var(--radius-xl) var(--radius-xl);
  background: var(--surface);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.about-media > p {
  max-width: 58ch;
  margin: 14px 8px 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.about-copy h2 {
  max-width: 640px;
}

.about-lead {
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.about-copy > p:not(.eyebrow, .about-lead) {
  max-width: 57ch;
  color: var(--ink-soft);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts div {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--line);
}

.about-facts div + div {
  padding-left: 18px;
}

.about-facts div:last-child {
  border-right: 0;
}

.about-facts dt {
  margin-bottom: 5px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

/* Location */
.location {
  padding-top: 0;
}

.location-shell {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1fr 0.9fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--green-900);
}

.location-copy {
  position: relative;
  z-index: 2;
  padding: clamp(46px, 7vw, 90px);
}

.location h2 {
  margin-bottom: 26px;
}

.location address {
  margin-bottom: 34px;
  color: oklch(0.9 0.025 160);
  font-size: 1.08rem;
  font-style: normal;
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  margin-bottom: 32px;
}

.contact-lines a:last-child {
  grid-column: 1 / -1;
}

.contact-lines small,
.contact-lines strong {
  display: block;
}

.contact-lines small {
  color: var(--teal-300);
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-lines strong {
  font-size: 1.02rem;
}

.contact-lines a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hours-note {
  display: flex;
  max-width: 510px;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 30px;
  padding: 17px 18px;
  border: 1px solid oklch(1 0 0 / 0.13);
  border-radius: var(--radius-sm);
  background: oklch(0.19 0.05 155 / 0.38);
}

.hours-note svg {
  width: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hours-note p,
.hours-note strong,
.hours-note span {
  display: block;
  margin: 0;
}

.hours-details {
  display: grid;
  gap: 12px;
}

.hours-note strong {
  font-size: 0.93rem;
}

.hours-note span {
  color: oklch(0.83 0.024 160);
  font-size: 0.86rem;
}

.location-map {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background: oklch(0.89 0.035 175);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
}

/* FAQ */
.faq {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  font-family: "Chivo", sans-serif;
  font-size: 1.07rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.faq summary span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--green-800);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq details p {
  max-width: 65ch;
  margin: -2px 50px 24px 0;
  color: var(--ink-soft);
}

/* Final CTA and footer */
.final-cta {
  padding-block: clamp(70px, 8vw, 110px);
  color: var(--white);
  background: var(--green-950);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.final-cta p {
  margin-bottom: 10px;
  color: var(--teal-300);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.9rem);
}

.site-footer {
  padding: 78px 0 0;
  color: oklch(0.83 0.018 160);
  background: oklch(0.155 0.032 157);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 64px;
}

.brand-footer {
  width: 260px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand > p {
  max-width: 35ch;
  margin: 24px 0;
}

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

.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: 50%;
  place-items: center;
  transition: color 200ms ease, background 200ms ease;
}

.social-links a:hover {
  color: var(--green-950);
  background: var(--teal-300);
}

.social-links svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.footer-col h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Chivo", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-col a {
  color: oklch(0.83 0.018 160);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--teal-300);
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-cnpj {
  margin: 6px 0 0;
  color: oklch(0.72 0.02 160);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.site-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.site-credit strong {
  color: var(--white);
  font-weight: 700;
}

.site-credit:hover strong {
  color: var(--teal-300);
}

.site-credit img {
  width: auto;
  height: 25px;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  bottom: 26px;
  left: 26px;
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 9px;
  border: 1px solid oklch(1 0 0 / 0.45);
  border-radius: 999px;
  color: var(--white);
  background: #1fa855;
  box-shadow: 0 14px 36px oklch(0.28 0.12 151 / 0.32);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 200ms ease, transform 200ms var(--ease-out), box-shadow 200ms ease;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 1px solid oklch(0.7 0.18 145 / 0.4);
  border-radius: inherit;
  content: "";
}

.whatsapp-float:hover {
  background: #168b45;
  box-shadow: 0 18px 42px oklch(0.28 0.12 151 / 0.4);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: currentColor;
}

/* Privacy notice */
.legal-page {
  background: var(--surface);
}

.legal-header {
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.legal-hero {
  padding-block: clamp(72px, 9vw, 125px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, oklch(0.51 0.14 160 / 0.45), transparent 30%),
    var(--green-950);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.legal-hero > .container > p:last-child {
  max-width: 62ch;
  margin: 0;
  color: oklch(0.86 0.02 160);
  font-size: 1.12rem;
}

.legal-content {
  max-width: 850px;
  padding-block: clamp(68px, 9vw, 120px);
}

.legal-content section {
  margin-bottom: 44px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.legal-content p {
  max-width: 72ch;
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.legal-content aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-800);
  font-family: "Chivo", sans-serif;
}

.legal-content aside p {
  margin: 0;
}

.legal-footer {
  padding-block: 28px;
  color: oklch(0.84 0.02 160);
  background: var(--green-950);
}

.legal-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer p {
  margin: 0;
}

.legal-footer a {
  color: var(--teal-300);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes header-drop {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes menu-in {
  from { opacity: 0; transform: translateX(40px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes hero-reveal {
  from { opacity: 0; filter: blur(5px); transform: translateY(22px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

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

  .desktop-nav a {
    font-size: 0.84rem;
  }

  .brand {
    width: 168px;
  }

  .services-layout {
    gap: 50px;
  }

  .plans-layout {
    gap: 60px;
  }
}

@media (max-width: 1120px) {
  .toxicology-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .toxicology-heading h2,
  .toxicology-copy {
    max-width: 620px;
  }

  .desktop-nav {
    display: none;
  }

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

  .menu-trigger {
    display: block;
  }

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

  .access-intro {
    grid-column: 1 / -1;
    min-height: 86px;
  }

  .services-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "heading heading"
      "list visual";
  }

  .journey-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plans-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 56px;
  }

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

  .location-map,
  .location-map iframe {
    min-height: 400px;
  }

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 0;
    font-size: 16px;
  }

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

  .section {
    padding-block: 82px;
  }

  .site-header,
  .site-header.is-sticky {
    top: 10px;
  }

  .header-shell {
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 7px 7px 7px 16px;
    border-radius: 20px;
  }

  .brand {
    width: 155px;
  }

  .header-portal {
    display: none;
  }

  .menu-trigger {
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, oklch(0.13 0.05 157 / 0.98) 0%, oklch(0.15 0.05 156 / 0.84) 47%, oklch(0.15 0.04 156 / 0.3) 100%),
      linear-gradient(90deg, oklch(0.14 0.05 157 / 0.62), transparent);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 54px;
  }

  .hero-kicker {
    align-items: flex-start;
    font-size: 0.73rem;
    line-height: 1.45;
  }

  .hero-kicker span {
    margin-top: 7px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 1.05rem;
  }

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

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

  .hero-note {
    display: block;
    font-size: 0.82rem;
  }

  .hero-orbit-one {
    right: -370px;
  }

  .access-dock {
    margin-top: 0;
    background: var(--surface);
  }

  .access-dock-inner {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 0;
    box-shadow: none;
  }

  .access-intro {
    min-height: 95px;
    padding: 24px 16px;
  }

  .access-dock-inner > a {
    min-height: 104px;
    padding: 20px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services {
    padding-top: 88px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "list";
    gap: 42px;
  }

  .services-visual {
    position: static;
  }

  .services-visual img {
    aspect-ratio: 4 / 3.7;
  }

  .journey-head {
    margin-bottom: 50px;
  }

  .care-line {
    display: none;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .journey-steps li,
  .journey-steps li:nth-child(2) {
    min-height: 0;
    transform: none;
  }

  .step-number {
    margin-bottom: 24px;
  }

  .plans-layout {
    gap: 38px;
  }

  .plans-panel {
    padding: 24px;
  }

  .plan-logos {
    grid-template-columns: 1fr;
  }

  .plan-logos li {
    min-height: 112px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    justify-content: stretch;
    padding: 14px 18px;
  }

  .plan-logo-frame {
    height: 78px;
  }

  .plans-contact {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-media img {
    aspect-ratio: 4 / 3.7;
  }

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

  .about-facts div,
  .about-facts div + div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-facts div:last-child {
    border-bottom: 0;
  }

  .location {
    padding-top: 0;
  }

  .location .container {
    width: 100%;
  }

  .location-shell {
    border-radius: 0;
  }

  .location-copy {
    padding: 72px 16px;
  }

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

  .contact-lines a:last-child {
    grid-column: auto;
  }

  .contact-lines strong {
    overflow-wrap: anywhere;
  }

  .location-map,
  .location-map iframe {
    min-height: 320px;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq summary {
    font-size: 1rem;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .site-credit {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 18px;
    left: 14px;
    width: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 8px;
  }

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

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

  .legal-header .brand {
    width: 145px;
  }

  .legal-header .button {
    min-height: 46px;
    padding-inline: 14px;
  }

  .legal-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .hero {
    min-height: 674px;
  }

  .hero-content {
    padding-top: 108px;
    padding-bottom: 40px;
  }

  .section-heading h2,
  .journey h2,
  .about h2,
  .location h2,
  .faq h2 {
    font-size: 2.35rem;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}

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

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

  .js .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
