:root {
  --green: #039142;
  --green-dark: #02662e;
  --green-deep: #014a23;
  --green-soft: #e6f4ec;
  --green-mist: #f3f9f5;
  --ink: #1f2a24;
  --text: #46524b;
  --muted: #6b776f;
  --line: #dce6df;
  --surface: #ffffff;
  --warm: #f7f8f5;
  --shadow-sm: 0 8px 24px rgb(20 73 44 / 8%);
  --shadow-lg: 0 26px 70px rgb(10 66 34 / 16%);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid #ffcc4d;
  outline-offset: 3px;
}

::selection {
  color: var(--surface);
  background: var(--green-dark);
}

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

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 76px 0 88px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  color: white;
  background: var(--green-deep);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--green);
}

.eyebrow-light {
  color: #d9f4e5;
}

.eyebrow-light > span {
  background: #9de6bd;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  color: white;
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgb(2 102 46 / 17%);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.button:hover {
  background: var(--green-deep);
  box-shadow: 0 12px 30px rgb(2 102 46 / 25%);
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: .82rem;
}

.button-light {
  border-color: white;
  color: var(--green-deep);
  background: white;
  box-shadow: 0 8px 24px rgb(0 0 0 / 12%);
}

.button-light:hover {
  color: var(--green-deep);
  background: #f1fff7;
}

.button-outline {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: transparent;
  box-shadow: none;
}

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

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 3px 0;
  border-bottom: 1px solid currentColor;
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.6;
  transition: gap var(--transition), color var(--transition);
}

.text-link:hover {
  gap: 14px;
  color: var(--green);
}

.text-link-light {
  color: white;
}

.text-link-light:hover {
  color: #d9f4e5;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

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

.heading-row {
  max-width: none;
}

.heading-row > div h2 {
  max-width: 640px;
}

.heading-row > p {
  max-width: 440px;
}

.large-text {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 550;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 97%);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgb(12 55 30 / 8%);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

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

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #334139;
  font-size: .84rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: 0;
  color: #334139;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .84rem;
  font-weight: 650;
}

.nav-dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.is-active::after,
.nav-dropdown-toggle[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
  transition: transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 1100;
  top: calc(100% + 16px);
  left: 50%;
  width: 270px;
  padding: 10px;
  border: 1px solid rgb(205 221 212 / 90%);
  border-radius: 17px;
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 22px 55px rgb(15 71 42 / 14%);
  transform: translateX(-50%);
}

.nav-dropdown-menu[hidden] {
  display: none;
}

.desktop-nav .nav-dropdown-menu a {
  display: flex;
  padding: 12px 13px;
  border-radius: 11px;
  color: var(--ink);
  font-size: .86rem;
  transition: color 260ms ease, background-color 260ms ease, transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.desktop-nav .nav-dropdown-menu a::after {
  content: none;
}

.desktop-nav .nav-dropdown-menu a:hover,
.desktop-nav .nav-dropdown-menu a.is-current {
  color: var(--green-dark);
  background: var(--green-mist);
  transform: translateX(3px);
}

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

.header-phone {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 42px;
  padding: 9px 11px;
  overflow: hidden;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(205 221 212 / 82%);
  border-radius: 14px;
  color: var(--green-dark);
  background: #f8fbf9;
  box-shadow: 0 5px 15px rgb(15 71 42 / 3%);
  font-size: .86rem;
  font-weight: 750;
  transform: translateY(0);
  transition:
    transform 520ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 520ms cubic-bezier(.16, 1, .3, 1),
    border-color 480ms cubic-bezier(.16, 1, .3, 1),
    background-color 480ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.header-phone::before {
  position: absolute;
  z-index: 0;
  background: linear-gradient(110deg, rgb(230 248 238 / 82%), rgb(249 253 251 / 96%));
  content: "";
  opacity: 0;
  transform: scale(.96);
  transition: opacity 480ms cubic-bezier(.16, 1, .3, 1), transform 520ms cubic-bezier(.16, 1, .3, 1);
  inset: 0;
}

.header-phone > svg,
.header-phone > span {
  position: relative;
  z-index: 1;
}

.header-phone > span {
  padding-bottom: 2px;
}

.header-phone > span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.5px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.header-phone:hover {
  border-color: rgb(3 145 66 / 42%);
  background: #fbfefc;
  box-shadow: 0 15px 32px rgb(10 66 34 / 12%), 0 5px 12px rgb(10 66 34 / 6%);
  transform: translateY(-4px);
}

.header-phone:hover::before,
.header-phone:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.header-phone:hover > span::after,
.header-phone:focus-visible > span::after {
  transform: scaleX(1);
}

.header-phone:active {
  transform: translateY(-1px) scale(.99);
}

.header-phone:focus-visible {
  outline: 2px solid transparent;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgb(16 185 129 / 15%), 0 16px 34px rgb(10 66 34 / 10%);
}

.header-phone svg {
  width: 19px;
  transition: color 480ms cubic-bezier(.16, 1, .3, 1), transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.header-phone:hover svg,
.header-phone:focus-visible svg {
  color: var(--green);
  transform: translateX(3px);
}

.header-phone span,
.header-cta {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  place-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--green-dark);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  padding: 22px;
  border-top: 1px solid var(--line);
  background: white;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 15px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 650;
}

.mobile-services-group {
  border-bottom: 1px solid var(--line);
}

.mobile-services-group > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 6px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 650;
  text-align: left;
}

.mobile-services-group > button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  transition: transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.mobile-services-group > button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-services-menu {
  padding: 0 0 10px 14px;
}

.mobile-services-menu[hidden] {
  display: none;
}

.mobile-nav .mobile-services-menu a {
  padding: 12px 10px;
  border-bottom: 0;
  border-left: 2px solid rgb(3 145 66 / 16%);
  color: var(--muted);
  font-size: .94rem;
}

.mobile-nav .mobile-services-menu a:hover,
.mobile-nav .mobile-services-menu a[aria-current="page"] {
  border-left-color: var(--green);
  color: var(--green-dark);
  background: rgb(230 244 236 / 52%);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: calc(var(--header-height) + 64px) 0 90px;
  color: white;
  background: var(--green-dark);
}

.hero::before {
  position: absolute;
  top: -340px;
  right: -180px;
  width: 760px;
  height: 760px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgb(255 255 255 / 2%), 0 0 0 180px rgb(255 255 255 / 2%);
  content: "";
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-position: 0 0;
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent 3%, black 55%, transparent 95%);
  mask-image: linear-gradient(90deg, transparent 3%, black 55%, transparent 95%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 54px;
}

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

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(2.6rem, 11.5vw, 4.8rem);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #dbefe3;
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.hero-trust {
  display: grid;
  margin: 42px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-trust li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 12px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.hero-trust li:first-child {
  padding-left: 0;
}

.hero-trust li:last-child {
  border: 0;
}

.hero-trust strong {
  color: white;
  font-size: 1.6rem;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.hero-trust span {
  overflow: hidden;
  margin-top: 5px;
  color: #bfe0cd;
  font-size: .7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.hero-logo-card {
  position: relative;
  padding: 28px 22px 20px;
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgb(255 255 255 / 97%);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.hero-logo-card::after {
  position: absolute;
  z-index: -1;
  inset: 18px -15px -18px 15px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius-lg);
  content: "";
}

.card-label {
  display: block;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-logo-card img {
  width: 100%;
  height: auto;
  margin: 24px 0 34px;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.card-footer > div {
  display: flex;
  flex-direction: column;
}

.card-footer span {
  color: var(--muted);
  font-size: .67rem;
}

.card-footer strong {
  color: var(--ink);
  font-size: .82rem;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.status-dot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.hero-badge {
  position: absolute;
  right: -4px;
  bottom: -30px;
  display: flex;
  max-width: 210px;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 12px;
  color: white;
  background: #014520;
  box-shadow: 0 16px 34px rgb(0 0 0 / 18%);
}

.hero-badge svg {
  width: 28px;
  flex: 0 0 auto;
  color: #8ee8b6;
}

.hero-badge span {
  font-size: .7rem;
  line-height: 1.35;
}

.hero-badge strong {
  display: block;
  font-size: .79rem;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 36px;
  background: white;
  clip-path: polygon(0 68%, 73% 68%, 75% 0, 100% 0, 100% 100%, 0 100%);
}

/* Service shortcuts */
.shortcut-grid {
  display: grid;
  gap: 16px;
}

.shortcut-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.shortcut-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--green-soft);
  content: "";
  transition: transform 300ms ease;
}

.shortcut-card:hover {
  border-color: #add5bd;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.shortcut-card:hover::after {
  transform: scale(1.25);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  place-items: center;
}

.icon-box svg {
  width: 25px;
}

.card-index {
  position: absolute;
  top: 30px;
  right: 27px;
  color: #98a39c;
  font-size: .7rem;
  font-weight: 800;
}

.shortcut-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.shortcut-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.65;
}

.card-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--green-dark);
  font-size: .79rem;
  font-weight: 750;
}

.card-link i {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid #b8d9c5;
  border-radius: 50%;
  font-style: normal;
  place-items: center;
}

/* About */
.about {
  background: var(--warm);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 54px;
}

.about-visual {
  width: 100%;
  max-width: 510px;
  margin-inline: auto;
}

.about-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #d8eee0, #eff8f2);
}

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

.about-photo .about-year {
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 999px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 5px 18px rgb(15 23 42 / 10%);
  backdrop-filter: blur(5px);
}

.about-panel::before,
.about-panel::after {
  position: absolute;
  border: 1px solid rgb(3 145 66 / 14%);
  border-radius: 50%;
  content: "";
}

.about-panel::before {
  top: -100px;
  right: -90px;
  width: 300px;
  height: 300px;
}

.about-panel::after {
  right: -10px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  background: rgb(3 145 66 / 5%);
}

.about-panel > svg {
  position: absolute;
  right: 7%;
  bottom: -4%;
  width: 88%;
  height: auto;
  color: var(--green-dark);
}

.line-art {
  fill: rgb(255 255 255 / 28%);
  stroke-width: 3;
}

.line-dot {
  fill: var(--green);
  stroke: none;
}

.about-year {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 28px;
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .18em;
}

.about-stamp {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: 112px;
  height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  color: white;
  background: var(--green-dark);
  box-shadow: 0 12px 35px rgb(2 102 46 / 25%);
  text-align: center;
}

.about-stamp strong {
  font-size: 2rem;
  line-height: 1;
}

.about-stamp span {
  max-width: 70px;
  margin-top: 5px;
  font-size: .64rem;
  line-height: 1.2;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 625px;
}

.about-copy > p strong {
  color: var(--ink);
  font-weight: 750;
}

.about-highlights {
  display: grid;
  max-width: 510px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 22px;
}

.about-highlight {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid rgb(3 145 66 / 13%);
  border-radius: 16px;
  color: var(--ink);
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 8px 24px rgb(15 71 42 / 5%);
}

.about-highlight svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--green);
  stroke-width: 1.8;
}

.about-highlight > strong:not(.about-highlight-number) {
  font-size: 1.05rem;
  line-height: 1.2;
}

.about-highlight-number {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.about-highlight span {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.05;
}

.credential-grid {
  display: grid;
  gap: 12px;
  margin: 22px 0 30px;
}

.credential-grid > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.credential-grid svg {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green);
  stroke-width: 2.5;
}

.credential-grid span {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}

.credential-grid strong {
  display: block;
  color: var(--ink);
  font-size: .9rem;
}

.about-cta-card {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: min(100%, 380px);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 19px 21px;
  overflow: hidden;
  border: 1px solid rgb(205 221 212 / 88%);
  border-radius: 22px;
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 7px 20px rgb(15 71 42 / 3%);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 780;
  line-height: 1.25;
  transform: translateY(0);
  transition:
    transform 520ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 520ms cubic-bezier(.16, 1, .3, 1),
    border-color 480ms cubic-bezier(.16, 1, .3, 1),
    background-color 480ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.about-cta-card::before {
  position: absolute;
  z-index: 0;
  background: linear-gradient(110deg, rgb(230 248 238 / 76%), rgb(249 253 251 / 92%));
  content: "";
  opacity: 0;
  transform: scale(.96);
  transition: opacity 480ms cubic-bezier(.16, 1, .3, 1), transform 520ms cubic-bezier(.16, 1, .3, 1);
  inset: 0;
}

.about-cta-card > span {
  position: relative;
  z-index: 1;
}

.about-cta-card:hover {
  z-index: 5;
  border-color: rgb(3 145 66 / 42%);
  box-shadow: 0 20px 46px rgb(10 66 34 / 12%), 0 7px 16px rgb(10 66 34 / 7%);
  transform: translateY(-5px);
}

.about-cta-card:hover::before,
.about-cta-card:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.about-cta-card:active {
  transform: translateY(-1px) scale(.99);
}

.about-cta-card:focus-visible {
  outline: 2px solid transparent;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgb(16 185 129 / 15%), 0 24px 58px rgb(10 66 34 / 9%);
}

.about-cta-label {
  position: relative;
  padding-bottom: 5px;
}

.about-cta-label::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.about-cta-card:hover .about-cta-label::after,
.about-cta-card:focus-visible .about-cta-label::after {
  transform: scaleX(1);
}

.about-cta-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green-dark);
  font-size: 1.1rem;
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1), background-color 480ms cubic-bezier(.16, 1, .3, 1), box-shadow 480ms cubic-bezier(.16, 1, .3, 1);
}

.about-cta-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-cta-card:hover .about-cta-arrow {
  background: var(--green);
  box-shadow: 0 7px 16px rgb(3 145 66 / 18%);
  transform: translateX(4px);
}

@media (max-width: 479px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* Medicine */
.occupational {
  background: white;
}

.medicine-layout {
  display: grid;
  gap: 20px;
}

.exam-card {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.exam-card-primary {
  color: #d8eee1;
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: var(--shadow-lg);
}

.exam-card h3 {
  margin: 12px 0 28px;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.exam-card-primary h3 {
  color: white;
}

.mini-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 20px;
  color: white;
  background: rgb(255 255 255 / 12%);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mini-label-green {
  color: var(--green-dark);
  background: var(--green-soft);
}

.check-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  color: white;
  font-size: .94rem;
  font-weight: 600;
}

.check-list li span {
  color: #91cfa9;
  font-size: .66rem;
  font-weight: 800;
}

.exam-grid {
  display: grid;
  gap: 0 18px;
}

.exam-grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.exam-grid svg {
  width: 26px;
  flex: 0 0 auto;
  color: var(--green);
}

.exam-grid span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.4;
}

.exam-grid strong {
  color: var(--ink);
  font-size: .85rem;
}

/* Safety */
.safety {
  position: relative;
  overflow: hidden;
  background: var(--green-mist);
}

.safety::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 500px;
  height: 500px;
  border: 90px solid rgb(3 145 66 / 3%);
  border-radius: 50%;
  content: "";
}

.safety-grid {
  position: relative;
  display: grid;
  gap: 48px;
}

.safety-copy h2 {
  margin-bottom: 25px;
}

.safety-copy .button {
  margin-top: 18px;
}

.document-grid {
  display: grid;
  gap: 12px;
}

.document-grid article {
  display: grid;
  min-height: 140px;
  padding: 22px;
  border: 1px solid #d6e8dc;
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 83%);
  grid-template-columns: 62px 1fr;
  gap: 18px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.document-grid article:hover {
  border-color: #aad0b8;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.document-grid article > span {
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: .72rem;
  font-weight: 850;
  place-items: center;
}

.document-grid h3 {
  margin: 2px 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.document-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
}

/* Orthopedics */
.orthopedics {
  padding-top: 0;
  background: var(--green-mist);
}

.ortho-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  color: #d8eee1;
  background: linear-gradient(120deg, #014a23, #02662e);
  gap: 28px;
}

.ortho-card::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 60px solid rgb(255 255 255 / 4%);
  border-radius: 50%;
  content: "";
}

.ortho-mark {
  display: grid;
  width: 110px;
  height: 110px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  align-content: center;
  justify-items: center;
}

.ortho-mark span,
.ortho-mark small {
  color: #a9d8bb;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.ortho-mark strong {
  color: white;
  font-size: 1.5rem;
  line-height: 1.2;
}

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

.ortho-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  color: white;
}

.ortho-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.doctor-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 11px;
  margin-top: 22px;
}

.doctor-line span,
.doctor-line small {
  color: #aed8bd;
  font-size: .75rem;
}

.doctor-line strong {
  color: white;
}

.ortho-card > .button {
  position: relative;
  z-index: 2;
  align-self: center;
}

/* Process */
.process {
  background: white;
}

.process-list {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  counter-reset: process;
  gap: 20px;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.process-list li > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #9ba59f;
  font-size: .66rem;
  font-weight: 850;
}

.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  place-items: center;
}

.process-icon svg {
  width: 23px;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

/* Differences */
.differences {
  position: relative;
  overflow: hidden;
  color: #cce5d6;
  background: var(--green-deep);
}

.differences::before {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgb(255 255 255 / 12%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 12%) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
}

.difference-intro,
.difference-grid {
  position: relative;
}

.difference-intro {
  display: grid;
  margin-bottom: 46px;
}

.difference-intro h2 {
  max-width: 680px;
  color: white;
}

.difference-intro > p:last-child {
  max-width: 470px;
}

.difference-grid {
  display: grid;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.difference-grid article {
  min-height: 230px;
  padding: 32px 8px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.difference-grid article > strong {
  display: block;
  min-height: 48px;
  color: #8de4b3;
  font-size: 2.4rem;
  letter-spacing: -.05em;
  line-height: 1;
}

.difference-grid svg {
  width: 38px;
  min-height: 48px;
  color: #8de4b3;
}

.difference-grid h3 {
  margin: 22px 0 12px;
  color: white;
  font-size: 1rem;
}

.difference-grid p {
  max-width: 240px;
  margin: 0;
  color: #b8d3c3;
  font-size: .8rem;
}

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

.faq-grid {
  display: grid;
  gap: 46px;
}

.faq-intro h2 {
  max-width: 520px;
  margin-bottom: 20px;
}

.faq-intro p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
}

.faq-intro .text-link {
  margin-top: 10px;
}

.faq-intro .faq-team-link {
  border-bottom: 0;
}

.faq-team-link-label {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.faq-team-link-label::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentcolor;
  clip-path: inset(0 100% 0 0);
  content: "";
  transition: clip-path 650ms cubic-bezier(.4, 0, .2, 1);
}

.faq-team-link:hover .faq-team-link-label::after,
.faq-team-link:focus-visible .faq-team-link-label::after {
  clip-path: inset(0 0 0 0);
}

.route-underline-link {
  border-bottom: 0;
}

.route-underline-label {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.route-underline-label::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentcolor;
  clip-path: inset(0 100% 0 0);
  content: "";
  transition: clip-path 650ms cubic-bezier(.4, 0, .2, 1);
}

.route-underline-link:hover .route-underline-label::after,
.route-underline-link:focus-visible .route-underline-label::after {
  clip-path: inset(0 0 0 0);
}

.accordion details {
  border-bottom: 1px solid #cfdad2;
}

.accordion details:first-child {
  border-top: 1px solid #cfdad2;
}

.accordion summary {
  position: relative;
  padding: 22px 50px 22px 0;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

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

.accordion summary span {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 25px;
  height: 25px;
  border: 1px solid #b6c9bc;
  border-radius: 50%;
  transform: translateY(-50%);
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--green-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

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

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

.accordion details[open] summary {
  color: var(--green-dark);
}

.accordion details p {
  max-width: 690px;
  padding: 0 45px 22px 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

/* Location */
.location {
  background: white;
}

.location-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-consent {
  position: relative;
  display: grid;
  min-height: 390px;
  background: #dce8e0;
  background-image: linear-gradient(30deg, rgb(255 255 255 / 50%) 12%, transparent 12.5%, transparent 87%, rgb(255 255 255 / 50%) 87.5%), linear-gradient(150deg, rgb(255 255 255 / 50%) 12%, transparent 12.5%, transparent 87%, rgb(255 255 255 / 50%) 87.5%), linear-gradient(30deg, rgb(255 255 255 / 50%) 12%, transparent 12.5%, transparent 87%, rgb(255 255 255 / 50%) 87.5%), linear-gradient(150deg, rgb(255 255 255 / 50%) 12%, transparent 12.5%, transparent 87%, rgb(255 255 255 / 50%) 87.5%);
  background-position: 0 0, 0 0, 48px 84px, 48px 84px;
  background-size: 96px 168px;
  place-items: center;
}

.map-consent::before {
  position: absolute;
  inset: 0;
  background: rgb(226 239 231 / 72%);
  content: "";
}

.map-consent > div {
  position: relative;
  z-index: 2;
  max-width: 330px;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.map-consent > div > svg {
  width: 32px;
  margin: 0 auto 14px;
  color: var(--green-dark);
}

.map-consent h3 {
  margin-bottom: 8px;
}

.map-consent p {
  color: var(--muted);
  font-size: .79rem;
}

.map-consent .button {
  min-height: 44px;
  font-size: .76rem;
}

.map-consent iframe {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
}

.map-consent iframe[hidden] {
  display: none;
}

.location-info {
  padding: 32px 26px;
}

.location-info address {
  display: flex;
  gap: 13px;
  margin: 25px 0;
}

.location-info address svg {
  width: 23px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green-dark);
}

.location-info address span {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.location-info address strong {
  display: block;
  color: var(--ink);
  font-size: .96rem;
}

.hours {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: .85rem;
}

.hours-title svg {
  width: 21px;
  color: var(--green-dark);
}

.hours dl,
.hours dd {
  margin: 0;
}

.hours dl > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: var(--muted);
  font-size: .8rem;
}

.hours dd {
  color: var(--ink);
  font-weight: 650;
  text-align: right;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: #d4eade;
  background: var(--green-dark);
}

.contact::before {
  position: absolute;
  top: -190px;
  left: -130px;
  width: 500px;
  height: 500px;
  border: 80px solid rgb(255 255 255 / 3%);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  gap: 46px;
}

.contact-copy h2 {
  margin-bottom: 22px;
  color: white;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.contact-direct > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 12px;
  background: rgb(255 255 255 / 5%);
  transition: background var(--transition), transform var(--transition);
}

.contact-direct > a:hover {
  background: rgb(255 255 255 / 10%);
  transform: translateX(3px);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: rgb(255 255 255 / 10%);
  place-items: center;
}

.contact-icon svg {
  width: 21px;
}

.contact-whatsapp-icon svg {
  fill: currentcolor;
  stroke: none;
}

.contact-direct > a > span:last-child {
  display: flex;
  flex-direction: column;
  color: #afd4bd;
  font-size: .7rem;
}

.contact-direct strong {
  color: white;
  font-size: .91rem;
}

.contact-form {
  padding: 26px 20px;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: var(--radius-lg);
  color: var(--text);
  background: white;
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h3 {
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.field-row {
  display: grid;
  gap: 15px;
}

.field-row-company-service {
  align-items: start;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
}

.field > span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 500;
}

.field > .field-title {
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-title small {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid #cdd9d0;
  border-radius: 7px;
  outline: 0;
  background: white;
  font-size: .83rem;
  font-weight: 450;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
  height: 45px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(3 145 66 / 12%);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b42318;
}

.field-error,
.form-error {
  min-height: 17px;
  color: #b42318;
  font-size: .68rem;
  font-weight: 600;
}

.field-error:empty {
  min-height: 0;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 3px 0 18px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--green-dark);
}

.consent a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: underline;
}

.form-error {
  display: block;
  margin: -10px 0 12px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .66rem;
  text-align: center;
}

.form-note svg {
  width: 15px;
  color: var(--green-dark);
}

/* Footer */
.site-footer {
  color: #c2d4c9;
  background: #10261a;
}

.footer-main {
  display: grid;
  padding-top: 60px;
  padding-bottom: 42px;
  gap: 38px;
}

.brand-footer {
  width: 185px;
  height: 62px;
  padding: 0;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}

.brand-footer img {
  width: 176px;
  max-width: none;
  height: 117px;
  transform: translate(2px, -24px);
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 22px;
  color: #9db5a7;
  font-size: .8rem;
}

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

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
  color: white;
  place-items: center;
  transition: background var(--transition), border-color var(--transition);
}

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

.social-links svg {
  width: 17px;
}

.social-links .fill-dot {
  fill: currentColor;
  stroke: none;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-main h2 {
  margin-bottom: 11px;
  color: white;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact address {
  color: #9db5a7;
  font-size: .78rem;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-contact address {
  margin: 5px 0;
  line-height: 1.65;
}

.footer-contact .footer-whatsapp {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 6px;
  padding: 10px 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: white;
}

.legal-identity {
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgb(255 255 255 / 11%);
}

.legal-identity p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin: 0;
  color: #839a8b;
  font-size: .65rem;
}

.legal-identity strong {
  color: #b9cec0;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: #0b1c12;
}

.footer-bottom > div {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 9px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #789080;
  font-size: .63rem;
}

.footer-bottom > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

/* WhatsApp floating action */
.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 30px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 10px 30px rgb(0 0 0 / 24%), 0 0 0 6px rgb(37 211 102 / 13%);
  transition: transform var(--transition), background var(--transition);
}

.floating-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp span {
  display: none;
}

/* Legal pages */
.legal-page {
  padding-top: var(--header-height);
  background: var(--warm);
}

.legal-hero {
  padding: 72px 0 60px;
  color: #d2e9db;
  background: var(--green-dark);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: white;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 0;
}

.legal-layout {
  display: grid;
  padding-top: 56px;
  padding-bottom: 80px;
  gap: 42px;
}

.legal-toc {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.legal-toc h2 {
  margin-bottom: 14px;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-toc a {
  padding: 5px 0;
  color: var(--muted);
  font-size: .75rem;
}

.legal-toc a:hover {
  color: var(--green-dark);
}

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

.legal-notice {
  margin-bottom: 32px;
  padding: 17px;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: .8rem;
}

.legal-content section {
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.legal-content section:first-of-type {
  padding-top: 0;
}

.legal-content section:last-child {
  border: 0;
}

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

.legal-content h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #566159;
  font-size: .88rem;
  line-height: 1.75;
}

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

.legal-content a {
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 13px;
  border: 1px solid var(--line);
  font-size: .76rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  background: var(--green-mist);
}

.legal-update {
  display: inline-flex;
  margin-top: 20px;
  padding: 6px 10px;
  border-radius: 20px;
  color: var(--muted);
  background: #edf1ee;
  font-size: .68rem;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.js .reveal-delay-1,
.js .reveal-delay {
  transition-delay: 80ms;
}

.js .reveal-delay-2 {
  transition-delay: 160ms;
}

.js .reveal-delay-3 {
  transition-delay: 240ms;
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .about-cta-card {
    transition: transform 520ms cubic-bezier(.16, 1, .3, 1), box-shadow 520ms cubic-bezier(.16, 1, .3, 1), border-color 480ms cubic-bezier(.16, 1, .3, 1) !important;
  }

  .about-cta-card::before,
  .about-cta-label::after,
  .about-cta-arrow {
    transition-duration: 520ms !important;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1) !important;
  }

  .faq-team-link-label::after {
    transition: clip-path 650ms cubic-bezier(.4, 0, .2, 1) !important;
  }

  .route-underline-label::after {
    transition: clip-path 650ms cubic-bezier(.4, 0, .2, 1) !important;
  }
}

/* 375px+ is the mobile-first baseline. */
@media (min-width: 560px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .hero-logo-card {
    padding: 36px 34px 24px;
  }

  .shortcut-grid,
  .process-list,
  .difference-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .exam-grid,
  .field-row,
  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-form {
    padding: 34px;
  }

  .footer-bottom > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Tablet: 768px */
@media (min-width: 768px) {
  :root {
    --header-height: 84px;
  }

  .section {
    padding: 108px 0;
  }

  .section-tight {
    padding: 88px 0 108px;
  }

  .brand {
    width: 185px;
  }

  .header-phone span {
    display: inline;
  }

  .hero {
    padding-top: calc(var(--header-height) + 86px);
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 8vw, 5rem);
  }

  .hero-trust span {
    font-size: .76rem;
  }

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

  .heading-row > p {
    margin-bottom: 5px !important;
  }

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

  .about-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .about-panel {
    min-height: 520px;
  }

  .medicine-layout {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  }

  .exam-card {
    padding: 38px;
  }

  .ortho-card {
    grid-template-columns: 120px minmax(0, 1fr);
    padding: 48px;
    align-items: center;
  }

  .ortho-card > .button {
    grid-column: 2;
    justify-self: start;
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .process-list li {
    border-radius: 0;
  }

  .process-list li:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
  }

  .process-list li:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }

  .process-list li + li {
    border-left: 0;
  }

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

  .difference-grid article {
    padding: 38px 24px;
    border-right: 1px solid rgb(255 255 255 / 18%);
    border-bottom: 0;
  }

  .difference-grid article:last-child {
    border-right: 0;
  }

  .location-card {
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, .72fr);
  }

  .map-consent {
    min-height: 520px;
  }

  .location-info {
    padding: 45px 36px;
  }

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

  .legal-layout {
    grid-template-columns: 215px minmax(0, 1fr);
  }

  .legal-toc {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .legal-content {
    padding: 46px;
  }
}

/* Desktop: 1024px */
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 70px;
  }

  .about-panel {
    min-height: 740px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 5.6vw, 5.15rem);
  }

  .hero-logo-card {
    transform: rotate(2.3deg);
  }

  .safety-grid {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 75px;
  }

  .ortho-card {
    grid-template-columns: 125px minmax(0, 1fr) auto;
    gap: 42px;
  }

  .ortho-card > .button {
    grid-column: auto;
  }

  .difference-intro {
    grid-template-columns: 1fr .65fr;
    align-items: end;
  }

  .difference-intro .eyebrow {
    grid-column: 1 / -1;
  }

  .faq-grid {
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 50px);
    align-self: start;
  }

  .contact-grid {
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 80px;
  }

}

/* Wide desktop: 1440px */
@media (min-width: 1440px) {
  :root {
    --container: 1280px;
    --header-height: 88px;
  }

  .section {
    padding: 125px 0;
  }

  .section-tight {
    padding: 102px 0 125px;
  }

  .desktop-nav {
    gap: 35px;
  }

  .hero {
    min-height: 820px;
    padding-top: calc(var(--header-height) + 105px);
  }

  .hero-grid {
    gap: 95px;
  }

  .hero-visual {
    max-width: 570px;
  }

  .shortcut-card {
    min-height: 315px;
    padding: 34px;
  }

  .about-grid,
  .medicine-layout {
    gap: 85px;
  }

  .about-grid {
    gap: 78px;
  }

  .contact-form {
    padding: 42px;
  }
}

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

  .brand {
    width: 130px;
  }

  .hero-trust li {
    padding-inline: 8px;
  }

  .hero-trust strong {
    font-size: 1.3rem;
  }

  .hero-trust span {
    font-size: .61rem;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 24px;
  }
}
