:root {
  --ink: #10201f;
  --muted: #5b6b69;
  --teal: #0f766e;
  --teal-strong: #0b5f59;
  --mint: #dff7ef;
  --coral: #f97362;
  --gold: #f2b84b;
  --blue: #2563eb;
  --surface: #ffffff;
  --soft: #f5f7f6;
  --line: #dfe7e4;
  --shadow: 0 24px 80px rgba(9, 32, 29, 0.18);
  --page-max: 1440px;
  --page-pad: clamp(22px, 5vw, 72px);
  --safe-x: max(var(--page-pad), calc((100vw - var(--page-max)) / 2 + var(--page-pad)));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--soft);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--teal-strong);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px var(--safe-x);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 231, 228, 0.9);
  backdrop-filter: blur(18px);
}

section[id] {
  scroll-margin-top: 98px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 138px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.95rem;
  color: #24413e;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a,
.text-link {
  position: relative;
  font-weight: 700;
}

.nav-links a::after,
.text-link::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 800;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.24);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 999px;
}

@media (min-width: 861px) and (max-width: 1180px) {
  .site-header {
    gap: 14px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand img {
    width: 120px;
  }

  .nav-links,
  .nav-links ul {
    gap: 12px;
  }

  .nav-links {
    font-size: 0.84rem;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

.hero {
  position: relative;
  min-height: 710px;
  padding: 148px var(--safe-x) 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg {
  background-image: url("home-hero.jpg");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 33, 30, 0.9) 0%, rgba(5, 33, 30, 0.76) 42%, rgba(5, 33, 30, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 33, 30, 0.35), rgba(5, 33, 30, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.45rem, 4.35vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero-copy .copy-desktop {
  display: inline;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  margin-top: 28px;
}

.store-button {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  width: 184px;
  min-height: 56px;
  padding: 9px 14px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    #050807;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.store-button::after {
  display: none;
}

.store-button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.store-button .store-mark {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.store-mark svg {
  display: block;
  width: 28px;
  height: 28px;
}

.apple-mark svg {
  width: 27px;
  height: 27px;
  fill: #ffffff;
}

.google-mark svg {
  width: 29px;
  height: 29px;
}

.google-mark .play-blue {
  fill: #3bccff;
}

.google-mark .play-green {
  fill: #48d66b;
}

.google-mark .play-yellow {
  fill: #ffd447;
}

.google-mark .play-red {
  fill: #ff5a52;
}

.store-button span {
  grid-column: 2;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
}

.store-button span:not(.store-mark) {
  align-self: end;
}

.store-button strong {
  grid-column: 2;
  align-self: start;
  font-size: 1.08rem;
  line-height: 1.02;
}

.primary-store {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #050807;
  border-color: rgba(255, 255, 255, 0.22);
}

.store-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 30px;
}

.hero-signal {
  position: relative;
  min-height: 112px;
  padding: 18px 16px 16px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.hero-signal::before {
  display: block;
  width: 26px;
  height: 3px;
  margin-bottom: 14px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
}

.hero-signals strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.95rem;
}

.hero-signals span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.phone-stage {
  position: absolute;
  z-index: 1;
  right: var(--safe-x);
  bottom: 36px;
  width: min(520px, 40vw);
  height: 500px;
  pointer-events: none;
}

.phone-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.phone {
  position: absolute;
  width: 226px;
  height: auto;
  aspect-ratio: 248 / 540;
  padding: var(--phone-frame-pad, 7px);
  background:
    linear-gradient(145deg, #3d4745 0%, #111817 36%, #2c3533 72%, #65716d 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--phone-frame-radius, 38px);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 0 4px rgba(0, 0, 0, 0.58),
    0 20px 54px rgba(9, 32, 29, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.18);
  transform: var(--phone-tilt, rotate(0deg));
}

.phone::before {
  position: absolute;
  inset: 6px;
  z-index: 2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.phone::after {
  position: absolute;
  inset: 1px;
  z-index: 2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 37px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.38),
    inset 0 0 10px rgba(255, 255, 255, 0.04);
}

.phone-client {
  --phone-tilt: rotate(-6deg);
  right: 170px;
  bottom: -8px;
}

.phone-provider {
  --phone-tilt: rotate(7deg);
  right: 0;
  bottom: 34px;
  width: 238px;
}

.app-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #efeff5;
  border-radius: var(--phone-screen-radius, 31px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 2px rgba(0, 0, 0, 0.62);
}

.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    filter: blur(9px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes phoneStackReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(26px, 28px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes phoneFloatClient {
  0%,
  100% {
    transform: translate3d(0, 0, 0) var(--phone-tilt);
  }

  50% {
    transform: translate3d(-5px, -11px, 0) var(--phone-tilt);
  }
}

@keyframes phoneFloatProvider {
  0%,
  100% {
    transform: translate3d(0, 0, 0) var(--phone-tilt);
  }

  50% {
    transform: translate3d(5px, -14px, 0) var(--phone-tilt);
  }
}

@keyframes proofPhoneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2.5deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(-1.5deg);
  }
}

@keyframes proofPhoneShine {
  0%,
  34% {
    opacity: 0;
    transform: translateX(-62%) skewX(-12deg);
  }

  52% {
    opacity: 0.42;
  }

  74%,
  100% {
    opacity: 0;
    transform: translateX(62%) skewX(-12deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions {
    animation: heroTextReveal 620ms ease both;
  }

  .hero h1 {
    animation-delay: 60ms;
  }

  .hero-copy {
    animation-delay: 120ms;
  }

  .hero-actions {
    animation-delay: 170ms;
  }

  .phone-stack {
    animation: phoneStackReveal 820ms cubic-bezier(0.2, 0.75, 0.2, 1) 120ms both;
  }

  .phone-stage .phone-client {
    animation: phoneFloatClient 7.2s ease-in-out 880ms infinite;
  }

  .phone-stage .phone-provider {
    animation: phoneFloatProvider 6.6s ease-in-out 720ms infinite;
  }
}

@media (max-width: 560px) and (prefers-reduced-motion: no-preference) {
  .workflow-showcase .phone-proof {
    animation: proofPhoneFloat 6.8s ease-in-out 450ms infinite;
  }

  .workflow-showcase .phone-proof::before {
    animation: proofPhoneShine 6.2s ease-in-out 1.4s infinite;
  }
}

.audience-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px var(--safe-x);
  background: #ffffff;
}

.audience-card {
  display: block;
  min-height: 190px;
  padding: 28px;
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.audience-card span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-card strong {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  font-size: 1.85rem;
}

.audience-card p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.client-card {
  background: linear-gradient(135deg, var(--teal), #178a72);
}

.provider-card {
  background: linear-gradient(135deg, #1f3f75, #f97362);
}

.section,
.split-section,
.faq-section,
.final-cta {
  padding: 86px var(--safe-x);
}

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

.section-heading h2,
.split-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

.steps-grid article,
.provider-grid article,
.confidence-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-weight: 900;
  background: var(--teal);
  border-radius: 50%;
}

.steps-grid h3,
.provider-grid h3,
.confidence-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
}

.steps-grid p,
.provider-grid p,
.confidence-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.services-section {
  background: #ffffff;
}

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

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

.services-grid article {
  --service-gradient: linear-gradient(135deg, #5b57f4, #18c5d8);
  --service-soft: #e4f4f8;
  --service-ink: #117c89;
  min-height: 250px;
  padding: 18px 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 32, 31, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.services-grid article:hover {
  border-color: rgba(16, 32, 31, 0.16);
  box-shadow: 0 20px 46px rgba(16, 32, 31, 0.11);
  transform: translateY(-2px);
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--service-gradient);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 26px rgba(16, 32, 31, 0.12);
}

.service-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-visual .service-icon {
  display: block;
  width: 34px !important;
  height: 34px !important;
  max-width: 34px;
  max-height: 34px;
  flex: 0 0 34px;
  fill: none !important;
  stroke: currentColor !important;
}

.service-visual .service-icon * {
  fill: none !important;
  stroke: currentColor !important;
}

.services-grid .service-tag {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--service-ink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--service-soft);
  border-radius: 999px;
}

.services-grid h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
}

.services-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-cleaning,
.services-grid article:nth-of-type(1) {
  --service-gradient: linear-gradient(135deg, #5b57f4 0%, #17c2d4 100%);
  --service-soft: #e5f4fb;
  --service-ink: #1769bd;
}

.service-ironing,
.services-grid article:nth-of-type(2) {
  --service-gradient: linear-gradient(135deg, #f05aa7 0%, #e93592 100%);
  --service-soft: #fee7f2;
  --service-ink: #be246f;
}

.service-care,
.services-grid article:nth-of-type(3) {
  --service-gradient: linear-gradient(135deg, #d56b10 0%, #f6d969 100%);
  --service-soft: #fff2d2;
  --service-ink: #a95507;
}

.service-hair,
.services-grid article:nth-of-type(4) {
  --service-gradient: linear-gradient(135deg, #ef4444 0%, #ff7a1a 100%);
  --service-soft: #fee5df;
  --service-ink: #c83b1c;
}

.service-pets,
.services-grid article:nth-of-type(5) {
  --service-gradient: linear-gradient(135deg, #22c55e 0%, #6ee7b7 100%);
  --service-soft: #dcfce7;
  --service-ink: #138344;
}

.service-learning,
.services-grid article:nth-of-type(6) {
  --service-gradient: linear-gradient(135deg, #7c3aed 0%, #f08cf4 100%);
  --service-soft: #f3e8ff;
  --service-ink: #7030a7;
}

.service-repairs,
.services-grid article:nth-of-type(7) {
  --service-gradient: linear-gradient(135deg, #0f766e 0%, #1f9ed6 100%);
  --service-soft: #dff7ef;
  --service-ink: #0f766e;
}

.service-garden,
.services-grid article:nth-of-type(8) {
  --service-gradient: linear-gradient(135deg, #15803d 0%, #84cc16 100%);
  --service-soft: #ecfcca;
  --service-ink: #3f7f16;
}

.workflow-showcase {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-top: 46px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(249, 115, 98, 0.08)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.phone-proof {
  position: relative;
  width: min(248px, 100%);
  height: auto;
  aspect-ratio: 588 / 1280;
  margin: 0 auto;
  transform: rotate(-3deg);
}

.proof-copy {
  max-width: 680px;
}

.proof-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.proof-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  align-items: center;
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
  content: "\2713";
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--teal);
  border-radius: 50%;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  background: #d9e7e4;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(9, 32, 29, 0.16);
}

.feature-panel img {
  width: 100%;
  height: clamp(420px, 36vw, 620px);
  min-height: 0;
  object-fit: cover;
  object-position: 70% 50%;
}

.feature-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 24, 23, 0.32) 100%);
}

.panel-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(16, 32, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(7, 24, 23, 0.2);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.panel-note strong {
  font-size: 1.05rem;
}

.panel-note span {
  color: rgba(255, 255, 255, 0.8);
}

.muted {
  background: #eef7f3;
}

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

.provider-cta,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  color: #ffffff;
  background: var(--teal-strong);
  border-radius: 8px;
}

.provider-cta div {
  display: grid;
  gap: 5px;
}

.provider-cta strong {
  font-size: 1.25rem;
}

.provider-cta span {
  color: rgba(255, 255, 255, 0.82);
}

.button-light {
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
}

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

.final-cta {
  margin: 0 var(--safe-x) 0;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.96), rgba(18, 35, 33, 0.96)),
    url("home-hero.jpg") center / cover;
}

.final-cta .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  flex: 0 0 196px;
  gap: 12px;
  margin-top: 0;
}

.final-cta .store-button {
  width: 196px;
}

.final-cta .eyebrow {
  color: #ffe2a7;
}

.final-cta p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
}

.faq-section details {
  max-width: 920px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-section details p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(4, minmax(130px, 0.65fr));
  gap: 30px;
  padding: 56px var(--safe-x) 28px;
  color: #d9e7e4;
  background: #10201f;
}

.site-footer img {
  width: 160px;
  height: auto;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
}

.site-footer p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column a[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.simple-main {
  padding-top: 76px;
}

.simple-hero {
  padding: 96px var(--safe-x) 50px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 32, 31, 0.94), rgba(15, 118, 110, 0.82)),
    url("home-hero.jpg") center / cover;
}

.simple-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: 3.55rem;
  line-height: 1.03;
}

.simple-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.62;
}

.simple-content {
  max-width: 920px;
  padding: 64px var(--safe-x);
}

.simple-content > :first-child,
.page-content > :first-child {
  margin-top: 0;
}

.simple-content h2 {
  margin: 34px 0 10px;
  font-size: 1.55rem;
}

.simple-content h3,
.simple-content h4 {
  margin: 30px 0 10px;
  line-height: 1.18;
}

.simple-content h3 {
  font-size: 1.28rem;
}

.simple-content h4 {
  font-size: 1.08rem;
}

.simple-content p,
.simple-content li {
  color: var(--muted);
  line-height: 1.7;
}

.simple-content ul,
.simple-content ol {
  padding-left: 1.25rem;
  margin: 16px 0 24px;
}

.simple-content a {
  color: var(--teal);
  font-weight: 850;
}

.simple-content figure {
  margin: 32px 0;
}

.simple-content img {
  height: auto;
  border-radius: 8px;
}

.simple-content blockquote {
  padding: 18px 22px;
  margin: 30px 0;
  color: var(--ink);
  background: var(--soft);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
}

.simple-content blockquote p {
  margin: 0;
}

.simple-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.simple-content th,
.simple-content td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.simple-content th {
  color: var(--ink);
  background: var(--soft);
}

.simple-content tr:last-child td {
  border-bottom: 0;
}

.simple-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 850;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.2);
}

.simple-content .wp-block-separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

.content-list {
  display: grid;
  gap: 18px;
}

.content-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-card h2 {
  margin-top: 0;
}

.navigation.pagination {
  margin-top: 30px;
}

.navigation.pagination .nav-links,
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-left: 0;
  color: var(--ink);
  font-size: 1rem;
}

.navigation.pagination .page-numbers,
.page-links .post-page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.navigation.pagination .page-numbers.current,
.page-links .post-page-numbers.current {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

.empty-page-note {
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.editable-content {
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
  :root {
    --page-pad: clamp(22px, 5vw, 52px);
  }

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

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

@media (min-width: 1101px) and (max-width: 1400px) {
  #como-funciona .section-heading {
    max-width: 920px;
    margin-bottom: 34px;
  }

  #como-funciona .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 860px;
  }

  #como-funciona .steps-grid article {
    position: relative;
    min-height: auto;
    padding: 0 0 32px 68px;
    background: transparent;
    border: 0;
  }

  #como-funciona .steps-grid article::before {
    position: absolute;
    top: 50px;
    bottom: 4px;
    left: 23px;
    width: 2px;
    content: "";
    background: var(--line);
  }

  #como-funciona .steps-grid article:last-child {
    padding-bottom: 0;
  }

  #como-funciona .steps-grid article:last-child::before {
    display: none;
  }

  #como-funciona .steps-grid span {
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    font-size: 0.98rem;
  }

  #como-funciona .steps-grid h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
  }

  #como-funciona .steps-grid p {
    max-width: 700px;
    font-size: 1.02rem;
    line-height: 1.6;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .hero {
    min-height: 700px;
    padding: 126px var(--safe-x) 56px;
  }

  .hero-content {
    width: min(55vw, 600px);
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(2.45rem, 4.4vw, 3.05rem);
  }

  .hero-copy {
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero-signals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    max-width: 600px;
    margin-top: 22px;
  }

  .hero-signal {
    min-height: 92px;
    padding: 14px 12px 12px;
  }

  .hero-signal::before {
    width: 22px;
    margin-bottom: 10px;
  }

  .hero-signals strong {
    margin-bottom: 5px;
    font-size: 0.82rem;
    line-height: 1.16;
  }

  .hero-signals span {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  .phone-stage {
    right: var(--safe-x);
    bottom: 38px;
    width: min(390px, 38vw);
    max-width: none;
    height: 410px;
    margin: 0;
    overflow: visible;
  }

  .phone-client {
    --phone-tilt: rotate(-6.5deg);
    --phone-frame-pad: 4px;
    --phone-frame-radius: 30px;
    --phone-screen-radius: 26px;
    right: 146px;
    bottom: 0;
    width: 176px;
  }

  .phone-provider {
    --phone-tilt: rotate(6.5deg);
    --phone-frame-pad: 4.35px;
    --phone-frame-radius: 32px;
    --phone-screen-radius: 28px;
    right: 0;
    bottom: 30px;
    width: 192px;
  }

  .phone-stage .phone {
    aspect-ratio: auto;
    padding: var(--phone-frame-pad);
    border-radius: var(--phone-frame-radius);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1.5px rgba(0, 0, 0, 0.58),
      0 22px 48px rgba(16, 32, 31, 0.24);
  }

  .phone-stage .phone::before,
  .phone-stage .phone::after {
    display: none;
  }

  .phone-stage .app-screen {
    width: 100%;
    height: auto;
    aspect-ratio: 588 / 1280;
    border-radius: var(--phone-screen-radius);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  }

  .phone-stage .phone-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .audience-band {
    gap: 14px;
    padding: 26px var(--safe-x);
  }

  .audience-card {
    min-height: 172px;
    padding: 24px;
  }

  .audience-card strong {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .section,
  .split-section,
  .faq-section {
    padding: 72px var(--safe-x);
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 760px;
  }

  .steps-grid article {
    position: relative;
    min-height: auto;
    padding: 0 0 30px 62px;
    background: transparent;
    border: 0;
  }

  .steps-grid article::before {
    position: absolute;
    top: 48px;
    bottom: 4px;
    left: 21px;
    width: 2px;
    content: "";
    background: var(--line);
  }

  .steps-grid article:last-child {
    padding-bottom: 0;
  }

  .steps-grid article:last-child::before {
    display: none;
  }

  .steps-grid span {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }

  .steps-grid h3 {
    margin: 0 0 7px;
    font-size: 1.16rem;
  }

  .steps-grid p {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .workflow-showcase {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding: 30px;
  }

  .phone-proof {
    width: min(230px, 100%);
  }

  .split-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
    gap: 32px;
  }

  .feature-panel img {
    height: clamp(400px, 45vw, 520px);
    min-height: 0;
  }

  .provider-cta {
    padding: 24px;
  }

  .final-cta {
    padding: 36px;
  }

  .site-footer {
    grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(150px, 0.75fr));
  }
}

@media (max-width: 860px) {
  body {
    background: var(--soft);
  }

  body::before {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 19;
    height: env(safe-area-inset-top, 0px);
    content: "";
    pointer-events: none;
    background: rgba(245, 247, 246, 0.99);
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    min-height: calc(70px + env(safe-area-inset-top, 0px));
    padding: calc(10px + env(safe-area-inset-top, 0px)) 22px 10px;
    background: rgba(245, 247, 246, 0.98);
    box-shadow: 0 -90px 0 90px rgba(245, 247, 246, 0.98);
  }

  .brand img {
    width: 128px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .simple-hero {
    padding: calc(72px + env(safe-area-inset-top, 0px)) var(--page-pad) 42px;
  }

  .simple-hero h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .simple-hero p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .menu-button span {
    transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
    transform-origin: center;
  }

  .site-header.menu-open .menu-button {
    background: var(--ink);
    border-color: rgba(16, 32, 31, 0.92);
    box-shadow: 0 14px 30px rgba(16, 32, 31, 0.18);
  }

  .site-header.menu-open .menu-button span {
    background: #ffffff;
  }

  .site-header.menu-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 22px;
    right: 22px;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
    padding: 12px;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 0%, rgba(15, 118, 110, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 246, 0.97));
    border: 1px solid rgba(16, 32, 31, 0.1);
    border-radius: 18px;
    box-shadow: 0 22px 54px rgba(16, 32, 31, 0.2);
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open .nav-links::before {
    display: block;
    width: 42px;
    height: 3px;
    margin: 2px auto 4px;
    content: "";
    background: var(--gold);
    border-radius: 999px;
  }

  .site-header.menu-open .nav-links ul {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .site-header.menu-open .nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 13px 14px;
    color: #24413e;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.2;
    text-align: left;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 32, 31, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(16, 32, 31, 0.04);
  }

  .site-header.menu-open .nav-links a::before {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.11);
  }

  .site-header.menu-open .nav-links a::after {
    position: static;
    display: block;
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-left: auto;
    content: "";
    background: transparent;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.36;
    transform: rotate(45deg);
  }

  .site-header.menu-open .nav-links a + a,
  .site-header.menu-open .nav-links li + li a {
    border-top: 1px solid rgba(16, 32, 31, 0.08);
  }

  .site-header.menu-open .nav-links a:hover {
    background: rgba(15, 118, 110, 0.08);
  }

  .hero {
    --hero-scroll: 0;
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: calc(112px + env(safe-area-inset-top, 0px)) var(--page-pad) 42px;
  }

  body.admin-bar .hero {
    padding-top: 164px;
  }

  .hero-bg {
    background-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 33, 30, 0.94) 0%, rgba(5, 33, 30, 0.74) 58%, rgba(5, 33, 30, 0.3) 100%),
      linear-gradient(0deg, rgba(5, 33, 30, 0.62), rgba(5, 33, 30, 0.04));
  }

  .hero-content {
    display: contents;
  }

  .hero h1 {
    position: relative;
    z-index: 2;
    order: 2;
    width: min(680px, 100%);
    max-width: 680px;
    margin: 0;
    font-size: clamp(2.38rem, 6.4vw, 3.45rem);
    line-height: 1.03;
    transform: translateY(calc(var(--hero-scroll) * -7px));
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    order: 4;
    width: min(620px, 100%);
    max-width: 620px;
    margin-top: 20px;
    font-size: 1.08rem;
    line-height: 1.54;
    transform: translateY(calc(var(--hero-scroll) * -6px));
  }

  .hero .eyebrow {
    position: relative;
    z-index: 2;
    order: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 11px;
    margin: 0 0 14px;
    color: #ffd77e;
    font-size: 0.72rem;
    line-height: 1;
    background: rgba(242, 184, 75, 0.13);
    border: 1px solid rgba(242, 184, 75, 0.24);
    border-radius: 999px;
    transform: translateY(calc(var(--hero-scroll) * -4px));
  }

  .hero-copy .copy-desktop {
    display: none;
  }

  .hero-copy .copy-mobile {
    display: inline;
  }

  .hero .hero-actions {
    position: relative;
    z-index: 2;
    order: 5;
    width: min(430px, 100%);
    margin-top: 20px;
    transform: translateY(calc(var(--hero-scroll) * -4px));
  }

  .hero-signals {
    display: none;
  }

  .phone-stage {
    position: relative;
    z-index: 1;
    order: 3;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 640px);
    max-width: none;
    height: clamp(380px, 60vw, 500px);
    margin: 24px auto 0;
    overflow: visible;
    isolation: isolate;
    pointer-events: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translateY(calc(var(--hero-scroll) * -14px)) scale(calc(1 - (var(--hero-scroll) * 0.025)));
    transform-origin: center top;
    transition: transform 80ms linear;
  }

  .phone-stage::after {
    position: absolute;
    left: 50%;
    bottom: 4px;
    z-index: 0;
    width: min(380px, 72vw);
    height: 24px;
    content: "";
    background: rgba(0, 0, 0, 0.26);
    border-radius: 999px;
    filter: blur(22px);
    transform: translateX(-50%);
  }

  .phone {
    width: clamp(154px, 24vw, 184px);
    height: auto;
    aspect-ratio: 248 / 540;
    padding: 7px;
    border-radius: var(--phone-frame-radius, 34px);
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.08),
      inset 0 0 0 4px rgba(0, 0, 0, 0.54),
      0 18px 38px rgba(9, 32, 29, 0.25);
  }

  .phone-client {
    --phone-tilt: rotate(-7deg);
    z-index: 2;
    left: clamp(22px, 12vw, 88px);
    top: 60px;
    bottom: auto;
    opacity: 1;
  }

  .phone-provider {
    --phone-tilt: rotate(5.5deg);
    z-index: 3;
    right: clamp(22px, 11vw, 78px);
    bottom: auto;
    top: 0;
    width: clamp(170px, 27vw, 204px);
  }

  .app-screen {
    border-radius: 27px;
  }

  .audience-band,
  .split-section,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .provider-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta .hero-actions {
    width: 100%;
    flex: none;
    grid-template-columns: repeat(2, minmax(0, 196px));
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 561px) and (max-width: 860px) {
  :root {
    --page-pad: clamp(32px, 5vw, 46px);
  }

  .site-header {
    min-height: calc(72px + env(safe-area-inset-top, 0px));
    padding: calc(11px + env(safe-area-inset-top, 0px)) var(--page-pad) 11px;
  }

  .brand img {
    width: 132px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .site-header.menu-open .nav-links {
    left: auto;
    right: var(--page-pad);
    width: min(430px, calc(100vw - (var(--page-pad) * 2)));
  }

  .hero {
    padding: calc(124px + env(safe-area-inset-top, 0px)) var(--page-pad) 64px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(2.65rem, 5.95vw, 3.12rem);
    line-height: 1.04;
  }

  .hero-copy {
    max-width: 600px;
    margin-top: 34px;
    font-size: 1.04rem;
    line-height: 1.52;
  }

  .hero .hero-actions {
    width: min(430px, 100%);
    margin-top: 22px;
  }

  .hero-signals {
    order: 6;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 690px);
    max-width: 690px;
    margin: 24px 0 0;
  }

  .hero-signal {
    min-height: 104px;
    padding: 15px 13px 13px;
  }

  .hero-signal::before {
    width: 23px;
    height: 3px;
    margin-bottom: 11px;
  }

  .hero-signals strong {
    margin-bottom: 5px;
    font-size: 0.84rem;
    line-height: 1.16;
  }

  .hero-signals span {
    font-size: 0.74rem;
    line-height: 1.36;
  }

  .phone-stage {
    width: min(620px, 86vw);
    height: 430px;
    margin-top: 30px;
  }

  .phone-stage .phone {
    aspect-ratio: auto;
    padding: var(--phone-frame-pad, 4px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1.5px rgba(0, 0, 0, 0.58),
      0 24px 48px rgba(16, 32, 31, 0.24);
  }

  .phone-stage .phone::before,
  .phone-stage .phone::after {
    display: none;
  }

  .phone-stage .app-screen {
    width: 100%;
    height: auto;
    aspect-ratio: 588 / 1280;
    border-radius: var(--phone-screen-radius, 28px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  }

  .phone-client {
    --phone-frame-pad: 3.75px;
    --phone-frame-radius: 30px;
    --phone-screen-radius: 26px;
    left: clamp(64px, 11vw, 88px);
    top: 68px;
    width: 190px;
  }

  .phone-provider {
    --phone-frame-pad: 4.1px;
    --phone-frame-radius: 33px;
    --phone-screen-radius: 28.5px;
    right: clamp(54px, 10vw, 78px);
    top: 8px;
    width: 214px;
  }

  .audience-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 34px var(--page-pad) 22px;
  }

  .audience-card {
    min-height: 176px;
    padding: 24px;
  }

  .audience-card strong {
    font-size: 1.45rem;
    line-height: 1.14;
  }

  .audience-card p {
    font-size: 0.96rem;
  }

  .section,
  .split-section,
  .faq-section {
    padding: 64px var(--page-pad);
  }

  .audience-band + .section {
    padding-top: 52px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 700px;
  }

  .steps-grid article {
    position: relative;
    min-height: auto;
    padding: 0 0 30px 60px;
    background: transparent;
    border: 0;
  }

  .steps-grid article::before {
    position: absolute;
    top: 48px;
    bottom: 4px;
    left: 21px;
    width: 2px;
    content: "";
    background: var(--line);
  }

  .steps-grid article:last-child {
    padding-bottom: 0;
  }

  .steps-grid article:last-child::before {
    display: none;
  }

  .steps-grid span {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }

  .steps-grid h3 {
    margin: 0 0 7px;
    font-size: 1.14rem;
  }

  .steps-grid p {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .section-heading h2,
  .split-copy h2,
  .final-cta h2 {
    font-size: clamp(2.08rem, 4.2vw, 2.65rem);
  }

  .workflow-showcase {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
    gap: 28px;
    margin-top: 38px;
    padding: 28px;
  }

  .phone-proof {
    width: min(220px, 100%);
  }

  .split-section {
    gap: 34px;
  }

  .feature-panel img {
    height: clamp(360px, 64vw, 460px);
    min-height: 0;
  }

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

  .provider-grid article,
  .confidence-grid article,
  .services-grid article {
    min-height: auto;
    padding: 22px;
  }

  .provider-cta {
    padding: 26px;
  }

  .final-cta {
    margin: 0 var(--page-pad);
    padding: 34px;
  }

  .final-cta .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 196px));
  }

  .site-footer {
    padding: 48px var(--page-pad) 28px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 20px;
  }

  .site-header {
    min-height: calc(62px + env(safe-area-inset-top, 0px));
    padding: calc(9px + env(safe-area-inset-top, 0px)) 18px 9px;
    background: rgba(245, 247, 246, 0.99);
    box-shadow: 0 -90px 0 90px rgba(245, 247, 246, 0.99);
  }

  .brand img {
    width: 116px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .site-header.menu-open .nav-links {
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    padding: 11px;
    border-radius: 18px;
  }

  .hero {
    --hero-scroll: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: calc(98px + env(safe-area-inset-top, 0px)) 18px 56px;
  }

  body.admin-bar .hero {
    padding-top: 134px;
  }

  .hero-content {
    display: contents;
  }

  .hero h1 {
    position: relative;
    z-index: 2;
    order: 2;
    max-width: 352px;
    margin-top: 0;
    font-size: clamp(2.15rem, 9.35vw, 2.58rem);
    line-height: 1.03;
    transform: translateY(calc(var(--hero-scroll) * -9px));
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    order: 4;
    max-width: 348px;
    margin-top: 40px;
    font-size: clamp(1rem, 4.15vw, 1.12rem);
    line-height: 1.44;
    transform: translateY(calc(var(--hero-scroll) * -7px));
  }

  .hero .eyebrow {
    position: relative;
    z-index: 2;
    order: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    margin: 0 0 14px;
    color: #ffd77e;
    font-size: 0.68rem;
    line-height: 1;
    background: rgba(242, 184, 75, 0.13);
    border: 1px solid rgba(242, 184, 75, 0.24);
    border-radius: 999px;
  }

  .hero-copy .copy-desktop {
    display: none;
  }

  .hero-copy .copy-mobile {
    display: inline;
  }

  .hero .hero-actions {
    position: relative;
    z-index: 2;
    order: 5;
    width: min(100%, 346px);
    flex-wrap: nowrap;
    gap: 10px;
    align-self: center;
    margin-top: 24px;
    transform: translateY(calc(var(--hero-scroll) * -4px));
  }

  .hero .store-button {
    grid-template-columns: 27px minmax(0, 1fr);
    column-gap: 9px;
    width: calc((100% - 10px) / 2);
    min-height: 54px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .hero .store-button .store-mark {
    width: 27px;
    height: 27px;
  }

  .hero .store-mark svg {
    width: 23px;
    height: 23px;
  }

  .hero .apple-mark svg {
    width: 22px;
    height: 22px;
  }

  .hero .store-button span {
    font-size: 0.64rem;
  }

  .hero .store-button strong {
    font-size: 1rem;
    line-height: 1;
  }

  .hero-signals {
    display: none;
  }

  .hero-signal {
    min-height: auto;
  }

  .phone-stage {
    position: relative;
    z-index: 1;
    order: 3;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 344px);
    height: 350px;
    margin: 32px auto 0;
    overflow: visible;
    isolation: isolate;
    pointer-events: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translateY(calc(var(--hero-scroll) * -18px)) scale(calc(1 - (var(--hero-scroll) * 0.035)));
    transform-origin: center top;
    transition: transform 80ms linear;
  }

  .phone-stage::before,
  .phone-stage::after {
    position: absolute;
    z-index: 0;
    content: "";
    border-radius: 18px;
  }

  .phone-stage::before {
    display: none;
  }

  .phone-stage::after {
    left: 50%;
    bottom: 2px;
    width: min(272px, 70vw);
    height: 20px;
    background: rgba(0, 0, 0, 0.28);
    filter: blur(20px);
    transform: translateX(-50%);
  }

  .phone-stage .phone {
    box-sizing: border-box;
    aspect-ratio: auto;
    padding: var(--phone-frame-pad, 6px);
    background:
      linear-gradient(145deg, #3d4745 0%, #111817 36%, #2c3533 72%, #65716d 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .phone-client {
    --phone-tilt: rotate(-7deg);
    --phone-frame-pad: 3.25px;
    --phone-frame-radius: 27px;
    --phone-screen-radius: 23.5px;
    z-index: 2;
    left: clamp(10px, 3.5vw, 18px);
    top: 56px;
    bottom: auto;
    width: clamp(128px, 36vw, 144px);
    height: auto;
    opacity: 1;
    transform: var(--phone-tilt);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1.5px rgba(0, 0, 0, 0.58),
      0 24px 44px rgba(16, 32, 31, 0.22);
  }

  .phone-provider {
    --phone-tilt: rotate(5.5deg);
    --phone-frame-pad: 3.75px;
    --phone-frame-radius: 29px;
    --phone-screen-radius: 25.5px;
    z-index: 3;
    left: auto;
    top: 8px;
    bottom: auto;
    right: clamp(14px, 4.5vw, 24px);
    width: clamp(148px, 41vw, 164px);
    height: auto;
    transform: var(--phone-tilt);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1.5px rgba(0, 0, 0, 0.58),
      0 26px 54px rgba(16, 32, 31, 0.28);
  }

  .phone-client .app-screen {
    border-radius: var(--phone-screen-radius);
  }

  .phone-stage .phone::before,
  .phone-stage .phone::after {
    display: none;
  }

  .phone-stage .app-screen {
    width: 100%;
    height: auto;
    aspect-ratio: 588 / 1280;
    border-radius: var(--phone-screen-radius, 27px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  }

  .phone-client .phone-shot {
    object-position: top center;
  }

  .phone-stage .phone-shot {
    display: block;
    width: 100%;
    height: 100%;
    filter: saturate(1.08) contrast(1.04);
    object-fit: cover;
    object-position: top center;
    transform: none;
  }

  .phone-provider .app-screen {
    border-radius: var(--phone-screen-radius);
  }

  @media (max-width: 380px) {
    .phone-stage {
      width: min(100%, 322px);
      height: 332px;
    }

    .phone-client {
      left: 10px;
      top: 56px;
      width: clamp(120px, 35vw, 132px);
      --phone-frame-pad: 3px;
      --phone-frame-radius: 26px;
      --phone-screen-radius: 22.5px;
    }

    .phone-provider {
      right: 12px;
      width: clamp(138px, 41vw, 152px);
      --phone-frame-pad: 3.5px;
      --phone-frame-radius: 28px;
      --phone-screen-radius: 24.5px;
    }
  }

  @media (max-height: 720px) {
    .hero {
      padding-top: calc(88px + env(safe-area-inset-top, 0px));
      padding-bottom: 34px;
    }

    .hero h1 {
      max-width: 320px;
      font-size: clamp(1.98rem, 8.65vw, 2.26rem);
    }

    .hero-copy {
      max-width: 320px;
      margin-top: 56px;
      font-size: 0.94rem;
      line-height: 1.36;
    }

    .hero .hero-actions {
      margin-top: 16px;
    }

    .phone-stage {
      width: min(100%, 300px);
      height: 276px;
      margin-top: 24px;
    }

    .phone-client {
      left: 10px;
      top: 44px;
      width: clamp(110px, 32vw, 118px);
      --phone-frame-pad: 2.9px;
      --phone-frame-radius: 25px;
      --phone-screen-radius: 21.5px;
    }

    .phone-provider {
      right: 12px;
      top: 4px;
      width: clamp(126px, 36vw, 138px);
      --phone-frame-pad: 3.25px;
      --phone-frame-radius: 28px;
      --phone-screen-radius: 24px;
    }
  }

  .audience-band,
  .section,
  .split-section,
  .faq-section {
    padding: 50px 18px;
  }

  .audience-band {
    display: flex;
    gap: 12px;
    padding: 28px 18px 10px;
    overflow-x: auto;
    scroll-padding-left: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .audience-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 172px;
    padding: 22px;
    scroll-snap-align: start;
  }

  .audience-band::-webkit-scrollbar {
    display: none;
  }

  .audience-card strong {
    font-size: 1.45rem;
    line-height: 1.14;
  }

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

  .audience-band + .section {
    padding-top: 14px;
  }

  #como-funciona {
    padding-bottom: 36px;
  }

  .services-section {
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .split-section {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  #prestadores {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  #seguranca {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  .faq-section {
    padding-top: 46px;
    padding-bottom: 32px;
  }

  .section-heading h2,
  .split-copy h2,
  .final-cta h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .section-heading p:not(.eyebrow),
  .split-copy p,
  .final-cta p,
  .proof-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .steps-grid,
  .confidence-grid,
  .workflow-showcase {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    display: grid;
    gap: 0;
  }

  .steps-grid article {
    position: relative;
    min-height: auto;
    padding: 0 0 24px 50px;
    background: transparent;
    border: 0;
  }

  .steps-grid article::before {
    position: absolute;
    top: 43px;
    bottom: 2px;
    left: 17px;
    width: 2px;
    content: "";
    background: var(--line);
  }

  .steps-grid article:last-child::before {
    display: none;
  }

  .steps-grid span {
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .steps-grid h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
  }

  .steps-grid p {
    font-size: 0.94rem;
  }

  .workflow-showcase {
    position: relative;
    gap: 14px;
    margin-top: 28px;
    padding: 26px 22px 30px;
    overflow: hidden;
  }

  .workflow-showcase::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 10%, rgba(15, 118, 110, 0.13), transparent 32%),
      radial-gradient(circle at 82% 88%, rgba(249, 115, 98, 0.12), transparent 28%);
  }

  .phone-proof {
    z-index: 1;
    --phone-frame-pad: 4px;
    --phone-frame-radius: 31px;
    --phone-screen-radius: 27px;
    width: min(184px, 53vw);
    aspect-ratio: auto;
    padding: var(--phone-frame-pad);
    margin: 0 auto 4px;
    border-radius: var(--phone-frame-radius);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1.5px rgba(0, 0, 0, 0.58),
      0 26px 48px rgba(16, 32, 31, 0.2);
    transform: rotate(-2.5deg);
  }

  .workflow-showcase .phone-proof::before {
    position: absolute;
    inset: 4px 5px;
    z-index: 2;
    display: block;
    content: "";
    pointer-events: none;
    background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.34) 42%, transparent 64%);
    border: 0;
    border-radius: var(--phone-screen-radius);
    box-shadow: none;
    opacity: 0.16;
    mix-blend-mode: screen;
  }

  .workflow-showcase .phone-proof::after {
    display: none;
  }

  .workflow-showcase .phone-proof .app-screen {
    width: 100%;
    height: auto;
    aspect-ratio: 587 / 1280;
    border-radius: var(--phone-screen-radius);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  }

  .workflow-showcase .phone-proof .phone-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .proof-copy {
    position: relative;
    z-index: 1;
  }

  .proof-copy h3 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .provider-grid article,
  .confidence-grid article,
  .services-grid article {
    min-height: auto;
    padding: 22px;
  }

  .services-grid {
    display: flex;
    gap: 14px;
    margin-right: -18px;
    padding: 0 18px 10px 0;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .services-grid article {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .feature-panel img {
    height: clamp(320px, 86vw, 400px);
    min-height: 0;
  }

  .panel-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .final-cta {
    margin: 0 18px 42px;
    padding: 28px;
  }

  .final-cta .hero-actions,
  .final-cta .store-button {
    width: 100%;
  }

  .final-cta .hero-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
