/* Dentista Fácil: a identidade do aplicativo, em uma página estática mobile first. */
:root {
  --ink: #12343b;
  --deep: #063b49;
  --teal: #006778;
  --cyan: #00bfc7;
  --mint: #e8f5f1;
  --paper: #f8faf7;
  --orange: #ff6a1a;
  --muted: #526b70;
  --line: #dce7e3;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 24px 64px #063b4914;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  font-synthesis: none;
  font-size: 16px;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.045em;
}
button,
a {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
::selection {
  background: #b9eef1;
  color: var(--deep);
}
[hidden] {
  display: none !important;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding-block: 72px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.6;
  margin-bottom: 20px;
}
.status-dot,
.tiny-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex: none;
}
.status-dot {
  margin-right: 8px;
  box-shadow: 0 0 0 4px #00bfc712;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 52px;
  padding: 15px 23px;
  background: var(--deep);
  border: 1px solid transparent;
  border-radius: 9px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  text-align: center;
}
.button svg {
  width: 19px;
  height: 19px;
}
.button:hover {
  background: var(--teal);
  box-shadow: 0 6px 22px #063b4922;
  transform: translateY(-2px);
}
.button-primary {
  background: var(--orange);
  color: #24200e;
}
.button-primary:hover {
  background: #ff853f;
  color: #24200e;
}
.button-small {
  min-height: 46px;
  padding: 12px 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link svg {
  width: 19px;
  height: 19px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  padding: 12px 20px;
  background: var(--deep);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  letter-spacing: -0.045em;
  font-size: 19px;
  white-space: nowrap;
  line-height: 1.1;
}
.brand img {
  width: 49px;
  height: 49px;
  margin-left: -8px;
  margin-right: 3px;
}
.brand strong {
  font-weight: 800;
}
.brand-domain {
  color: var(--teal);
  font-size: 14px;
  letter-spacing: -0.03em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffffff7;
  border-bottom: 1px solid #e3ece780;
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}
.main-nav > a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.main-nav > a:not(.button):hover {
  color: var(--teal);
}
.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  padding: 11px;
  color: var(--deep);
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.main-nav {
  display: none;
  position: absolute;
  inset: 75px 0 auto;
  background: white;
  padding: 16px 20px 24px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 24px #063b490a;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}
.main-nav.is-open {
  display: flex;
}
.main-nav .button {
  margin-top: 8px;
}
html:not(.js-ready) .header-inner {
  flex-wrap: wrap;
}
html:not(.js-ready) .menu-toggle {
  display: none;
}
html:not(.js-ready) .main-nav {
  display: flex;
  position: static;
  flex-direction: row;
  flex-wrap: wrap;
  box-shadow: none;
  border: 0;
  padding: 0 0 16px;
  gap: 12px;
  font-size: 12px;
}
html:not(.js-ready) .feature-tabs {
  display: none;
}
html:not(.js-ready) [role="tabpanel"][hidden] {
  display: grid !important;
  margin-top: 24px;
}
.hero {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 35px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(42px, 11vw, 68px);
  font-weight: 740;
  line-height: 1.065;
  letter-spacing: -0.055em;
}
.hero h1 > span {
  color: var(--teal);
}
.hero-description {
  max-width: 465px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero .button-primary {
  width: 100%;
  max-width: 390px;
  min-height: 56px;
}
.cta-note {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  font-size: 10px;
  margin-top: 13px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 390px;
}
.cta-note svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  margin-top: 1px;
}
.hero-secondary {
  margin-top: 15px;
  font-size: 13px;
}
.hero-secondary span {
  font-size: 21px;
}
.hero-visual {
  position: relative;
  isolation: isolate;
  padding: 12px 0 60px;
  min-width: 0;
}
.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid #c4dcd4;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 450px;
  height: 450px;
  top: -20px;
  left: 0;
}
.orbit-two {
  width: 340px;
  height: 340px;
  top: 35px;
  left: 55px;
  background: #e4f1eb99;
}
.demo-window {
  border: 1px solid #d9e7e3;
  border-radius: 13px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  position: relative;
}
.window-bar {
  height: 34px;
  border-bottom: 1px solid #e7eeeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  background: #fff;
  font-size: 9px;
  color: #6c8285;
}
.window-bar > svg {
  width: 13px;
  height: 13px;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d7e3df;
}
.window-dots i:first-child {
  background: #ecc4ac;
}
.window-dots i:nth-child(2) {
  background: #f0d799;
}
.demo-app {
  display: flex;
  min-height: 318px;
}
.demo-sidebar {
  display: none;
}
.demo-content {
  flex: 1;
  padding: 18px 14px 20px;
  min-width: 0;
}
.demo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.demo-kicker {
  font-size: 7px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.demo-heading h2 {
  font-size: 25px;
  margin-top: 4px;
  letter-spacing: -0.035em;
}
.demo-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  font-size: 9px;
  font-weight: 700;
}
.demo-subtitle {
  font-size: 8px;
  color: var(--muted);
  margin-top: 5px;
}
.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 17px 0 19px;
}
.demo-stats > div {
  background: #f4f8f7;
  border: 1px solid #e5eeea;
  border-radius: 7px;
  padding: 10px 8px;
}
.demo-stats > div:first-child {
  background: #edf8f5;
  border-color: #cce6de;
}
.demo-stats span {
  display: block;
  font-size: 6px;
  color: var(--muted);
}
.demo-stats strong {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  margin-top: 11px;
  letter-spacing: -0.04em;
}
.demo-stats .tiny-dot {
  width: 5px;
  height: 5px;
}
.demo-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 8px;
}
.demo-list-heading > span {
  font-size: 7px;
  color: var(--muted);
}
.appointment-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 0;
  border-bottom: 1px solid #edf1ef;
  font-size: 8px;
}
.appointment-row > time {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 700;
  flex: none;
}
.mint {
  background: #e0f0e9;
  color: #245e52;
}
.peach {
  background: #ffeadf;
  color: #8c4c26;
}
.lilac {
  background: #eceafa;
  color: #625185;
}
.appointment-row > div {
  min-width: 0;
}
.appointment-row b,
.appointment-row small {
  display: block;
}
.appointment-row b {
  font-size: 8px;
  font-weight: 650;
}
.appointment-row small {
  font-size: 6px;
  color: var(--muted);
  margin-top: 2px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 600;
  font-size: 7px;
  padding: 4px 6px;
  white-space: nowrap;
  line-height: 1.4;
}
.appointment-row > .pill {
  margin-left: auto;
}
.teal {
  background: #e5f4ee;
  color: #266856;
}
.orange {
  background: #fff0e2;
  color: #8f4b17;
}
.neutral {
  background: #f0f3f2;
  color: #52696d;
}
.demo-task {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 17px;
  padding: 9px;
  background: #f8faf7;
  border: 1px dashed #d6e5dc;
  border-radius: 7px;
  font-size: 8px;
}
.task-check {
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background: #e2efe6;
  color: var(--teal);
}
.task-check svg {
  width: 12px;
  height: 12px;
}
.demo-task b {
  font-size: 8px;
}
.demo-task small {
  display: block;
  font-size: 6px;
  color: var(--muted);
}
.demo-task > svg {
  width: 13px;
  height: 13px;
  margin-left: auto;
}
.phone-preview {
  display: none;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #586f73;
  font-size: 9px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 9px;
  border-top: 1px solid var(--line);
  padding-block: 27px 30px;
  align-items: center;
}
.hero-proof > span {
  grid-column: 1/-1;
  font-size: 12px;
  font-weight: 700;
}
.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 550;
}
.hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}
.section-heading {
  margin-bottom: 35px;
}
.section-heading h2,
.connected-intro h2,
.steps-section h2,
.faq-section h2 {
  font-size: clamp(30px, 7.5vw, 43px);
  font-weight: 680;
  letter-spacing: -0.05em;
}
.section-heading h2 span {
  color: var(--teal);
}
.section-heading > p:not(.eyebrow),
.split-heading > p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.8;
}
.split-heading > p br {
  display: none;
}
.pain-grid {
  display: grid;
  gap: 0;
}
.pain-card {
  padding: 27px 0;
  border-top: 1px solid var(--line);
}
.pain-number {
  font-size: 10px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pain-card h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin: 20px 0 15px;
  font-weight: 650;
}
.pain-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.benefit-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 650;
  color: var(--teal);
  margin-top: 22px;
}
.benefit-line svg {
  width: 16px;
  height: 16px;
}
.product-section {
  background: var(--paper);
  border-top: 1px solid #edf1eb;
  border-bottom: 1px solid #edf1eb;
}
.centered {
  text-align: center;
}
.centered > p:not(.eyebrow) {
  max-width: 560px;
  margin-inline: auto;
}
.feature-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 6px;
  background: #eaf0ec;
  border: 1px solid #e0e9e3;
  border-radius: 12px;
  margin: 0 auto 30px;
  max-width: 770px;
}
.feature-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 8px;
  min-height: 47px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
}
.feature-tabs button svg {
  width: 18px;
  height: 18px;
}
.feature-tabs button[aria-selected="true"] {
  background: var(--white);
  border-color: #dee7e1;
  color: var(--deep);
  box-shadow: 0 2px 4px #063b4908;
}
.feature-tabs button:hover {
  color: var(--teal);
  background: #ffffff66;
}
.feature-panel {
  display: grid;
  gap: 28px;
  align-items: center;
}
.feature-copy {
  padding: 8px 0;
}
.feature-index {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  color: var(--teal);
}
.feature-copy h3 {
  font-size: 28px;
  letter-spacing: -0.045em;
  margin: 17px 0;
  line-height: 1.2;
  font-weight: 650;
}
.feature-copy > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 23px 0 17px;
  display: grid;
  gap: 13px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.6;
}
.check-list svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
  margin-top: 2px;
}
.feature-copy .feature-note {
  font-size: 11px;
  margin: 0 0 15px;
  color: #526b70;
}
.feature-art {
  min-width: 0;
  background: white;
  border: 1px solid #dce7df;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 35px #063b4907;
  padding: 18px 14px;
}
.art-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 650;
}
.art-heading > span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
}
.art-heading svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.art-heading .pill {
  font-size: 8px;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 36px 1fr 1fr;
  gap: 7px;
}
.schedule-title {
  font-size: 9px;
  font-weight: 650;
  text-align: center;
  padding: 0 0 10px;
  color: var(--muted);
}
.schedule-title:first-child {
  font-size: 8px;
}
.schedule-grid time {
  font-size: 8px;
  font-weight: 600;
  padding-top: 10px;
  color: var(--muted);
}
.schedule-event {
  border-radius: 6px;
  padding: 11px 9px;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #87bda9;
  gap: 4px;
  min-height: 92px;
}
.schedule-event.peach {
  border-color: #e6b394;
}
.schedule-event.lilac {
  border-color: #b5a8d9;
}
.schedule-event b {
  font-size: 10px;
  font-weight: 650;
}
.schedule-event span {
  font-size: 9px;
}
.schedule-event small {
  font-size: 8px;
  opacity: 0.8;
  margin-top: 5px;
}
.schedule-empty {
  border: 1px dashed #d6e4db;
  display: grid;
  place-items: center;
  font-size: 8px;
  border-radius: 6px;
  color: #60776f;
  text-align: center;
  padding: 4px;
}
.schedule-block {
  text-align: center;
  font-size: 9px;
  color: #65766e;
  background: repeating-linear-gradient(
    -45deg,
    #fafbf9,
    #fafbf9 4px,
    #eef2ec 4px,
    #eef2ec 5px
  );
  padding: 10px;
  border-radius: 6px;
}
.art-caption {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
}
.record-patient {
  display: flex;
  gap: 13px;
  align-items: center;
}
.record-patient .avatar {
  width: 43px;
  height: 43px;
  font-size: 13px;
}
.record-patient h4 {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.record-patient p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.record-tags {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  margin-top: 24px;
}
.record-tags span {
  padding: 9px;
  font-size: 10px;
}
.record-tags span:first-child {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
}
.record-draft {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 17px 0;
  padding: 13px;
}
.record-draft > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 9px;
}
.record-draft p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 15px;
}
.record-line {
  display: block;
  background: #edf2ef;
  height: 5px;
  width: 95%;
  margin-top: 12px;
  border-radius: 2px;
}
.record-line.short {
  width: 65%;
}
.record-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 10px;
}
.record-foot svg {
  width: 16px;
  height: 16px;
}
.financial-total {
  background: var(--paper);
  border-radius: 9px;
  padding: 18px;
}
.financial-total > span {
  font-size: 10px;
  color: var(--muted);
}
.financial-total strong {
  display: block;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.055em;
  margin-top: 5px;
}
.payment-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 23px 0;
  font-size: 11px;
}
.payment-line > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}
.payment-line b {
  font-size: 13px;
}
.orange-dot {
  background: #db935a;
}
.payment-progress {
  height: 8px;
  border-radius: 10px;
  background: #f1e5d9;
  overflow: hidden;
}
.payment-progress > span {
  display: block;
  width: 40%;
  height: 100%;
  background: #48a28c;
}
.financial-note {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 22px;
  color: var(--teal);
  font-size: 10px;
}
.financial-note svg {
  width: 16px;
  height: 16px;
}
.site-art {
  padding: 0 0 16px;
}
.mini-browser {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.mini-site {
  padding: 23px;
  background: #f0f6f1;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--teal);
  font-weight: 650;
}
.mini-brand svg {
  width: 15px;
  height: 15px;
}
.mini-site h4 {
  font-size: 26px;
  margin-top: 20px;
  font-weight: 650;
}
.mini-site p {
  font-size: 10px;
  margin-top: 9px;
  color: var(--muted);
}
.booking-fields {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}
.booking-fields span {
  display: flex;
  justify-content: space-between;
  border: 1px solid #dbe5df;
  padding: 9px 10px;
  border-radius: 6px;
  background: white;
  font-size: 9px;
}
.booking-times {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}
.booking-times span {
  flex: 1;
  text-align: center;
  padding: 6px;
  border: 1px solid #dbe5df;
  font-size: 9px;
  background: white;
  border-radius: 5px;
}
.booking-times .selected {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.demo-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px;
  background: var(--deep);
  color: white;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 650;
}
.demo-submit svg {
  width: 14px;
  height: 14px;
}
.mini-site > small {
  display: block;
  font-size: 8px;
  text-align: center;
  margin-top: 8px;
  color: var(--muted);
}
.no-js-note {
  font-size: 14px;
  margin-top: 20px;
}
.connected-grid {
  display: grid;
  gap: 37px;
}
.connected-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  max-width: 350px;
  line-height: 1.8;
  margin-top: 22px;
}
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}
.audience-tags span {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 5px;
}
.connected-features {
  display: grid;
  gap: 26px;
}
.connected-features article {
  display: flex;
  gap: 18px;
}
.connected-features article > svg {
  width: 23px;
  height: 23px;
  color: var(--teal);
  margin-top: 3px;
}
.connected-features h3 {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
}
.connected-features p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 10px;
  max-width: 400px;
}
.steps-section {
  padding-top: 30px;
}
.steps-grid {
  display: grid;
  gap: 25px;
}
.steps-grid article {
  position: relative;
  padding-left: 65px;
  min-height: 95px;
}
.step-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  border: 1px solid #c9e4d8;
  background: #eef7f1;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--teal);
  font-weight: 650;
}
.steps-grid h3 {
  font-size: 19px;
  letter-spacing: -0.025em;
  margin-top: 8px;
}
.steps-grid p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
}
.trial-section {
  background: var(--deep);
  color: white;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.trial-section:before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -350px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid #ffffff14;
  pointer-events: none;
}
.trial-grid {
  display: grid;
  gap: 35px;
  align-items: center;
  position: relative;
}
.trial-copy > .eyebrow {
  color: #9fcabf;
  font-size: 10px;
}
.trial-copy h2 {
  font-size: clamp(31px, 8vw, 46px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.045em;
}
.trial-copy h2 span {
  color: #a6d8c9;
}
.trial-copy > p:not(.eyebrow) {
  color: #bdd2d3;
  font-size: 14px;
  max-width: 435px;
  line-height: 1.8;
  margin-top: 23px;
}
.trial-checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 11px;
  font-size: 12px;
  color: #e1eeee;
}
.trial-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.trial-checks svg {
  width: 16px;
  height: 16px;
  color: #9dd9c5;
}
.trial-card {
  padding: 29px 22px;
  background: #f8faf5;
  border-radius: 15px;
  color: var(--deep);
  max-width: 410px;
  width: 100%;
  text-align: center;
  justify-self: center;
  border: 1px solid #fff;
}
.trial-label {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  color: var(--teal);
}
.trial-days {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 108px;
  letter-spacing: -0.08em;
  font-weight: 550;
  line-height: 1.3;
  margin-top: 9px;
}
.trial-days > span {
  font-size: 21px;
  letter-spacing: -0.035em;
  text-align: left;
  line-height: 1.3;
  font-weight: 500;
}
.trial-card > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin: 3px 0 24px;
}
.trial-card .button {
  width: 100%;
}
.trial-card > small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 15px;
}
.trial-section a:focus-visible {
  outline-color: #ffb789;
}
.faq-grid {
  display: grid;
  gap: 35px;
}
.faq-grid > div > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  max-width: 290px;
  margin: 18px 0 10px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
  min-height: 74px;
  padding: 20px 0;
  list-style: none;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  flex: none;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 26px 22px 0;
  max-width: 640px;
}
.final-cta {
  background: var(--mint);
  padding: 42px 0;
}
.final-cta > .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}
.final-cta .eyebrow {
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.final-cta h2 {
  font-size: 29px;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.2;
}
.final-cta .button {
  width: 100%;
}
.site-footer {
  padding: 38px 0 90px;
}
.footer-main {
  display: grid;
  gap: 16px;
}
.footer-main > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.footer-main nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  color: var(--muted);
}
.footer-main nav a:hover {
  color: var(--teal);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 26px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.mobile-cta {
  position: fixed;
  z-index: 25;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffffffa;
  border-top: 1px solid var(--line);
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(12px);
  box-shadow: 0 -5px 25px #063b4908;
  transition:
    transform 0.2s,
    visibility 0.2s;
}
.mobile-cta .button {
  width: 100%;
  min-height: 48px;
  font-size: 13px;
}
.mobile-cta.is-hidden {
  transform: translateY(110%);
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 480px) {
  .container {
    width: min(1200px, calc(100% - 56px));
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero .button-primary {
    width: auto;
  }
  .mobile-break {
    display: none;
  }
  .hero-description {
    font-size: 17px;
  }
  .cta-note {
    font-size: 11px;
  }
  .demo-content {
    padding: 24px 23px;
  }
  .demo-stats span {
    font-size: 8px;
  }
  .demo-subtitle,
  .demo-list-heading,
  .appointment-row b {
    font-size: 10px;
  }
  .demo-stats strong {
    font-size: 26px;
  }
  .demo-kicker {
    font-size: 8px;
  }
  .appointment-row {
    gap: 10px;
    padding-block: 14px;
  }
  .appointment-row > time {
    font-size: 10px;
  }
  .appointment-row small {
    font-size: 8px;
  }
  .appointment-row .pill {
    font-size: 8px;
  }
  .demo-task small {
    font-size: 8px;
  }
  .demo-task b {
    font-size: 10px;
  }
  .demo-avatar {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
  .avatar {
    width: 32px;
    height: 32px;
    font-size: 9px;
  }
  .hero-proof > div {
    font-size: 12px;
  }
  .feature-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-tabs button {
    font-size: 11px;
    flex-direction: column;
    gap: 5px;
  }
  .feature-art {
    padding: 25px;
  }
  .site-art {
    padding: 0 0 20px;
  }
  .schedule-grid {
    grid-template-columns: 45px 1fr 1fr;
  }
  .schedule-title,
  .schedule-event b {
    font-size: 11px;
  }
  .schedule-event span,
  .schedule-grid time {
    font-size: 10px;
  }
  .art-heading {
    font-size: 13px;
  }
  .schedule-empty {
    font-size: 10px;
  }
  .record-draft > div {
    font-size: 11px;
  }
  .record-draft .pill {
    font-size: 8px;
  }
  .mini-site {
    padding: 28px;
  }
  .mini-site h4 {
    font-size: 30px;
  }
  .financial-total strong {
    font-size: 43px;
  }
  .payment-line {
    font-size: 13px;
  }
  .payment-line b {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .section {
    padding-block: 90px;
  }
  .hero-grid {
    padding-top: 60px;
    max-width: 800px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero-description {
    max-width: 550px;
  }
  .hero-proof {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .hero-proof > span {
    grid-column: 1/-1;
  }
  .demo-sidebar {
    display: flex;
    flex-direction: column;
    width: 105px;
    flex: none;
    background: #fcfdfb;
    border-right: 1px solid #e9efea;
    padding: 12px 8px;
    gap: 7px;
  }
  .demo-sidebar > img {
    align-self: center;
    margin-bottom: 8px;
    width: 44px;
    height: 44px;
  }
  .sidebar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 8px;
    padding: 8px 7px;
    color: var(--muted);
    border-radius: 5px;
  }
  .sidebar-item svg {
    width: 13px;
    height: 13px;
  }
  .sidebar-item.active {
    background: #e8f4ee;
    color: var(--teal);
    font-weight: 650;
  }
  .sidebar-bottom {
    margin-top: auto;
    font-size: 7px;
    padding: 7px;
    color: var(--muted);
    line-height: 1.8;
  }
  .sidebar-bottom b {
    font-size: 6px;
    font-weight: 500;
  }
  .hero-visual {
    padding: 30px 30px 90px 0;
    margin-bottom: 10px;
  }
  .hero-visual figcaption {
    bottom: 0;
    text-align: left;
    font-size: 10px;
  }
  .orbit-one {
    width: 610px;
    height: 610px;
    top: -60px;
    left: 60px;
  }
  .orbit-two {
    width: 470px;
    height: 470px;
    top: 10px;
    left: 130px;
  }
  .phone-preview {
    position: absolute;
    display: block;
    width: 158px;
    right: 0;
    bottom: 30px;
    min-height: 274px;
    border: 5px solid #1e4149;
    border-radius: 26px;
    padding: 17px 11px 0;
    background: #fcfdfa;
    box-shadow: 0 15px 30px #063b4929;
    transform: rotate(4deg);
  }
  .phone-speaker {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 4px;
    border-radius: 5px;
    background: #1e4149;
  }
  .phone-top {
    display: flex;
    align-items: center;
    font-size: 7px;
    line-height: 1.6;
    margin: 3px 0 20px;
  }
  .phone-top img {
    margin-left: -5px;
    width: 34px;
    height: 34px;
  }
  .phone-top b {
    font-size: 7px;
    font-weight: 650;
  }
  .phone-label {
    font-size: 7px;
    color: var(--teal);
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .phone-preview h3 {
    font-size: 25px;
    font-weight: 550;
    line-height: 1.1;
    margin-top: 4px;
  }
  .phone-consult {
    font-size: 6px;
    color: var(--muted);
    padding: 12px 7px;
    background: #e7f2eb;
    border-radius: 7px;
    margin-top: 13px;
  }
  .phone-consult > .tiny-dot {
    width: 4px;
    height: 4px;
    margin-right: 3px;
  }
  .phone-consult b {
    display: block;
    font-size: 17px;
    letter-spacing: -0.04em;
    color: var(--deep);
    margin-top: 7px;
  }
  .phone-consult small {
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .phone-task {
    display: flex;
    gap: 5px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 6px;
    line-height: 1.8;
  }
  .phone-task svg {
    width: 13px;
    height: 13px;
    color: var(--teal);
  }
  .phone-task b {
    font-size: 6px;
    color: var(--ink);
  }
  .phone-nav {
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 13px -3px 0;
    height: 35px;
  }
  .phone-nav svg {
    width: 12px;
    height: 12px;
    color: var(--muted);
  }
  .phone-nav svg:first-child {
    color: var(--teal);
  }
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .pain-card {
    padding: 28px 0 0;
  }
  .pain-card h3 {
    font-size: 22px;
  }
  .pain-card p {
    font-size: 13px;
  }
  .benefit-line {
    font-size: 10px;
    gap: 6px;
  }
  .feature-tabs {
    margin-bottom: 45px;
  }
  .feature-tabs button {
    flex-direction: row;
    font-size: 13px;
    min-height: 47px;
    padding: 12px;
  }
  .feature-panel {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-height: 390px;
  }
  .feature-copy h3 {
    font-size: 29px;
  }
  .feature-copy > p {
    font-size: 13px;
  }
  .feature-art {
    padding: 20px 14px;
  }
  .site-art {
    padding: 0 0 17px;
  }
  .schedule-grid {
    grid-template-columns: 35px 1fr 1fr;
    gap: 6px;
  }
  .schedule-event {
    padding: 10px 6px;
  }
  .schedule-event b {
    font-size: 9px;
  }
  .schedule-title {
    font-size: 9px;
  }
  .art-heading {
    font-size: 11px;
  }
  .connected-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 65px;
  }
  .connected-features {
    gap: 27px;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  .steps-grid article {
    padding-left: 0;
    padding-top: 64px;
  }
  .steps-grid article:after {
    content: "";
    position: absolute;
    left: 65px;
    right: -10px;
    top: 22px;
    border-top: 1px dashed #bdd8cc;
  }
  .steps-grid article:last-child:after {
    display: none;
  }
  .steps-grid p {
    max-width: 280px;
  }
  .trial-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
  }
  .trial-section {
    padding-block: 75px;
  }
  .trial-copy h2 {
    font-size: 37px;
  }
  .trial-card {
    padding: 32px 25px;
  }
  .trial-copy > .eyebrow {
    font-size: 10px;
  }
  .trial-checks {
    font-size: 13px;
  }
  .faq-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 55px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .final-cta > .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
  .final-cta h2 {
    font-size: 31px;
  }
  .final-cta .button {
    width: auto;
    flex: none;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .footer-main > p {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-main > nav {
    grid-column: 2;
    grid-row: 1/3;
    align-items: flex-end;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .site-footer {
    padding-bottom: 30px;
  }
  .mobile-cta {
    display: none;
  }
}
@media (min-width: 1024px) {
  .container {
    width: min(1200px, calc(100% - 96px));
  }
  .header-inner {
    min-height: 87px;
  }
  .brand {
    font-size: 21px;
  }
  .brand img {
    width: 54px;
    height: 54px;
  }
  .menu-toggle {
    display: none;
  }
  .main-nav {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    font-size: 12px;
  }
  .main-nav .button {
    margin-top: 0;
  }
  .main-nav .login-link {
    margin-left: 14px;
  }
  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    max-width: 1200px;
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 67px;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(55px, 5.65vw, 76px);
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 445px;
    margin-top: 27px;
    margin-bottom: 29px;
  }
  .hero .button-primary {
    font-size: 13px;
  }
  .hero-visual {
    padding: 30px 22px 75px 0;
    margin: 0 -20px 0 0;
    align-self: center;
  }
  .hero-visual figcaption {
    bottom: 3px;
    left: 18px;
    font-size: 9px;
  }
  .orbit-one {
    width: 590px;
    height: 590px;
    top: -40px;
    left: -25px;
  }
  .orbit-two {
    width: 460px;
    height: 460px;
    top: 25px;
    left: 40px;
  }
  .demo-sidebar {
    width: 83px;
    padding-inline: 5px;
  }
  .sidebar-item {
    font-size: 7px;
    gap: 5px;
    padding: 8px 4px;
  }
  .sidebar-item svg {
    width: 12px;
    height: 12px;
  }
  .demo-content {
    padding: 20px 15px 22px;
  }
  .demo-kicker {
    font-size: 6px;
  }
  .demo-heading h2 {
    font-size: 24px;
  }
  .demo-stats {
    gap: 7px;
  }
  .demo-stats span {
    font-size: 6px;
  }
  .demo-stats strong {
    font-size: 24px;
  }
  .demo-subtitle {
    font-size: 7px;
  }
  .demo-list-heading {
    font-size: 8px;
  }
  .demo-list-heading > span {
    font-size: 6px;
  }
  .appointment-row {
    gap: 7px;
  }
  .appointment-row b {
    font-size: 8px;
  }
  .appointment-row small {
    font-size: 6px;
  }
  .appointment-row .pill {
    font-size: 6px;
  }
  .appointment-row > time {
    font-size: 8px;
  }
  .avatar {
    width: 27px;
    height: 27px;
    font-size: 8px;
  }
  .demo-task b {
    font-size: 8px;
  }
  .demo-task small {
    font-size: 6px;
  }
  .phone-preview {
    width: 155px;
    right: 0;
    bottom: 10px;
  }
  .hero-proof {
    grid-template-columns: 1fr repeat(4, auto);
    justify-content: space-between;
    gap: 18px;
    padding-block: 27px;
  }
  .hero-proof > span {
    grid-column: auto;
    font-size: 12px;
  }
  .hero-proof > div {
    font-size: 10px;
    gap: 8px;
  }
  .hero-proof svg {
    width: 18px;
    height: 18px;
  }
  .section {
    padding-block: 105px;
  }
  .section-heading {
    margin-bottom: 45px;
  }
  .split-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
  }
  .split-heading > p {
    max-width: 390px;
    font-size: 14px;
    margin: 0 0 3px;
  }
  .pain-grid {
    gap: 45px;
  }
  .pain-card h3 {
    font-size: 25px;
  }
  .pain-card p {
    font-size: 14px;
  }
  .benefit-line {
    font-size: 12px;
  }
  .feature-panel {
    gap: 70px;
    min-height: 430px;
    max-width: 1080px;
    margin: auto;
  }
  .feature-copy h3 {
    font-size: 34px;
  }
  .feature-copy > p {
    font-size: 14px;
  }
  .feature-art {
    padding: 28px;
  }
  .site-art {
    padding: 0 0 19px;
  }
  .schedule-grid {
    grid-template-columns: 45px 1fr 1fr;
    gap: 9px;
  }
  .schedule-title {
    font-size: 10px;
  }
  .schedule-event b {
    font-size: 11px;
  }
  .schedule-event {
    min-height: 100px;
    padding: 12px;
  }
  .schedule-event span {
    font-size: 10px;
  }
  .art-heading {
    font-size: 13px;
  }
  .art-heading .pill {
    font-size: 9px;
  }
  .record-patient h4 {
    font-size: 19px;
  }
  .record-patient p {
    font-size: 11px;
  }
  .record-draft > div {
    font-size: 12px;
  }
  .record-draft .pill {
    font-size: 9px;
  }
  .record-draft p {
    font-size: 12px;
  }
  .record-draft {
    padding: 19px;
    margin-bottom: 24px;
  }
  .record-foot {
    font-size: 11px;
  }
  .record-tags span {
    font-size: 11px;
  }
  .financial-total {
    padding: 24px;
  }
  .financial-total strong {
    font-size: 47px;
  }
  .financial-total > span {
    font-size: 11px;
  }
  .financial-note {
    font-size: 12px;
  }
  .mini-site {
    padding: 26px 36px;
  }
  .mini-site h4 {
    font-size: 31px;
  }
  .booking-fields span {
    font-size: 10px;
  }
  .booking-times span {
    font-size: 10px;
  }
  .mini-site p {
    font-size: 11px;
  }
  .connected-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
  }
  .connected-features {
    grid-template-columns: 1fr 1fr;
    gap: 38px 32px;
  }
  .connected-features article {
    flex-direction: column;
    gap: 18px;
  }
  .connected-features h3 {
    font-size: 19px;
    line-height: 1.3;
  }
  .connected-features p {
    font-size: 13px;
  }
  .connected-features article > svg {
    width: 26px;
    height: 26px;
  }
  .steps-section {
    padding-top: 10px;
  }
  .steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px;
  }
  .trial-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    max-width: 1080px;
  }
  .trial-copy h2 {
    font-size: 46px;
  }
  .trial-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .trial-card {
    padding: 35px 32px;
  }
  .trial-label {
    font-size: 10px;
  }
  .trial-days {
    font-size: 118px;
  }
  .trial-days > span {
    font-size: 23px;
  }
  .trial-card > p {
    font-size: 14px;
  }
  .trial-card > small {
    font-size: 10px;
  }
  .faq-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 105px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .faq-list details p {
    font-size: 14px;
  }
  .final-cta {
    padding: 48px 0;
  }
  .final-cta h2 {
    font-size: 35px;
  }
  .final-cta .eyebrow {
    font-size: 10px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }
  .footer-main > p {
    grid-column: 2;
    grid-row: 1;
    font-size: 12px;
    justify-self: center;
  }
  .footer-main > nav {
    grid-column: 3;
    grid-row: 1;
  }
  .footer-bottom {
    margin-top: 32px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-main nav a {
    min-height: 34px;
    font-size: 11px;
  }
}
@media (min-width: 1280px) {
  .hero-grid {
    gap: 46px;
    padding-top: 73px;
    padding-bottom: 75px;
  }
  .hero-visual {
    margin-right: -24px;
    padding-right: 21px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero .button-primary {
    font-size: 14px;
  }
  .demo-sidebar {
    width: 96px;
    padding: 13px 6px;
  }
  .sidebar-item {
    font-size: 8px;
    padding: 9px 6px;
  }
  .demo-content {
    padding: 23px 19px 25px;
  }
  .demo-stats span {
    font-size: 7px;
  }
  .demo-stats strong {
    font-size: 28px;
  }
  .demo-subtitle {
    font-size: 8px;
  }
  .demo-kicker {
    font-size: 7px;
  }
  .demo-list-heading {
    font-size: 9px;
  }
  .demo-list-heading > span {
    font-size: 7px;
  }
  .appointment-row b {
    font-size: 9px;
  }
  .appointment-row small {
    font-size: 7px;
  }
  .appointment-row .pill {
    font-size: 7px;
  }
  .appointment-row > time {
    font-size: 9px;
  }
  .avatar {
    width: 31px;
    height: 31px;
    font-size: 9px;
  }
  .demo-task b {
    font-size: 9px;
  }
  .demo-task small {
    font-size: 7px;
  }
  .demo-task {
    margin-top: 21px;
    padding: 12px;
  }
  .phone-preview {
    width: 165px;
    bottom: 7px;
    right: -3px;
    min-height: 290px;
    padding-top: 21px;
  }
  .phone-preview h3 {
    font-size: 28px;
  }
  .phone-top {
    margin-bottom: 21px;
  }
  .phone-nav {
    height: 37px;
  }
  .hero-proof > div {
    font-size: 12px;
  }
  .hero-visual figcaption {
    font-size: 10px;
  }
  .window-bar {
    height: 37px;
  }
}
@media (max-width: 359px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero .button-primary {
    font-size: 12px;
    padding-inline: 12px;
  }
  .hero-description {
    font-size: 14px;
  }
  .brand {
    font-size: 17px;
  }
  .appointment-row {
    gap: 5px;
  }
  .appointment-row .avatar {
    display: none;
  }
  .feature-tabs button {
    font-size: 11px;
  }
  .schedule-event {
    padding: 9px 6px;
  }
  .schedule-event b {
    font-size: 9px;
  }
  .trial-card {
    padding-inline: 18px;
  }
  .trial-label {
    font-size: 8px;
  }
  .record-draft > div {
    flex-wrap: wrap;
  }
  .hero-proof > div {
    font-size: 9px;
  }
  .section-heading h2,
  .connected-intro h2,
  .steps-section h2,
  .faq-section h2 {
    font-size: 28px;
  }
}
/* A oferta e as condições mantêm leitura confortável também em telas compactas. */
.cta-note {
  font-size: 12px;
  max-width: 420px;
}
.trial-card > small {
  font-size: 12px;
}
.feature-copy .feature-note {
  font-size: 12px;
}
.hero-visual figcaption,
.art-caption {
  font-size: 11px;
}
@media (max-width: 767px) {
  .hero-description,
  .pain-card p,
  .feature-copy > p,
  .check-list li,
  .connected-intro > p:not(.eyebrow),
  .connected-features p,
  .steps-grid p,
  .trial-copy > p:not(.eyebrow),
  .faq-grid > div > p:not(.eyebrow),
  .faq-list details p,
  .section-heading > p:not(.eyebrow),
  .split-heading > p {
    font-size: 16px;
  }
  .faq-list summary {
    font-size: 16px;
  }
  .feature-copy .feature-note {
    font-size: 13px;
  }
  .benefit-line {
    font-size: 13px;
  }
  .trial-checks {
    font-size: 14px;
  }
  .trial-card > p {
    font-size: 15px;
  }
  .footer-main > p,
  .footer-main nav a {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .mobile-cta,
  .phone-preview,
  .visual-orbit,
  .feature-tabs,
  .final-cta {
    display: none !important;
  }
  .hero {
    overflow: visible;
  }
  body {
    color: #000;
  }
  .section {
    padding: 24px 0;
  }
  .container {
    width: 100%;
  }
  .hero-grid {
    display: block;
  }
  .hero-visual {
    display: none;
  }
  .hero-copy {
    margin-bottom: 30px;
  }
  .feature-panel[hidden] {
    display: grid !important;
  }
  .trial-section {
    background: #fff;
    color: #000;
  }
  .trial-copy > p,
  .trial-copy h2 span,
  .trial-copy > .eyebrow,
  .trial-checks {
    color: #000;
  }
  .trial-card {
    border: 1px solid #aaa;
  }
  .pain-card,
  .feature-panel,
  .steps-grid article {
    break-inside: avoid;
  }
  .site-footer {
    padding-bottom: 0;
  }
}
