:root {
  --pine: #173d3a;
  --pine-dark: #102b29;
  --teal: #08776d;
  --teal-dark: #075f58;
  --coral: #e76f51;
  --coral-dark: #c9553a;
  --ink: #17211f;
  --muted: #60706c;
  --line: #d9e2df;
  --soft: #f3f7f5;
  --warm: #f7f2eb;
  --white: #ffffff;
  --focus: #ffb000;
  --shadow-sm: 0 10px 30px rgba(23, 33, 31, 0.08);
  --shadow-lg: 0 24px 70px rgba(16, 43, 41, 0.2);
  --radius: 8px;
  --header-height: 72px;
  --container: 1180px;
  --font-sans: "Manrope", "Noto Sans Ethiopic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

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

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

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 44px;
}

h2 {
  margin-bottom: 20px;
  font-size: 38px;
}

h3 {
  line-height: 1.25;
  letter-spacing: 0;
}

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

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow .icon {
  width: 17px;
  height: 17px;
}

.eyebrow-light {
  color: #bfe9e2;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.button-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--ink);
}

.button-coral {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.button-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.button-on-image,
.button-on-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
}

.button-on-image:hover,
.button-on-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
}

.icon-button {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(217, 226, 223, 0.9);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(23, 33, 31, 0.07);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  flex: 0 0 auto;
  display: block;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--pine);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.menu-toggle .close-icon {
  display: none;
}

.nav-open .menu-toggle .menu-icon {
  display: none;
}

.nav-open .menu-toggle .close-icon {
  display: block;
}

.primary-navigation {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 20px 16px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-open .primary-navigation {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-navigation > a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.primary-navigation > a[aria-current="page"] {
  color: var(--teal);
}

.nav-book-button {
  margin-top: 12px;
}

.nav-mobile-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.nav-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  border-radius: 8px;
  background: var(--soft, #edf8f8);
  color: var(--pine, #153f43);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-action-btn .icon {
  width: 16px;
  height: 16px;
}

.nav-action-btn:hover,
.nav-action-btn:active {
  background: var(--teal);
  color: #fff;
}

.nav-action-tiktok:hover,
.nav-action-tiktok:active {
  background: #010101;
  color: #fff;
}

@media (min-width: 1024px) {
  .nav-mobile-actions {
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: 560px;
  height: calc(100svh - 210px);
  max-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--pine-dark);
}

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

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

.hero-shade {
  background: rgba(10, 31, 29, 0.66);
}

.hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding-block: 56px 30px;
}

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

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-assurances {
  display: none;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.hero-assurances .icon {
  width: 16px;
  height: 16px;
  color: #9fe2d8;
}

.hero-planner {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: var(--white);
  background: rgba(16, 43, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  text-align: left;
  backdrop-filter: blur(12px);
}

.planner-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--pine-dark);
  background: #bfe9e2;
  border-radius: 6px;
}

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

.hero-planner small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
}

.hero-planner strong {
  font-size: 14px;
}

.planner-arrow {
  transition: transform 180ms ease;
}

.hero-planner:hover .planner-arrow {
  transform: translateX(3px);
}

.quick-actions {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-actions-inner {
  display: grid;
}

.quick-action {
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.quick-action:last-child {
  border-bottom: 0;
}

.quick-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--soft);
  border-radius: 6px;
}

.quick-action small,
.quick-action strong {
  display: block;
}

.quick-action small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.quick-action strong {
  margin-top: 2px;
  font-size: 14px;
}

.action-arrow {
  color: var(--muted);
  transition: transform 180ms ease;
}

.quick-action:hover .action-arrow {
  color: var(--teal);
  transform: translateX(3px);
}

.section {
  padding-block: 78px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 640px;
  margin-bottom: 0;
}

.section-heading > p,
.section-intro {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.services-section {
  background: var(--white);
}

.service-filter {
  display: flex;
  gap: 6px;
  margin: 0 -16px 24px;
  padding: 0 16px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-filter::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 8px 15px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

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

.service-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.service-card[hidden] {
  display: none;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-number {
  color: #879692;
  font-size: 12px;
  font-weight: 800;
}

.service-symbol {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--soft);
  border-radius: 6px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-top: auto;
  color: var(--teal);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 800;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(3px);
}

.text-link-large {
  margin-top: 12px;
  font-size: 14px;
  text-align: left;
}

.care-path-section {
  background: var(--soft);
}

.media-layout,
.precision-layout {
  display: grid;
  gap: 44px;
}

.care-media,
.precision-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.care-media {
  aspect-ratio: 4 / 5;
}

.care-media img,
.precision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-media img {
  object-position: center;
}

.care-media figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--white);
  background: rgba(16, 43, 41, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.care-media figcaption .icon {
  color: #bfe9e2;
}

.care-media figcaption strong,
.care-media figcaption span {
  display: block;
}

.care-copy h2 {
  max-width: 620px;
}

.care-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 32px 0;
  list-style: none;
  counter-reset: none;
}

.care-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.care-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.care-steps li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pine);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.care-steps h3 {
  margin: 1px 0 5px;
  font-size: 16px;
}

.care-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.precision-section {
  background: var(--white);
}

.precision-layout {
  align-items: center;
}

.precision-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.feature-list li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #e4f3f0;
  border-radius: 6px;
}

.feature-list .icon {
  width: 16px;
  height: 16px;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.precision-media {
  aspect-ratio: 4 / 3;
  background: var(--warm);
}

.precision-media img {
  object-position: center;
}

.precision-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(23, 33, 31, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.booking-callout {
  padding-block: 64px;
  color: var(--white);
  background: var(--pine);
}

.booking-callout-inner {
  display: grid;
  gap: 30px;
}

.booking-callout h2 {
  margin-bottom: 14px;
}

.booking-callout p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.faq-layout {
  display: grid;
  gap: 38px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--soft);
  border-radius: 6px;
}

.faq-list summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 52px 22px 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding-block: 72px;
  color: var(--white);
  background: var(--ink);
}

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

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #a8e2d9;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.contact-row small,
.contact-row strong,
.contact-row div > span {
  display: block;
}

.contact-row small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
}

.contact-row strong {
  font-size: 15px;
}

.contact-row div > span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.contact-map-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bfe9e2;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  background: var(--warm);
}

.footer-main {
  display: grid;
  gap: 26px;
  padding-block: 46px 34px;
}

.brand-footer .brand-mark {
  background: var(--coral);
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.footer-main nav a {
  min-height: 36px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  padding-block: 20px 100px;
  border-top: 1px solid #ddd7cf;
  color: #6e6a64;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action-bar {
  position: fixed;
  z-index: 95;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: calc(72px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(23, 33, 31, 0.1);
  backdrop-filter: blur(14px);
}

.mobile-action-bar button {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  color: var(--pine);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.mobile-action-bar .mobile-book {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.booking-dialog {
  width: 100%;
  max-width: none;
  max-height: calc(100svh - 18px);
  padding: 0;
  margin: auto 0 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow-lg);
}

.booking-dialog::backdrop {
  background: rgba(8, 24, 22, 0.7);
  backdrop-filter: blur(4px);
}

.dialog-shell {
  min-height: 570px;
  max-height: calc(100svh - 18px);
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.dialog-header {
  position: sticky;
  z-index: 3;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 18px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.dialog-kicker {
  margin-bottom: 2px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-header h2 {
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.dialog-close {
  width: 42px;
  height: 42px;
}

#booking-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 26px;
}

.step-progress span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #899490;
  font-size: 10px;
  font-weight: 800;
}

.step-progress span::before {
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: #dfe7e4;
  border-radius: 2px;
}

.step-progress span.is-current,
.step-progress span.is-complete {
  color: var(--pine);
}

.step-progress span.is-current::before,
.step-progress span.is-complete::before {
  background: var(--teal);
}

.step-progress i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 4px;
  font-size: 9px;
  font-style: normal;
}

.step-progress b {
  font-weight: 800;
}

.form-step {
  min-height: 345px;
}

.form-step-heading {
  margin-bottom: 20px;
}

.form-step-heading > span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-step-heading h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.form-step-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0;
  margin: 0;
  border: 0;
}

.choice-grid label {
  min-width: 0;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid label > span {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.choice-grid label > span .icon {
  width: 21px;
  height: 21px;
  margin-bottom: 12px;
  color: var(--teal);
}

.choice-grid strong,
.choice-grid small {
  display: block;
}

.choice-grid strong {
  font-size: 12px;
  line-height: 1.25;
}

.choice-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.choice-grid input:checked + span {
  background: #edf7f5;
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field-group {
  margin-bottom: 15px;
}

.field-group label,
.time-fieldset legend {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.field-group label span {
  color: var(--muted);
  font-weight: 500;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 13px;
  width: 18px;
  height: 18px;
  color: #71807c;
  transform: translateY(-50%);
  pointer-events: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  background: var(--white);
  border: 1px solid #cdd8d5;
  border-radius: 6px;
  font-size: 13px;
}

.input-with-icon input {
  padding-left: 42px;
}

textarea {
  min-height: 94px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #94a09d;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(8, 119, 109, 0.14);
}

.time-fieldset {
  padding: 0;
  margin: 0 0 16px;
  border: 0;
}

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

.time-grid button {
  min-width: 0;
  min-height: 64px;
  padding: 8px 5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}

.time-grid button small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

.time-grid button.is-selected {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.time-grid button.is-selected small {
  color: rgba(255, 255, 255, 0.72);
}

.toggle-row,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.toggle-row > input {
  position: absolute;
  opacity: 0;
}

.toggle-control {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 1px;
  background: #cdd8d5;
  border-radius: 20px;
  transition: background-color 160ms ease;
}

.toggle-control::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.toggle-row input:checked + .toggle-control {
  background: var(--teal);
}

.toggle-row input:checked + .toggle-control::after {
  transform: translateX(18px);
}

.toggle-row input:focus-visible + .toggle-control {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

.toggle-row strong {
  font-size: 12px;
}

.toggle-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.consent-row {
  color: var(--muted);
  font-size: 11px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--teal);
}

.form-error {
  min-height: 22px;
  margin-top: auto;
  color: #b42318;
  font-size: 11px;
  font-weight: 700;
}

.form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.form-actions .step-next,
.form-actions .step-submit {
  grid-column: 2;
}

.booking-success {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 24px;
}

.booking-success[hidden] {
  display: none;
}

.success-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.success-icon .icon {
  width: 28px;
  height: 28px;
}

.booking-success h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 34px;
}

.booking-success > p:not(.dialog-kicker) {
  color: var(--muted);
}

.success-note {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 14px;
  margin: 12px 0 24px;
  color: #5d5a55;
  background: var(--warm);
  border: 1px solid #e2dbd2;
  border-radius: 6px;
  font-size: 11px;
}

.success-note .icon {
  color: var(--coral-dark);
}

.toast {
  position: fixed;
  z-index: 300;
  right: 16px;
  bottom: calc(86px + env(safe-area-inset-bottom));
  left: 16px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (min-width: 640px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-actions,
  .booking-callout-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
  }

  .hero-planner {
    width: min(100%, 420px);
  }

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

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

  .booking-dialog {
    width: min(720px, calc(100% - 32px));
    max-height: calc(100svh - 40px);
    margin: auto;
    border-radius: 8px;
  }

  .dialog-shell {
    max-height: calc(100svh - 40px);
  }

  .dialog-header,
  #booking-form {
    padding-right: 28px;
    padding-left: 28px;
  }

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

  .toast {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(380px, calc(100% - 48px));
  }
}

@media (max-width: 759px) and (max-height: 720px) {
  .hero {
    min-height: 500px;
    height: calc(100svh - 160px);
  }

  .hero-inner {
    padding-block: 34px 24px;
  }

  .hero-planner {
    display: none;
  }

  .hero-lede {
    margin-bottom: 20px;
  }
}

@media (min-width: 760px) {
  :root {
    --header-height: 80px;
  }

  body {
    padding-bottom: 0;
  }

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

  .section {
    padding-block: 104px;
  }

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

  .quick-action {
    padding-inline: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .quick-action:first-child {
    padding-left: 0;
  }

  .quick-action:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 46px;
  }

  .service-filter {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .media-layout,
  .precision-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 70px;
  }

  .care-media {
    aspect-ratio: 4 / 5;
  }

  .precision-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }

  .precision-media {
    order: 2;
    aspect-ratio: 5 / 4;
  }

  .booking-callout {
    padding-block: 76px;
  }

  .booking-callout-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
  }

  .booking-callout-actions {
    justify-content: flex-end;
  }

  .faq-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 84px;
  }

  .faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 30px);
  }

  .contact-section {
    padding-block: 96px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
    align-items: start;
    gap: 90px;
  }

  .footer-main {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .footer-main nav {
    display: flex;
    gap: 24px;
  }

  .footer-bottom {
    padding-bottom: 22px;
  }

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

@media (min-width: 1024px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 52px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-navigation {
    position: static;
    display: flex;
    align-items: center;
    gap: 27px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-navigation > a {
    min-height: 44px;
    padding: 0;
    border: 0;
    color: #52615e;
    font-size: 13px;
    transition: color 160ms ease;
  }

  .primary-navigation > a:hover {
    color: var(--teal);
  }

  .nav-book-button {
    min-height: 46px;
    margin: 0 0 0 6px;
  }

  .hero {
    min-height: 620px;
    height: calc(100svh - 148px);
    max-height: 780px;
  }

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

  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: end;
    gap: 60px;
    padding-block: 76px 52px;
  }

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

  .hero-lede {
    font-size: 18px;
  }

  .hero-planner {
    align-self: end;
  }

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

  .service-card {
    min-height: 310px;
    padding: 26px;
  }

  .media-layout,
  .precision-layout {
    gap: 110px;
  }

  .care-media {
    min-height: 650px;
    aspect-ratio: auto;
  }

  .precision-media {
    min-height: 510px;
    aspect-ratio: auto;
  }
}

@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;
  }

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

/* Premium clinic finish: calm surfaces, stronger hierarchy, and tactile motion. */
:root {
  --pine: #123b38;
  --pine-dark: #0b2927;
  --teal: #087f75;
  --teal-dark: #05665e;
  --coral: #ed7355;
  --warm: #faf8f4;
  --soft: #f0f7f5;
  --line: #dce7e3;
  --shadow-sm: 0 14px 34px rgba(18, 59, 56, .09);
  --shadow-lg: 0 28px 80px rgba(11, 41, 39, .22);
}

.site-header { transition: box-shadow 260ms ease, background-color 260ms ease; }
.brand-mark { box-shadow: 0 6px 16px rgba(18, 59, 56, .16); }
.menu-toggle { display: inline-grid; }
.primary-navigation > a { position: relative; }
.primary-navigation > a::after {
  position: absolute; right: 0; bottom: 5px; left: 0; height: 2px;
  content: ""; background: var(--teal); transform: scaleX(0); transform-origin: right;
  transition: transform 220ms ease;
}
.primary-navigation > a:hover::after,
.primary-navigation > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.hero-copy { animation: hero-rise 700ms 80ms both cubic-bezier(.2,.7,.2,1); }
.hero-planner { animation: hero-rise 700ms 220ms both cubic-bezier(.2,.7,.2,1); }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.button, .filter-button, .quick-action, .service-card, .icon-button { transition-timing-function: cubic-bezier(.2,.7,.2,1); }
.button:active, .filter-button:active, .quick-action:active { transform: translateY(0) scale(.98); }
.quick-action { transition: background-color 220ms ease, padding 220ms ease; }
.quick-action:hover { background: var(--soft); }
.service-card { box-shadow: 0 1px 0 rgba(18,59,56,.02); }
.service-card:hover { box-shadow: 0 18px 40px rgba(18,59,56,.12); }
.care-media, .precision-media { box-shadow: 0 18px 48px rgba(18,59,56,.12); }

@media (max-width: 639px) {
  .site-header { height: 68px; }
  :root { --header-height: 68px; }
  .header-inner { width: min(100% - 28px, var(--container)); }
  .brand-copy strong { font-size: 17px; }
  .brand-mark { width: 40px; height: 40px; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 8px; }
  .hero-inner { padding-block: 42px 22px; gap: 20px; }
  .hero-copy { max-width: 29rem; }
  h1 { font-size: clamp(42px, 12vw, 58px); line-height: .94; max-width: 12ch; }
  .hero-lede { max-width: 31rem; margin-bottom: 22px; font-size: 16px; line-height: 1.5; }
  .hero-actions { gap: 8px; }
  .hero-actions .button { width: 100%; }
  .hero-planner { min-height: 68px; grid-template-columns: 42px 1fr 18px; }
  .quick-action { min-height: 76px; }
  .quick-actions-inner { width: min(100% - 28px, var(--container)); }
  .section { padding-block: 68px; }
  h2 { font-size: clamp(34px, 9vw, 46px); }
  .service-card { min-height: 250px; padding: 20px; }
  .booking-callout { padding-block: 56px; }
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .hero-inner { padding-block: 88px 60px; }
  .hero-copy { max-width: 700px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hero-planner { animation: none; }
  .hero-image, .hero:hover .hero-image { transform: none; }
}

/* Smile Specialty Dental inspired visual system and bilingual controls. */
:root {
  --pine: #153f43;
  --pine-dark: #0c2d31;
  --teal: #049ba9;
  --teal-dark: #037681;
  --coral: #863594;
  --coral-dark: #692775;
  --ink: #173034;
  --muted: #607276;
  --soft: #edf8f8;
  --warm: #f8f6f3;
  --line: #d7e5e6;
  --shadow-sm: 0 14px 38px rgba(15, 63, 68, .1);
  --shadow-lg: 0 30px 90px rgba(9, 43, 47, .24);
}

.header-inner { gap: 8px; }
.brand { margin-right: auto; }

/* Header action links (phone, map, TikTok) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--soft, #edf8f8);
  color: var(--pine, #153f43);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 200ms ease, color 200ms ease, transform 150ms ease;
  cursor: pointer;
}

.header-action-link:hover {
  background: var(--teal, #049ba9);
  color: #fff;
  transform: translateY(-1px);
}

.header-action-link:active {
  transform: scale(0.96);
}

.header-action-link .icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.header-action-label {
  display: none;
}

.header-action-tiktok:hover {
  background: #010101;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 8px;
  }

  .header-action-link {
    width: auto;
    height: 36px;
    padding: 0 14px;
  }

  .header-action-label {
    display: inline;
  }
}

.language-toggle {
  min-width: 54px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  color: var(--pine);
  background: var(--soft);
  border: 1px solid #cce3e5;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.language-toggle:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.language-toggle .icon { width: 17px; height: 17px; }
.language-toggle-desktop { display: none; }

.lang-am,
.lang-am button,
.lang-am input,
.lang-am textarea { font-family: "Noto Sans Ethiopic", var(--font-sans); }

.lang-am h1,
.lang-am h2,
.lang-am .booking-success h3 { font-family: "Noto Sans Ethiopic", var(--font-sans); line-height: 1.17; }

.lang-am .eyebrow { font-size: 12px; line-height: 1.6; }

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 38, 42, .88) 0%, rgba(8, 45, 48, .64) 48%, rgba(20, 50, 55, .18) 100%);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -250px;
  width: 430px;
  height: 430px;
  content: "";
  border: 70px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}

.button-coral,
.brand-footer .brand-mark { background: var(--coral); border-color: var(--coral); }

.service-card {
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  border-color: #dce8e8;
}

.service-card-image {
  width: 100%;
  height: 154px;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.service-card:hover .service-card-image { transform: scale(1.045); }
.service-card-top { margin: 18px 21px 17px; }
.service-card h3 { margin-right: 21px; margin-left: 21px; }
.service-card > p { margin-right: 21px; margin-left: 21px; }
.service-card > .text-link { margin: auto 21px 21px; }

.care-media img { object-position: center 18%; }
.precision-media img { object-position: center 15%; }

.booking-dialog { width: min(760px, calc(100% - 28px)); margin: auto; border-radius: 8px; }
#booking-form { gap: 4px; }
.appointment-form-grid { display: grid; gap: 0; }

.upload-dropzone {
  position: relative;
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fcfc, #eef8f8);
  border: 1px dashed #9dc9ce;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.upload-dropzone:hover,
.upload-dropzone.is-dragging {
  background: #e8f7f8;
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(4, 155, 169, .12);
  transform: translateY(-2px);
}

.upload-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(4, 155, 169, .22);
}

.upload-dropzone strong { font-size: 14px; }
.upload-dropzone small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.upload-file-name { max-width: 100%; margin-top: 10px; color: var(--coral); font-size: 11px; font-weight: 800; overflow-wrap: anywhere; }

.upload-preview {
  position: relative;
  height: 164px;
  margin-top: 10px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.upload-preview[hidden] { display: none; }
.upload-preview img { width: 100%; height: 100%; object-fit: contain; }
.preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(12, 45, 49, .9);
  border: 0;
  border-radius: 6px;
}

.form-assurance {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.form-assurance .icon { width: 17px; height: 17px; color: var(--teal); }
.form-actions { grid-template-columns: 1fr; }
.form-actions .step-submit { grid-column: 1; width: 100%; }
.step-submit.is-loading { opacity: .72; pointer-events: none; }

.booking-success {
  min-height: auto;
  justify-content: flex-start;
  padding: 28px;
}

.patient-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1.68 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  margin: 6px 0 16px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #0e3b40 0%, #056d77 60%, #049ba9 100%);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(9, 52, 57, .24);
}

.patient-card::after {
  position: absolute;
  right: -70px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  content: "";
  border: 48px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.patient-card-top,
.patient-card-details { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; }
.patient-card-brand { font-family: var(--font-display); font-size: 22px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.patient-card-logo { width: 24px; height: 24px; object-fit: contain; border-radius: 4px; }
.patient-card-status { padding: 5px 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 5px; font-size: 8px; font-weight: 800; }
.patient-card-number-label { position: relative; z-index: 1; margin-top: auto; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.patient-card-number { position: relative; z-index: 1; display: block; margin: 2px 0 20px; font-size: clamp(20px, 6vw, 31px); letter-spacing: 0; }
.patient-card-details { align-items: flex-end; }
.patient-card-details span { min-width: 0; display: grid; }
.patient-card-details small { color: rgba(255,255,255,.64); font-size: 8px; text-transform: uppercase; }
.patient-card-details b { max-width: 220px; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.success-actions { width: 100%; display: grid; gap: 8px; }

@media (min-width: 640px) {
  .appointment-form-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .success-actions { grid-template-columns: 1fr auto; }
  .patient-card { padding: 30px; }
  .patient-card-details b { font-size: 13px; }
}

@media (min-width: 1024px) {
  .language-toggle-mobile { display: none; }
  .language-toggle-desktop { display: inline-flex; }
  .primary-navigation { gap: 22px; }
  .service-card { min-height: 425px; }
  .service-card-image { height: 174px; }
}

@media (max-width: 420px) {
  .brand-copy span { font-size: 9px; }
  .language-toggle { min-width: 48px; padding: 0 8px; }
  .patient-card { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card-image,
  .upload-dropzone { transition: none; }
}

/* Focused responsive experience */
.hero {
  min-height: 560px;
  height: min(720px, calc(100svh - var(--header-height) - 24px));
  max-height: 720px;
}

.hero::after {
  display: none;
}

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

.hero-media {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-image-frame {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms cubic-bezier(.2, .7, .2, 1), visibility 0s linear 900ms;
}

.hero-image-frame.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.hero .hero-image-frame .hero-image,
.hero:hover .hero-image-frame .hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 6s cubic-bezier(.2, .7, .2, 1);
}

.hero .hero-image-frame.is-active .hero-image,
.hero:hover .hero-image-frame.is-active .hero-image {
  transform: scale(1.022);
}

/* Individual Slide Focal Points: Keep all doctors, instruments, and dental treatment in view */
.hero-img-room {
  object-position: center 48%;
}

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

.hero-img-exam {
  object-position: center 42%;
}

.hero-img-consult {
  object-position: center 18%;
}

.hero-img-aligner {
  object-position: center 45%;
}

.hero-shade {
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding-block: 64px 42px;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 38px;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: max(16px, calc((100vw - var(--container)) / 2));
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-dot {
  width: 44px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.hero-dot::before {
  width: 20px;
  height: 4px;
  content: "";
  background: rgba(255, 255, 255, .52);
  border-radius: 4px;
  transition: width 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.hero-dot:hover::before {
  background: rgba(255, 255, 255, .82);
  transform: translateY(-1px);
}

.hero-dot.is-active::before {
  width: 34px;
  background: var(--white);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 1px;
}

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

.service-grid {
  gap: 16px;
}

.service-card {
  min-height: 380px;
}

.service-card-image {
  height: 176px;
}

.care-media img {
  object-position: center 38%;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-compact {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}

.footer-compact p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface, #f5f5f5);
  color: var(--text, #1a1a1a);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, transform 150ms ease;
}

.social-link:hover {
  background: #010101;
  color: #fff;
  transform: translateY(-1px);
}

.social-link .icon {
  width: 18px;
  height: 18px;
}

.reveal {
  transform: translateY(14px);
  transition: opacity 620ms cubic-bezier(.2, .7, .2, 1), transform 620ms cubic-bezier(.2, .7, .2, 1);
}

@media (min-width: 1024px) {
  .service-card {
    min-height: 400px;
  }

  .service-card-image {
    height: 180px;
  }
}

@media (max-width: 639px) {
  .header-inner {
    gap: 6px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-action-link {
    width: 36px;
    height: 36px;
  }

  .header-action-link .icon {
    width: 15px;
    height: 15px;
  }

  .language-toggle-mobile {
    min-width: 46px;
    height: 38px;
    padding-inline: 8px;
    font-size: 12px;
  }

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

  .hero {
    min-height: 540px;
    height: min(660px, calc(100svh - var(--header-height) - 10px));
    max-height: 680px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(7, 30, 29, .34) 0%, rgba(7, 30, 29, .62) 44%, rgba(7, 30, 29, .9) 100%);
  }

  .hero-inner {
    padding-block: 30px 48px;
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 8.5vw, 42px);
    line-height: 1.02;
    max-width: 13ch;
  }

  .hero-lede {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }

  .hero-controls {
    right: 12px;
    bottom: 14px;
  }

  .hero-img-room {
    object-position: center 50%;
  }

  .hero-img-hero {
    object-position: 55% 22%;
  }

  .hero-img-exam {
    object-position: center 38%;
  }

  .hero-img-consult {
    object-position: center 12%;
  }

  .hero-img-aligner {
    object-position: center 45%;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card-image {
    height: 168px;
  }

  /* Prevent iOS zoom on input focus */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Before & After mobile styling */
  .transform-stage {
    aspect-ratio: 4 / 3;
    min-height: 230px;
    border-radius: 8px 8px 0 0;
    touch-action: pan-y;
  }

  .transform-badge {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 10px;
  }

  .transform-stage-nav {
    width: 36px;
    height: 36px;
  }

  .transform-stage-prev { left: 8px; }
  .transform-stage-next { right: 8px; }

  .comparison-tabs {
    padding: 8px 10px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-tab {
    padding: 5px 12px;
    font-size: 11px;
  }

  .comparison-meta {
    padding: 16px 14px 18px;
  }

  .comparison-actions {
    margin-top: 12px;
    width: 100%;
    justify-content: space-between;
  }

  /* Booking dialog on mobile */
  .booking-dialog {
    width: 100% !important;
    max-width: 100% !important;
    margin: auto 0 0 !important;
    border-radius: 16px 16px 0 0 !important;
    max-height: 92svh !important;
  }

  .dialog-shell {
    min-height: 0 !important;
    max-height: 92svh !important;
  }

  .dialog-header {
    padding: 14px 16px !important;
  }

  #booking-form {
    padding: 16px 14px 20px !important;
  }

  /* Footer on mobile */
  .footer-compact {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-block: 28px;
  }

  .footer-compact p {
    font-size: 12px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .header-actions {
    gap: 3px;
  }

  .header-action-link {
    width: 33px;
    height: 33px;
  }

  .header-action-link .icon {
    width: 14px;
    height: 14px;
  }

  .language-toggle-mobile {
    min-width: 40px;
    padding-inline: 4px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 6px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .language-toggle-mobile {
    min-width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-frame,
  .hero-image-frame .hero-image,
  .hero-dot::before,
  .reveal {
    transition: none !important;
  }

  .hero .hero-image-frame .hero-image,
  .hero:hover .hero-image-frame .hero-image,
  .hero .hero-image-frame.is-active .hero-image,
  .hero:hover .hero-image-frame.is-active .hero-image {
    transform: none;
  }
}

/* Results showcase */
.results-section {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
  color: var(--ink);
  background: #f1f7f6;
}

.results-section::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(4, 155, 169, .18), transparent);
  pointer-events: none;
}

.results-shell {
  position: relative;
  z-index: 1;
}

.results-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: end;
  margin-bottom: 40px;
}

.results-heading > p {
  max-width: 480px;
  justify-self: end;
}

.results-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(300px, .77fr);
  gap: 16px;
  align-items: stretch;
}

.comparison-panel,
.results-story {
  min-width: 0;
  border: 1px solid rgba(4, 155, 169, .18);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(9, 52, 57, .1);
}

.comparison-panel {
  overflow: hidden;
  background: var(--white);
}

.comparison-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.comparison-tabs::-webkit-scrollbar {
  display: none;
}

.comparison-tab {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 180ms ease;
}

.comparison-tab:hover {
  color: var(--ink);
  background: rgba(8, 119, 109, 0.08);
}

.comparison-tab.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(8, 119, 109, 0.25);
}

/* All-in-one Rotating Transformation Showcase */
.transform-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  overflow: hidden;
  background: #092528;
  isolation: isolate;
}

.transform-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.transform-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), transform 700ms cubic-bezier(0.4, 0, 0.2, 1), visibility 700ms ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #092528;
}

.transform-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.transform-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.transform-slide.is-active img {
  transform: scale(1.015);
}

.transform-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 14px;
  color: var(--white);
  background: rgba(7, 30, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.transform-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 4;
  overflow: hidden;
}

.transform-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), #3ee5f4);
  border-radius: 0 2px 2px 0;
  transition: width 80ms linear;
}

.transform-stage-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 30, 29, 0.65);
  color: var(--white);
  backdrop-filter: blur(8px);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  opacity: 0.85;
  transition: all 200ms ease;
}

.transform-stage-nav:hover {
  opacity: 1;
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.transform-stage-nav .icon {
  width: 16px;
  height: 16px;
}

.transform-stage-prev { left: 12px; }
.transform-stage-next { right: 12px; }

.comparison-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 22px;
}

.comparison-meta-copy {
  min-width: 0;
}

.comparison-meta .eyebrow {
  margin-bottom: 6px;
  font-size: 10px;
}

.comparison-meta h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.comparison-meta p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.comparison-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.comparison-play-toggle,
.comparison-case-btn {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  transition: all 180ms ease;
}

.comparison-play-toggle:hover,
.comparison-case-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--soft);
}

.comparison-play-toggle .icon,
.comparison-case-btn .icon {
  width: 16px;
  height: 16px;
}

.comparison-case-nav {
  display: inline-flex;
  gap: 4px;
}

.results-verified {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  padding-top: 3px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.results-verified .icon {
  width: 14px;
  height: 14px;
}

.results-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 34px 32px 30px;
  color: var(--white);
  background: var(--pine-dark);
  overflow: hidden;
}

.results-story::after {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .035), 0 0 0 56px rgba(255, 255, 255, .025);
  pointer-events: none;
}

.results-quote-mark {
  position: relative;
  z-index: 1;
  display: block;
  height: 52px;
  color: #9fe2d8;
  font-family: var(--font-display);
  font-size: 92px;
  line-height: .8;
}

.results-story blockquote {
  position: relative;
  z-index: 1;
  min-height: 148px;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
}

.testimonial-byline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--pine-dark);
  background: #bfe9e2;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.testimonial-byline strong,
.testimonial-byline span {
  display: block;
}

.testimonial-byline strong {
  font-size: 13px;
}

.testimonial-byline div span {
  margin-top: 2px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.testimonial-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-control,
.gallery-control {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
}

.testimonial-control:hover,
.gallery-control:hover {
  color: var(--pine-dark);
  background: var(--white);
  border-color: var(--white);
}

.testimonial-control .icon,
.gallery-control .icon {
  width: 17px;
  height: 17px;
}

.testimonial-control:first-child .icon,
.gallery-control:first-child .icon {
  transform: rotate(180deg);
}

.testimonial-control-next .icon,
.gallery-control-next .icon {
  transform: none;
}

.testimonial-progress {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.testimonial-progress i {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .32);
}

@media (max-width: 900px) {
  .results-heading { grid-template-columns: 1fr; }
  .results-heading > p { justify-self: start; }
  .results-feature { grid-template-columns: 1fr; }
  .results-story { min-height: 420px; }
}

@media (max-width: 639px) {
  .results-section { padding-block: 68px; }
  .results-heading { margin-bottom: 28px; }
  .transform-stage { aspect-ratio: 4 / 3; min-height: 240px; }
  .comparison-meta { display: block; padding: 18px 18px 20px; }
  .comparison-meta h3 { font-size: 20px; }
  .results-verified { margin-top: 16px; }
  .results-story { min-height: 390px; padding: 26px 22px 24px; }
  .results-story blockquote { min-height: 0; font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .transform-slide,
  .transform-progress-fill { transition: none; }
}
