:root {
  --ink: #101828;
  --navy: #17204a;
  --text: #4b5565;
  --muted: #7b8494;
  --line: #dedbd2;
  --soft: #f7f4ea;
  --cream: #fbfaf5;
  --white: #ffffff;
  --blue: #1f6fb2;
  --blue-soft: #edf4fb;
  --green: #167a3f;
  --green-soft: #eaf5ee;
  --amber: #9c6819;
  --shadow: 0 18px 42px rgba(23, 32, 74, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.94);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.contact-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-text small,
.eyebrow {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  gap: 30px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a:hover,
.site-footer a:hover,
.direct-contact a:hover {
  color: var(--blue);
}

.header-actions {
  gap: 12px;
  justify-content: flex-end;
}

.phone-button,
.portal-button,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 900;
}

.phone-button {
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.portal-button {
  padding: 0 18px;
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.98) 0%, rgba(251, 250, 245, 0.94) 48%, rgba(247, 244, 234, 0.76) 100%),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80");
  background-position: center right;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: saturate(0.92);
}

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

.eyebrow {
  margin-bottom: 14px;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

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

.primary-button,
.secondary-button {
  min-height: 54px;
  padding: 0 24px;
  font-size: 1rem;
}

.primary-button {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(23, 32, 74, 0.18);
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.contact-strip {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.contact-strip div {
  min-width: 210px;
  max-width: 340px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.contact-strip dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-strip dd {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 900;
}

.contact-strip a {
  text-decoration: underline;
  text-decoration-color: rgba(31, 111, 178, 0.28);
  text-underline-offset: 3px;
}

.hero-visual {
  display: grid;
  align-items: center;
}

.clinic-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.work-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf5;
}

.panel-header span,
.panel-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-header strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.panel-header b {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.82rem;
}

.work-list {
  display: grid;
  gap: 0;
}

.work-list div {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.work-list p {
  margin-bottom: 0;
  color: var(--text);
}

.work-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.status-dot.green {
  background: var(--green);
}

.status-dot.blue {
  background: var(--blue);
}

.status-dot.amber {
  background: var(--amber);
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.panel-metrics div {
  padding: 18px 24px;
  background: var(--white);
}

.panel-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.25rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-row div {
  padding: 24px clamp(18px, 4vw, 42px);
  background: #fffefa;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.trust-row span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(62px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2 {
  max-width: 820px;
}

.software-section {
  background: #f3efe4;
}

.software-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  margin-bottom: 32px;
}

.software-intro p {
  color: var(--text);
  font-size: 1.02rem;
}

.software-demo {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-video-label {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(222, 219, 210, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(23, 32, 74, 0.08);
}

.demo-video-label span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 122, 63, 0.26);
  animation: livePulse 1800ms ease-out infinite;
}

.software-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(31, 111, 178, 0.13) 45%, transparent 70%);
  transform: translateX(-110%);
  animation: screenSweep 5.5s ease-in-out infinite;
}

.demo-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fbfaf5;
}

.demo-sidebar strong {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.demo-sidebar span {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.demo-sidebar .active {
  background: var(--blue-soft);
  color: var(--blue);
  animation: navFocus 8s ease-in-out infinite;
}

.demo-screen {
  min-width: 0;
  padding: 24px;
  animation: panelFloat 8s ease-in-out infinite;
}

.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.demo-topbar span,
.demo-stats span,
.demo-detail span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-topbar strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 1.15rem;
}

.demo-topbar button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.demo-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfaf5;
  animation: statLift 8s ease-in-out infinite;
}

.demo-stats div:nth-child(2) {
  animation-delay: 900ms;
}

.demo-stats div:nth-child(3) {
  animation-delay: 1800ms;
}

.demo-stats strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.55rem;
}

.demo-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.demo-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.1fr 0.62fr 0.82fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
}

.demo-row:not(.demo-head) {
  animation: rowScan 8s ease-in-out infinite;
}

.demo-row:not(.demo-head):nth-child(3) {
  animation-delay: 1150ms;
}

.demo-row:not(.demo-head):nth-child(4) {
  animation-delay: 2300ms;
}

.demo-row:last-child {
  border-bottom: 0;
}

.demo-head {
  background: #fbfaf5;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-row strong {
  color: var(--ink);
}

.demo-row mark {
  justify-self: start;
  border-radius: 999px;
  padding: 4px 10px;
  background: transparent;
  font-weight: 900;
}

.demo-row .ok {
  background: var(--green-soft);
  color: var(--green);
}

.demo-row .warn {
  background: #fff7e6;
  color: var(--amber);
  animation: statusResolve 8s ease-in-out infinite;
}

.demo-detail {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border-left: 1px solid var(--line);
  background: #fbfaf5;
}

.demo-detail div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  animation: detailBeat 8s ease-in-out infinite;
}

.demo-detail div:nth-child(2) {
  animation-delay: 1300ms;
}

.demo-detail div:nth-child(3) {
  animation-delay: 2600ms;
}

.demo-detail strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.7rem;
}

.demo-detail p {
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 700;
}

.demo-timeline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: rgba(222, 219, 210, 0.66);
}

.demo-timeline span {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: 999px;
  background: var(--navy);
  animation: timelineRun 4.5s linear infinite;
}

.demo-cursor {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 3px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 32, 74, 0.22);
  animation: cursorPath 6s ease-in-out infinite;
}

.demo-cursor::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(23, 32, 74, 0.22);
  animation: cursorRing 1200ms ease-out infinite;
}

.workflow-toast {
  position: absolute;
  z-index: 3;
  right: 280px;
  min-width: 138px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(23, 32, 74, 0.16);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: toastPop 6s ease-in-out infinite;
}

.toast-one {
  top: 118px;
}

.toast-two {
  top: 228px;
  animation-delay: 1.7s;
}

.toast-three {
  top: 338px;
  animation-delay: 3.4s;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 122, 63, 0.28);
  }
  80%,
  100% {
    box-shadow: 0 0 0 10px rgba(22, 122, 63, 0);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes navFocus {
  0%,
  100% {
    background: var(--blue-soft);
    color: var(--blue);
  }
  45%,
  58% {
    background: var(--navy);
    color: var(--white);
  }
}

@keyframes statLift {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }
  18%,
  30% {
    transform: translateY(-10px);
    box-shadow: 0 18px 32px rgba(23, 32, 74, 0.14);
  }
}

@keyframes rowScan {
  0%,
  100% {
    background: transparent;
  }
  18%,
  34% {
    background: rgba(31, 111, 178, 0.14);
    transform: translateX(8px);
  }
}

@keyframes statusResolve {
  0%,
  48%,
  100% {
    background: #fff7e6;
    color: var(--amber);
  }
  62%,
  78% {
    background: var(--green-soft);
    color: var(--green);
  }
}

@keyframes detailBeat {
  0%,
  100% {
    transform: scale(1);
  }
  16%,
  28% {
    transform: scale(1.025);
  }
}

@keyframes timelineRun {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes screenSweep {
  0%,
  18% {
    transform: translateX(-120%);
  }
  48%,
  62% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes cursorPath {
  0%,
  100% {
    top: 86px;
    left: 260px;
  }
  22% {
    top: 180px;
    left: 52%;
  }
  46% {
    top: 292px;
    left: 55%;
  }
  68% {
    top: 162px;
    left: calc(100% - 210px);
  }
  86% {
    top: 345px;
    left: calc(100% - 160px);
  }
}

@keyframes cursorRing {
  0% {
    opacity: 0.8;
    transform: scale(0.65);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes toastPop {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  23%,
  42% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

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

.service-grid article,
.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.service-grid article span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.process-grid p,
.check-list p,
.contact-card p,
.compliance-section p {
  color: var(--text);
}

.process-section,
.contact-section {
  background: #fffefa;
}

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

.process-grid article {
  position: relative;
}

.process-grid article::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  background: var(--soft);
}

.clinic-photo {
  height: 250px;
  margin-top: 26px;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.check-list {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.check-list ul {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.direct-contact a {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 13px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus {
  outline: 3px solid rgba(31, 111, 178, 0.16);
  border-color: var(--blue);
}

.contact-form button {
  min-height: 52px;
  border: 0;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.compliance-section {
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #f7f4ea;
}

.compliance-section h2 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.compliance-section p {
  max-width: 980px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.compliance-section a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fffefa;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-footer address {
  margin: 0;
  color: var(--text);
  font-style: normal;
}

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

  .hero,
  .split-section,
  .contact-card,
  .software-intro {
    grid-template-columns: 1fr;
  }

  .software-demo {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .demo-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-sidebar strong {
    grid-column: 1 / -1;
  }

  .demo-detail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .workflow-toast {
    right: 24px;
  }

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

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

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

@media (max-width: 700px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  .brand-text small,
  .phone-button {
    display: none;
  }

  .portal-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .service-grid,
  .process-grid,
  .trust-row,
  .demo-stats,
  .demo-detail,
  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    grid-template-columns: 1fr;
  }

  .demo-video-label {
    top: 10px;
    right: 10px;
  }

  .demo-cursor,
  .workflow-toast {
    display: none;
  }

  .demo-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .demo-head {
    display: none;
  }

  .work-panel {
    border-radius: 20px;
  }

  .clinic-photo {
    height: 220px;
  }

  .contact-strip div {
    width: 100%;
    max-width: none;
  }

  .contact-card {
    padding: 22px;
  }

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