/*
 * Collision-free workflow and mobile composition layer.
 * Loaded after the Sendr-matched base so generated landers inherit the same
 * polished behaviour without changing their personalisation contract.
 */

:root {
  --polish-carbon: #11131a;
  --polish-warm-white: #f7f4ee;
  --polish-raised: #fff;
  --polish-sunken: #ece9e2;
  --polish-violet: #6c5cff;
  --polish-violet-deep: #5e4ee5;
  --polish-violet-hover: #5141d2;
  --polish-violet-active: #4434b8;
  --polish-sky: #55b8ff;
  --polish-apricot: #ff9a70;
  --polish-border: #d7d2c9;
  --polish-muted: #4e5361;
  --polish-motion: cubic-bezier(.2, .8, .2, 1);
}

body {
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--polish-warm-white);
  background: var(--polish-carbon);
  border-radius: 6px;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 120ms var(--polish-motion);
}

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

.sendr-shell {
  max-width: 1240px;
}

.sendr-button {
  min-height: 44px;
  padding: 10px 18px;
  background: var(--polish-violet-deep);
  border-radius: 8px;
  transition:
    background-color 120ms var(--polish-motion),
    transform 120ms var(--polish-motion);
}

.sendr-button:hover {
  background: var(--polish-violet-hover);
  opacity: 1;
  transform: translateY(-1px);
}

.sendr-button:active {
  background: var(--polish-violet-active);
  transform: translateY(0) scale(.98);
}

.hero-copy h1,
.feature-copy h2,
.calendar-inner h2,
.sendr-faq h2,
.cta-card h2 {
  margin: 0;
  color: var(--polish-carbon);
  font-weight: 700;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(36px, 4.1vw, 48px);
  line-height: 1.08;
}

.feature-copy h2,
.calendar-inner h2,
.sendr-faq h2,
.cta-card h2 {
  font-size: clamp(32px, 3.1vw, 40px);
  line-height: 1.15;
}

.hero-copy p,
.feature-copy p,
.feature-copy li,
.calendar-inner > p,
.sendr-faq header p,
.faq-answer p,
.cta-card p,
.footer-brand p {
  text-wrap: pretty;
}

.nav-inner {
  padding-inline: 64px;
}

.hero-grid {
  gap: 72px;
  padding: 64px;
}

.hero-copy {
  gap: 24px;
}

.hero-copy p {
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.6;
}

.video-frame {
  box-shadow: 0 8px 24px rgb(17 19 26 / 10%), 0 2px 6px rgb(17 19 26 / 5%);
}

.video-frame--loom {
  background: var(--polish-carbon);
}

.video-frame--loom .website-background {
  filter: brightness(.72) saturate(.92);
}

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

.video-frame--loom .video-circle {
  width: 22%;
  border: 3px solid rgb(255 255 255 / 92%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 30%);
  transition: transform 180ms var(--polish-motion);
}

.video-frame--loom.is-playing .video-circle {
  transform: scale(1.04);
}

.video-circle video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.video-frame.is-playing .centre-play {
  opacity: 0;
  pointer-events: none;
}

.video-frame--placeholder,
.feature-video-placeholder {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--polish-warm-white);
  background:
    radial-gradient(circle at 18% 10%, rgb(108 92 255 / 32%), transparent 38%),
    linear-gradient(145deg, #181b25, var(--polish-carbon));
  border: 1px solid rgb(247 244 238 / 14%);
  box-shadow: 0 8px 24px rgb(17 19 26 / 12%), 0 2px 6px rgb(17 19 26 / 7%);
}

.video-frame--placeholder {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 28px;
}

.hero-video-placeholder,
.feature-video-placeholder {
  text-align: center;
}

.hero-video-placeholder {
  display: grid;
  max-width: 320px;
  justify-items: center;
  gap: 16px;
}

.hero-video-placeholder small,
.feature-video-placeholder__label {
  color: rgb(247 244 238 / 68%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-video-placeholder strong,
.feature-video-placeholder > strong {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  text-wrap: balance;
}

.placeholder-play {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  background: var(--polish-violet-deep);
  border: 1px solid rgb(247 244 238 / 18%);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgb(0 0 0 / 24%);
}

.placeholder-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--polish-warm-white);
  content: "";
}

.feature-video-placeholder {
  display: grid;
  width: min(100%, 580px);
  min-height: 330px;
  place-items: center;
  align-content: center;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
}

.feature-video-placeholder__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.feature-video-placeholder__label b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--polish-warm-white);
  background: var(--polish-violet-deep);
  border-radius: 50%;
  font-size: 10px;
}

.feature-video-player {
  position: relative;
  isolation: isolate;
  width: min(100%, 580px);
  aspect-ratio: 1726 / 1078;
  overflow: hidden;
  background: var(--polish-carbon);
  border: 1px solid rgb(17 19 26 / 16%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgb(17 19 26 / 12%), 0 2px 6px rgb(17 19 26 / 7%);
}

.hero-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.feature-video-player video {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--polish-carbon);
  object-fit: contain;
}

.feature-video-player__label {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 6px;
  color: var(--polish-warm-white);
  background: rgb(17 19 26 / 78%);
  border: 1px solid rgb(247 244 238 / 16%);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  pointer-events: none;
  text-transform: uppercase;
}

.feature-video-player__label b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--polish-violet-deep);
  border-radius: 50%;
  font-size: 8px;
}

.video-annotation {
  display: grid;
  width: min(100%, 350px);
  min-height: 0;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 10px auto 0;
  padding: 0;
}

.video-annotation img,
.video-annotation span {
  position: static;
  transform: none;
}

.video-annotation img {
  width: 62px;
  height: 41px;
}

.video-annotation span {
  max-width: none;
  padding-top: 4px;
  font-size: 14px;
  line-height: 1.4;
}

.annotation-space {
  display: none;
}

.feature-grid {
  gap: 64px;
  padding: 72px 64px;
}

.feature-copy {
  max-width: 540px;
}

.feature-copy p {
  max-width: 62ch;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.625;
}

.feature-copy ul {
  margin-top: 24px;
  color: var(--polish-carbon);
}

.feature-copy li {
  margin-bottom: 10px;
  line-height: 1.55;
}

.feature-copy li::before {
  top: .62em;
  left: 4px;
  width: 7px;
  height: 7px;
  background: var(--polish-violet-deep);
}

/* Shared workflow frame */

.automation-demo {
  display: grid;
  width: min(100%, 580px);
  min-height: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  padding: 60px 18px 18px;
  overflow: hidden;
  background: var(--polish-sunken);
  border: 1px solid var(--polish-border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgb(17 19 26 / 9%), 0 2px 6px rgb(17 19 26 / 5%);
}

.automation-demo::after {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--polish-violet) 0 33.333%,
    var(--polish-sky) 33.333% 66.666%,
    var(--polish-apricot) 66.666% 100%
  );
  box-shadow: none;
}

.demo-grid {
  opacity: .45;
}

.demo-grid::before {
  left: 33.333%;
  box-shadow: none;
}

.demo-grid::after {
  top: 50%;
  box-shadow: none;
}

.demo-kicker {
  top: 18px;
  font-size: 10px;
}

.demo-kicker {
  left: 20px;
  gap: 9px;
}

.demo-kicker span {
  flex: 0 0 24px;
  margin-right: 0;
}

.website-browser,
.call-event-card,
.rescue-phone,
.lead-form-card,
.alert-phone,
.job-card,
.review-message,
.review-page-card,
.seo-page-stack,
.seo-page-stack article,
.seo-index-node,
.seo-result-card,
.demo-route,
.rescue-connector,
.lead-route,
.review-route,
.seo-route {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  max-width: none;
  margin: 0;
  transform: none;
}

.rescue-connector,
.lead-route,
.review-route,
.seo-route {
  display: none;
}

.website-browser,
.call-event-card,
.rescue-phone,
.lead-form-card,
.alert-phone,
.job-card,
.review-message,
.review-page-card,
.seo-page-stack article,
.seo-index-node,
.seo-result-card,
.demo-route {
  box-shadow: 0 1px 2px rgb(17 19 26 / 8%);
}

/* Website workflow */

.automation-demo--website .website-browser {
  grid-column: 1 / 13;
  min-height: 180px;
  border-radius: 12px;
  transform: none;
}

.automation-demo--website .demo-route {
  grid-column: 1 / 13;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
}

/* Missed-call workflow */

.automation-demo--missed-call .call-event-card {
  grid-column: 1 / 6;
  align-self: center;
  width: auto;
  min-height: 82px;
  transform: none;
}

.automation-demo--missed-call .rescue-phone {
  grid-column: 6 / 13;
  grid-row: 1;
  align-self: stretch;
  width: auto;
  min-height: 170px;
  border-radius: 18px;
}

/* Lead-alert workflow */

.automation-demo--lead-alert .lead-form-card {
  grid-column: 1 / 7;
  grid-row: 1;
  width: auto;
  min-height: 0;
  transform: none;
}

.automation-demo--lead-alert .alert-phone {
  grid-column: 7 / 13;
  grid-row: 1;
  width: auto;
  min-height: 178px;
  border-radius: 18px;
}

/* Review workflow */

.automation-demo--reviews .job-card {
  grid-column: 1 / 7;
  width: auto;
  min-height: 116px;
  transform: none;
}

.automation-demo--reviews .review-message {
  grid-column: 1 / 7;
  width: auto;
  min-height: 108px;
  transform: none;
}

.automation-demo--reviews .review-page-card {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
  width: auto;
  min-height: 236px;
  transform: none;
}

/* Unified inbox workflow */

.unified-channel-row {
  display: grid;
  grid-column: 1 / 4;
  align-content: center;
  gap: 9px;
}

.unified-channel-row span {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  color: var(--polish-carbon);
  background: var(--polish-raised);
  border: 1px solid var(--polish-border);
  border-radius: 9px;
  box-shadow: 0 1px 2px rgb(17 19 26 / 7%);
  font-size: 9px;
  font-weight: 700;
}

.unified-channel-row i {
  color: var(--polish-violet);
  font-size: 9px;
  font-style: normal;
}

.unified-channel-row span:nth-child(2) i {
  color: var(--polish-sky);
}

.unified-channel-row span:nth-child(3) i {
  color: #26a66f;
}

.unified-inbox-phone {
  grid-column: 4 / 13;
  overflow: hidden;
  color: var(--polish-carbon);
  background: var(--polish-raised);
  border: 1px solid var(--polish-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgb(17 19 26 / 8%);
}

.unified-inbox-phone header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--polish-warm-white);
  background: var(--polish-carbon);
}

.unified-inbox-phone header small,
.unified-inbox-phone header strong {
  display: block;
}

.unified-inbox-phone header small {
  color: rgb(247 244 238 / 56%);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
}

.unified-inbox-phone header strong {
  margin-top: 3px;
  font-size: 13px;
}

.unified-inbox-phone header > span {
  padding: 5px 8px;
  color: var(--polish-carbon);
  background: var(--polish-sky);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 700;
}

.unified-thread {
  display: grid;
  min-width: 0;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-bottom: 1px solid #e3dfd7;
}

.unified-thread--active {
  background: #f0eeff;
  box-shadow: inset 3px 0 0 var(--polish-violet);
}

.unified-thread > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--polish-warm-white);
  background: var(--polish-violet-deep);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.unified-thread:nth-of-type(2) > i {
  background: #176b95;
}

.unified-thread:nth-of-type(3) > i {
  background: #176b5b;
}

.unified-thread div,
.unified-thread div strong,
.unified-thread div p,
.unified-thread > span,
.unified-thread > span b,
.unified-thread > span small {
  min-width: 0;
  margin: 0;
}

.unified-thread div strong {
  display: block;
  font-size: 10px;
}

.unified-thread div p {
  margin-top: 3px;
  overflow: hidden;
  color: var(--polish-muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.unified-thread > span {
  text-align: right;
}

.unified-thread > span b,
.unified-thread > span small {
  display: block;
}

.unified-thread > span b {
  color: var(--polish-violet-deep);
  font-size: 7px;
}

.unified-thread > span small {
  margin-top: 3px;
  color: #777c88;
  font-size: 7px;
}

.unified-reply {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 12px 12px;
  padding: 7px 8px 7px 11px;
  color: #777c88;
  background: #f3f1ec;
  border: 1px solid #e0dcd4;
  border-radius: 8px;
  font-size: 8px;
}

.unified-reply b {
  padding: 6px 9px;
  color: var(--polish-warm-white);
  background: var(--polish-violet-deep);
  border-radius: 5px;
  font-size: 7px;
}

/* The five workflows now use one restrained staged reveal. */

.automation-demo.is-active > .website-browser,
.automation-demo.is-active > .demo-route,
.automation-demo.is-active > .call-event-card,
.automation-demo.is-active > .rescue-phone,
.automation-demo.is-active > .lead-form-card,
.automation-demo.is-active > .alert-phone,
.automation-demo.is-active > .job-card,
.automation-demo.is-active > .review-message,
.automation-demo.is-active > .review-page-card,
.automation-demo.is-active > .unified-channel-row,
.automation-demo.is-active > .unified-inbox-phone {
  animation: workflow-step-in 480ms var(--polish-motion) both !important;
}

.automation-demo.is-active > :is(
  .demo-route,
  .rescue-phone,
  .alert-phone,
  .review-message,
  .unified-inbox-phone
) {
  animation-delay: 120ms !important;
}

.automation-demo.is-active > :is(
  .review-page-card
) {
  animation-delay: 240ms !important;
}

.automation-demo.is-active .browser-page > *,
.automation-demo.is-active .lead-form-card label,
.automation-demo.is-active .alert-phone > :not(.phone-speaker),
.automation-demo.is-active .sms-bubble,
.automation-demo.is-active .sms-status,
.automation-demo.is-active .job-card > i,
.automation-demo.is-active .unified-inbox-phone * {
  animation: none !important;
}

@keyframes workflow-step-in {
  from {
    opacity: .42;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-inner {
  padding: 80px 64px 64px;
}

.calendar-inner h2,
.calendar-inner > p {
  max-width: 760px;
  text-align: center;
}

.calendar-inner > p {
  font-size: 17px;
  line-height: 1.6;
}

.sendr-faq {
  padding: 72px 24px;
}

.sendr-faq header {
  margin-bottom: 32px;
  text-align: center;
}

.sendr-faq h2,
.sendr-faq header p {
  text-align: center !important;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--polish-border);
  box-shadow: 0 1px 2px rgb(17 19 26 / 6%);
}

.faq-item button {
  min-height: 60px;
  padding: 18px 20px;
}

.faq-item button:hover {
  background: #fbfaf7;
}

.faq-item button:focus-visible {
  outline: 2px solid var(--polish-violet);
  outline-offset: -2px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--polish-muted);
  line-height: 1.625;
}

.cta-card {
  border: 1px solid var(--polish-border);
  box-shadow: 0 8px 24px rgb(17 19 26 / 8%);
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

@media (max-width: 767px) {
  .sendr-nav,
  .nav-inner {
    min-height: 72px;
  }

  .nav-inner {
    padding-inline: 20px;
  }

  .nav-logo {
    width: 136px;
    max-width: 48%;
  }

  .nav-inner .sendr-button {
    flex: 0 0 auto;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 40px;
    padding: 40px 20px 64px;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.16;
    text-align: left;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.625;
  }

  .hero-button {
    width: 100%;
  }

  .video-frame {
    border-radius: 12px;
  }

  .video-frame--loom .video-circle {
    width: 25%;
    border-width: 2px;
  }

  .video-frame--placeholder,
  .feature-video-placeholder {
    min-height: 230px;
    padding: 22px 18px;
  }

  .placeholder-play {
    width: 54px;
    height: 54px;
  }

  .feature-video-player {
    border-radius: 12px;
  }

  .feature-video-player__label {
    top: 10px;
    left: 10px;
  }

  .centre-play {
    width: 56px;
    height: 56px;
  }

  .video-annotation {
    width: min(100%, 310px);
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }

  .video-annotation img {
    width: 54px;
    height: auto;
  }

  .video-annotation span {
    font-size: 13px;
  }

  .feature-grid {
    gap: 32px;
    padding: 64px 20px;
  }

  .feature-copy {
    order: 1 !important;
    align-items: flex-start;
    max-width: none;
  }

  .feature-image {
    order: 2 !important;
  }

  .feature-copy h2,
  .calendar-inner h2,
  .sendr-faq h2,
  .cta-card h2 {
    font-size: 28px;
    line-height: 1.22;
    text-align: left;
  }

  .feature-copy p,
  .feature-copy ul {
    text-align: left;
  }

  .feature-copy p {
    margin-top: 16px;
  }

  .feature-copy li {
    margin-bottom: 12px;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .feature-copy li::before {
    left: 3px;
  }

  .automation-demo {
    display: block;
    min-height: 0;
    padding: 58px 16px 18px;
  }

  .automation-demo > :not(.demo-grid, .demo-kicker, .rescue-connector, .lead-route, .review-route, .seo-route) {
    width: 100%;
    margin-bottom: 12px;
  }

  .automation-demo > :last-child {
    margin-bottom: 0;
  }

  .demo-kicker {
    top: 15px;
    left: 16px;
  }

  .automation-demo--website .website-browser {
    min-height: 0;
  }

  .browser-page {
    padding: 18px;
  }

  .browser-page strong {
    max-width: 16ch;
    font-size: 20px;
  }

  .browser-page p {
    font-size: 10px;
  }

  .demo-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr) !important;
    gap: 2px;
    padding: 8px;
  }

  .demo-route span {
    min-height: 32px;
    gap: 4px;
    padding: 4px;
    background: rgb(247 244 238 / 6%);
    border-radius: 4px;
  }

  .demo-route span b {
    font-size: 7px;
  }

  .demo-route em {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .demo-route u {
    display: none;
  }

  .automation-demo--missed-call .call-event-card,
  .automation-demo--missed-call .rescue-phone,
  .automation-demo--lead-alert .lead-form-card,
  .automation-demo--lead-alert .alert-phone,
  .automation-demo--reviews .job-card,
  .automation-demo--reviews .review-message,
  .automation-demo--reviews .review-page-card,
  .automation-demo--unified-inbox .unified-channel-row,
  .automation-demo--unified-inbox .unified-inbox-phone {
    min-height: 0;
    transform: none;
  }

  .rescue-phone,
  .alert-phone {
    padding: 16px;
    border-width: 3px;
    border-radius: 16px !important;
  }

  .phone-speaker {
    margin-bottom: 18px;
  }

  .automation-demo--missed-call .rescue-phone,
  .automation-demo--lead-alert .alert-phone,
  .automation-demo--reviews .review-page-card,
  .automation-demo--unified-inbox .unified-inbox-phone {
    margin-bottom: 0;
  }

  .review-page-card > strong {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .unified-channel-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .unified-channel-row span {
    min-height: 40px;
    justify-content: center;
    gap: 5px;
    padding-inline: 5px;
  }

  .unified-inbox-phone header {
    padding-inline: 12px;
  }

  .unified-thread {
    padding-inline: 10px;
  }

  .unified-reply {
    margin-inline: 10px;
  }

  .calendar-inner {
    align-items: center;
    padding: 64px 20px 48px;
  }

  .calendar-inner h2,
  .calendar-inner > p {
    max-width: 100%;
    text-align: center;
  }

  .calendar-inner > p {
    margin: 16px 0 24px;
    font-size: 16px;
  }

  .calendar-wrapper {
    width: calc(100% + 8px);
    margin-left: -4px;
  }

  .calendar-iframe {
    height: 800px;
  }

  .sendr-faq {
    padding: 64px 20px;
  }

  .sendr-faq header p {
    margin: 16px 0 0;
    line-height: 1.6;
  }

  .faq-item button {
    min-height: 60px;
    padding: 16px;
  }

  .faq-item button span {
    padding-right: 12px;
    line-height: 1.45;
  }

  .faq-answer p {
    padding: 0 16px 18px;
  }

  .sendr-cta {
    min-height: 0;
    padding: 32px 20px 64px;
  }

  .cta-card {
    min-height: 0;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 24px;
  }

  .cta-card h2,
  .cta-card p {
    max-width: 100%;
    text-align: left;
  }

  .cta-card p {
    font-size: 17px;
    line-height: 1.6;
  }

  .cta-card .sendr-button {
    width: 100%;
  }

  .footer-inner {
    padding: 40px 20px 56px;
  }

  .footer-brand p {
    line-height: 1.6;
  }

  .footer-links {
    gap: 0;
  }
}

@media (max-width: 359px) {
  .nav-inner .sendr-button {
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .automation-demo {
    padding-inline: 14px;
  }

  .demo-route span b {
    display: block;
  }

  .review-page-card > strong {
    font-size: 19px;
  }
}

html[data-motion="reduce"] .automation-demo.is-active > *,
html[data-motion="reduce"] .automation-demo.is-active > *::before,
html[data-motion="reduce"] .automation-demo.is-active > *::after {
  animation: none !important;
  transition: none !important;
}

html[data-motion="reduce"] {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: reduce) {
  .automation-demo.is-active > *,
  .automation-demo.is-active > *::before,
  .automation-demo.is-active > *::after {
    animation: none !important;
    transition: none !important;
  }
}
