:root {
  --green: #043f34;
  --green-2: #0b5648;
  --mint: #8edbb9;
  --paper: #f5f7f2;
  --line: #dce6df;
  --ink: #11342c;
  --muted: #5f746d;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.55; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(245, 247, 242, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(4, 63, 52, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  font-weight: 700;
  color: var(--green);
}

.brand-mark {
  width: 34px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(19%) sepia(38%) saturate(819%) hue-rotate(119deg) brightness(90%) contrast(96%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  font-size: 14px;
  color: #35574f;
}

.desktop-nav a { white-space: nowrap; }
.desktop-nav a:hover { color: var(--green); }

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.header-action,
.primary-button {
  background: var(--green);
  color: var(--white);
}

.secondary-button {
  color: var(--green);
  border: 1px solid rgba(4, 63, 52, .22);
  background: rgba(255, 255, 255, .76);
}

.compact { width: fit-content; }
.full { width: 100%; border: 0; cursor: pointer; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(4, 63, 52, .2);
  background: var(--white);
  color: var(--green);
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(64px, 9vw, 104px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: .82;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(4,63,52,.95), rgba(4,63,52,.56), rgba(4,63,52,.18)),
    linear-gradient(135deg, rgba(142,219,185,.18), rgba(255,255,255,.12)),
    repeating-linear-gradient(110deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px),
    var(--green-2);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-video-mobile {
  display: none;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,63,52,.34), rgba(4,63,52,.22) 42%, rgba(4,63,52,.42)),
    linear-gradient(90deg, rgba(4,63,52,.62), rgba(4,63,52,.32) 42%, rgba(4,63,52,.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 730px;
  margin: 0;
  transform: translateX(10vw);
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .98;
  font-weight: 700;
}

.hero-title {
  text-align: left;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,.88);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 34px);
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero .primary-button { background: var(--mint); color: var(--green); }
.hero .secondary-button {
  color: var(--green);
  border-color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.92);
}

.support-note {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.94);
  font-size: 15px;
  font-weight: 800;
  text-align: left;
}

.section,
.split-section,
.clinic-section,
.contact-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

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

.section-heading.narrow { max-width: 760px; }
.section-heading h2,
.split-content h2,
.clinic-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  color: var(--green);
}

.split-content h2 {
  font-size: clamp(50px, 6.2vw, 88px);
}

.section-heading p,
.split-content p,
.clinic-copy p,
.contact-copy p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
}

.process-title span {
  display: inline;
}

.legal-text {
  max-width: 880px;
  color: var(--ink);
}

.legal-text h2 {
  margin: 28px 0 8px;
  color: var(--green);
  font-size: 22px;
}

.legal-text p {
  color: var(--muted);
}

.icon-grid {
  display: grid;
  gap: 18px;
}

.icon-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.icon-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.icon-card,
.treatment-card,
.specialist-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.icon-card img,
.treatment-card img,
.specialist-list img {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 8px;
}

.icon-card h3,
.treatment-card h3,
.specialist-list h3 {
  margin: 16px 0 0;
  color: var(--green);
  font-size: 17px;
  line-height: 1.25;
}

.icon-card p,
.treatment-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, .78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #eaf2ed;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--green-2);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.split-section .section-kicker {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--green);
  color: var(--mint);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.check-list,
.feature-list {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--ink);
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.concept-visual,
.clinic-photo {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4,63,52,.12), rgba(142,219,185,.35)),
    var(--white);
  border: 1px solid rgba(4, 63, 52, .12);
}

.consult-scene {
  position: relative;
  width: 100%;
  height: 420px;
}

.person,
.screen {
  position: absolute;
  display: block;
  background: var(--green);
  opacity: .9;
}

.doctor { width: 96px; height: 168px; border-radius: 48px 48px 18px 18px; left: 22%; bottom: 76px; }
.patient { width: 82px; height: 140px; border-radius: 42px 42px 18px 18px; right: 22%; bottom: 76px; background: var(--mint); }
.screen { width: 116px; height: 78px; border-radius: 8px; left: 50%; top: 86px; transform: translateX(-50%); background: rgba(4,63,52,.72); }

.treatment-band { background: #edf4ef; }

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

.specialist-list article { min-height: 150px; }

.clinic-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.clinic-photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(4,63,52,.16), rgba(142,219,185,.18)),
    linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.25)),
    repeating-linear-gradient(0deg, rgba(4,63,52,.05) 0 1px, transparent 1px 38px),
    #dfe9e3;
}

.clinic-slides {
  position: absolute;
  inset: 0;
}

.clinic-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .45s ease, transform .45s ease;
}

.clinic-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.clinic-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,63,52,0), rgba(4,63,52,.08)),
    linear-gradient(90deg, rgba(255,255,255,.06), rgba(142,219,185,.07));
}

.clinic-gallery-controls {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.gallery-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(4,63,52,.74);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(4,63,52,.18);
}

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

.motion-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, .9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: #edf4ef;
}

.motion-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  color: var(--green);
}

.motion-copy p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
}

.motion-slots {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(12px, 2vw, 18px);
  align-items: center;
  justify-content: center;
}

.phone-motion-slot {
  flex: 0 0 clamp(170px, 17vw, 230px);
  width: clamp(170px, 17vw, 230px);
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(4,63,52,.96), rgba(11,86,72,.98)),
    var(--green);
  border: 1px solid rgba(4, 63, 52, .16);
  box-shadow: 0 22px 44px rgba(4, 63, 52, .14);
  color: rgba(255,255,255,.78);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.phone-motion-slot video {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.contact-copy h2 { color: var(--white); }
.contact-copy p { color: rgba(255,255,255,.78); }

.opening-hours {
  display: grid;
  gap: 6px;
  width: min(100%, 360px);
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(174, 226, 203, .42);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}

.opening-hours strong {
  color: var(--mint);
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(220px, 320px);
  gap: 12px;
  margin-top: 26px;
}

.contact-section .primary-button { background: var(--mint); color: var(--green); }
.contact-section .secondary-button {
  color: var(--green);
  border-color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.94);
}
.contact-section .contact-actions .secondary-button:nth-child(2) {
  color: var(--white);
  border-color: rgba(174, 226, 203, .72);
  background: rgba(174, 226, 203, .18);
}
.contact-section .contact-actions .secondary-button:nth-child(3) {
  color: var(--green);
  border-color: var(--mint);
  background: var(--mint);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #36574f;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.contact-form .check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.contact-form .check input { width: auto; }
.contact-form .check a { color: var(--green); font-weight: 700; text-decoration: underline; }

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(88vh - 72px);
  padding: clamp(64px, 9vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(4,63,52,.96), rgba(4,63,52,.78)),
    repeating-linear-gradient(110deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px),
    var(--green);
  color: var(--white);
}

.landing-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 1;
  color: var(--white);
}

.landing-hero .section-kicker {
  color: var(--mint);
  opacity: 1;
}

.landing-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(17px, 1.6vw, 21px);
}

.landing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.landing-hero .primary-button { background: var(--mint); color: var(--green); }
.landing-hero .secondary-button { color: var(--white); border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); }

.landing-proof {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.landing-proof img {
  width: min(180px, 48vw);
  display: block;
  margin-bottom: 24px;
}

.landing-proof strong {
  display: block;
  font-size: 22px;
  line-height: 1.16;
}

.landing-proof p {
  font-size: 15px;
  margin-top: 10px;
  color: rgba(255,255,255,.72);
}

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

.landing-card,
.landing-checklist {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.landing-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
}

.landing-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.landing-note-section {
  align-items: center;
  background: #eef4ef;
}

.landing-checklist strong {
  color: var(--green);
}

.landing-checklist ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.landing-checklist li + li {
  margin-top: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 72px);
  background: #092f29;
  color: rgba(255,255,255,.78);
}

.site-footer strong { color: var(--white); }
.site-footer p { max-width: 520px; margin: 10px 0 0; }

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,.82);
}

.footer-contact a:hover { color: var(--white); }

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

@media (max-width: 1040px) {
  .desktop-nav, .header-action { display: none; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 24;
    display: none;
    padding: 10px 18px 18px;
    background: rgba(245, 247, 242, .98);
    border-bottom: 1px solid rgba(4, 63, 52, .12);
    box-shadow: 0 18px 30px rgba(4, 63, 52, .1);
  }
  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
  }
  .site-header.menu-open .mobile-menu {
    display: grid;
    gap: 8px;
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 8px;
    color: var(--green);
    font-weight: 700;
  }
  .mobile-menu a:hover {
    background: rgba(4, 63, 52, .06);
  }
  .icon-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .specialist-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { padding-bottom: 62px; }
  .site-header { min-height: 64px; padding: 10px 18px; }
  .brand { min-width: 0; }
  .hero {
    min-height: calc(100svh - 64px);
    padding: 52px 20px 42px;
  }
  .hero-video-desktop {
    display: none;
  }
  .hero-video-mobile {
    display: block;
  }
  .hero-content {
    align-self: center;
    transform: none;
  }
  .hero h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.08;
    text-align: left;
  }
  .hero-title {
    text-align: left;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-left: 0;
    margin-right: auto;
  }
  .hero-actions .secondary-button {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.88);
    background: rgba(255,255,255,.92);
    color: var(--green);
    text-decoration: none;
  }
  .split-content .primary-button.compact {
    width: 100%;
    max-width: 340px;
    min-height: 48px;
    padding: 10px 14px;
    white-space: normal;
    line-height: 1.18;
    text-align: center;
  }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-actions a { width: 100%; }
  .section,
  .split-section,
  .clinic-section,
  .contact-section { padding: 56px 20px; }
  .section-heading {
    margin-bottom: 24px;
  }
  .section-heading h2,
  .split-content h2,
  .clinic-copy h2,
  .contact-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.12;
  }
  #konfor .split-content h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.02;
  }
  .section-heading p,
  .split-content p,
  .clinic-copy p,
  .contact-copy p {
    font-size: 15px;
  }
  .process-title span {
    display: block;
  }
  .icon-card,
  .treatment-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding: 16px;
  }
  .icon-card img,
  .treatment-card img {
    width: 56px;
    height: 56px;
    grid-row: span 2;
  }
  .icon-card h3,
  .treatment-card h3 {
    margin: 0;
    font-size: 16px;
  }
  .icon-card p,
  .treatment-card p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.42;
  }
  #neden .icon-card h3 {
    color: var(--green);
  }
  #neden .icon-card p {
    color: #536b64;
  }
  .treatment-band .section-heading {
    margin-bottom: 20px;
  }
  .treatment-band .icon-grid {
    gap: 12px;
  }
  .treatment-card {
    border-color: rgba(4, 63, 52, .12);
  }
  .treatment-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .icon-grid.four,
  .icon-grid.three,
  .split-section,
  .clinic-section,
  .motion-section,
  .contact-section,
  .site-footer { grid-template-columns: 1fr; }
  .split-section {
    gap: 24px;
  }
  .split-section .section-kicker {
    font-size: 22px;
    padding: 8px 12px;
  }
  .check-list,
  .feature-list {
    gap: 10px;
    margin: 18px 0 22px;
    font-size: 14px;
  }
  .split-content .compact {
    width: 100%;
    min-height: 46px;
    padding-inline: 12px;
    font-size: 13px;
    text-align: center;
  }
  .motion-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phone-motion-slot { width: min(100%, 170px); }
  .specialist-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .specialist-list article {
    min-height: 0;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    padding: 14px 16px;
  }
  .specialist-list img {
    width: 50px;
    height: 50px;
  }
  .specialist-list h3 {
    margin: 0;
    font-size: 16px;
  }
  .concept-visual { min-height: 260px; }
  .clinic-photo {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
  .motion-section {
    padding: 48px 20px;
  }
  .motion-copy h2 {
    font-size: clamp(24px, 7vw, 30px);
  }
  .motion-copy p {
    font-size: 14px;
  }
  .contact-section {
    gap: 22px;
  }
  .contact-copy h2 {
    font-size: clamp(28px, 8.5vw, 36px);
  }
  .contact-copy p {
    font-size: 15px;
  }
  .contact-form {
    padding: 16px;
    gap: 10px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 11px;
  }
  .contact-form textarea {
    min-height: 88px;
  }
  .contact-form .check {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.35;
  }
  .landing-hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 64px);
    padding: 52px 20px 48px;
  }
  .landing-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }
  .landing-hero p {
    font-size: 16px;
  }
  .landing-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-proof {
    padding: 18px;
  }
  .landing-proof img {
    width: 116px;
    margin-bottom: 16px;
  }
  .landing-grid {
    grid-template-columns: 1fr;
  }
  .consult-scene { height: 260px; }
  .doctor { left: 18%; bottom: 40px; transform: scale(.68); transform-origin: bottom; }
  .patient { right: 18%; bottom: 40px; transform: scale(.68); transform-origin: bottom; }
  .screen { top: 42px; }
  .mobile-action-bar {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--green);
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
    width: 100%;
    text-align: left !important;
  }

  .hero .hero-title {
    text-align: left !important;
  }

  .hero-title span {
    white-space: nowrap;
    text-align: left !important;
  }
}

@media (max-width: 760px) {
  .hero {
    position: relative;
    min-height: 100svh;
    margin-top: -64px;
    padding: calc(64px + 52px) 20px 42px;
    display: grid;
    align-items: center;
    overflow: hidden;
  }

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

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  .hero-video-desktop {
    display: none !important;
  }

  .hero-video-mobile {
    display: block !important;
  }

  .hero-content {
    width: 100%;
    max-width: 360px;
    margin: 0;
    transform: none;
    text-align: left;
  }

  .hero-title,
  .hero-title span,
  .support-note {
    text-align: left !important;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
  }
}
