@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #11131a;
  background: #f7f4ee;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

button,
a,
iframe {
  font: inherit;
}

button {
  color: inherit;
}

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

.sendr-shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

.sendr-nav {
  min-height: 89px;
  background: #f7f4ee;
}

.nav-inner {
  display: flex;
  min-height: 89px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 96px;
}

.nav-logo {
  width: 150px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.sendr-button {
  min-height: 40px;
  padding: 8px 16px;
  color: #f7f4ee;
  background: #5e4ee5;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: opacity .2s ease;
}

.sendr-button:hover {
  opacity: .75;
}

.sendr-button:focus-visible,
.video-frame:focus-visible,
.faq-item button:focus-visible,
.sendr-footer a:focus-visible {
  outline: 3px solid #5e4ee5;
  outline-offset: 3px;
}

.sendr-hero {
  display: flex;
  min-height: 400px;
  align-items: center;
  background: #f7f4ee;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  padding: 48px 96px;
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.dynamic-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dynamic-card {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.default-card {
  background: #e6e7e8;
  border-radius: 3px;
  transform: rotate(-6deg);
}

.default-card img {
  width: 32px;
  height: 32px;
}

.company-card {
  transform: rotate(6deg);
}

.company-card img {
  width: 48px;
  height: 48px;
  border-radius: 3px;
  object-fit: cover;
}

.lead-logo-card {
  overflow: hidden;
  background: #11131a;
}

.lead-logo-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.threeday-logo-card {
  overflow: hidden;
  background: #e6e7e8;
  border-radius: 3px;
}

.threeday-logo-card img {
  width: 42px;
  height: 42px;
  padding: 3px;
  border-radius: 0;
  object-fit: contain;
}

.hero-copy h1,
.feature-copy h1,
.calendar-inner h1,
.sendr-faq h1,
.cta-card h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.hero-copy p {
  margin: 0;
  color: #4e5361;
}

.hero-button {
  padding: 8px 16px;
}

.video-column {
  min-width: 0;
  text-align: center;
}

.video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
}

.website-background {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.video-circle {
  position: absolute;
  z-index: 2;
  bottom: 5%;
  left: 5%;
  width: 20%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}

.video-circle img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%);
}

.centre-play {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease-in-out;
}

.video-frame:hover .centre-play {
  background: #000;
}

.centre-play svg {
  width: 24px;
  height: 24px;
  fill: white;
  transform: translateX(3px);
}

.video-annotation {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 57px;
  justify-content: center;
  padding: 8px;
  text-align: left;
}

.video-annotation img {
  position: absolute;
  left: 50%;
  width: 62px;
  height: 41px;
  transform: translateX(-50%);
}

.video-annotation span {
  position: absolute;
  left: calc(50% + 50px);
  max-width: 250px;
  color: #404040;
  font-size: 14px;
}

.annotation-space {
  height: 40px;
}

.sendr-feature {
  display: flex;
  min-height: auto;
  justify-content: center;
  background: #f7f4ee;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  padding: 40px 96px;
}

.feature-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.feature-copy p {
  margin: 16px 0 0;
  color: #4e5361;
  line-height: 24px;
}

.feature-copy ul {
  margin: 24px 0 0;
  padding: 0;
  color: #000;
  list-style: none;
  text-align: left;
}

.feature-copy li {
  position: relative;
  display: flex;
  min-height: 20px;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-left: 28px;
}

.feature-copy li::before {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
  content: "";
}

.feature-image {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 8px;
  object-fit: contain;
}

.automation-demo {
  --demo-enter: cubic-bezier(.22, 1, .36, 1);
  --demo-route: cubic-bezier(.32, .72, 0, 1);
  position: relative;
  width: min(100%, 560px);
  min-height: 410px;
  overflow: hidden;
  background: #ece9e2;
  border: 1px solid #d7d2c9;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgb(17 19 26 / 9%), 0 2px 6px rgb(17 19 26 / 5%);
  isolation: isolate;
}

.automation-demo::after {
  position: absolute;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: #6c5cff;
  box-shadow: 187px 0 0 #55b8ff, 374px 0 0 #ff9a70;
  content: "";
}

.demo-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  opacity: .6;
}

.demo-grid::before,
.demo-grid::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.demo-grid::before {
  top: 0;
  bottom: 0;
  left: 33.333%;
  width: 1px;
  background: rgb(17 19 26 / 7%);
  box-shadow: 186px 0 0 rgb(17 19 26 / 7%);
}

.demo-grid::after {
  top: 33.333%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgb(17 19 26 / 7%);
  box-shadow: 0 136px 0 rgb(17 19 26 / 7%);
}

.demo-kicker,
.demo-live {
  position: absolute;
  z-index: 50;
  top: 18px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.demo-kicker {
  left: 20px;
  color: #4e5361;
}

.demo-kicker span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 9px;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 50%;
  font-size: 9px;
}

.demo-live {
  right: 20px;
  color: #646a78;
}

.demo-live i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: #176b5b;
  border-radius: 50%;
}

.automation-demo.is-active .demo-live i {
  animation: demo-live-pulse 2.4s var(--demo-enter) infinite;
}

.phone-speaker {
  width: 38px;
  height: 5px;
  margin: 0 auto 25px;
  background: #2d303a;
  border-radius: 999px;
}

.website-old-card,
.website-browser,
.call-event-card,
.rescue-rule-card,
.rescue-phone,
.lead-form-card,
.lead-packet,
.alert-phone,
.job-card,
.review-message,
.review-page-card,
.seo-page-stack article,
.seo-index-node,
.seo-result-card,
.demo-route,
.rescue-note,
.lead-outcome,
.review-caption,
.seo-proof {
  box-shadow: 0 8px 24px rgb(17 19 26 / 10%), 0 2px 6px rgb(17 19 26 / 5%);
}

/* Website: a clear service page replaces a weak generic site. */
.website-old-card {
  position: absolute;
  z-index: 2;
  top: 102px;
  left: 24px;
  width: 168px;
  height: 214px;
  padding: 18px;
  color: #646a78;
  background: #d7d2c9;
  border: 1px solid rgb(17 19 26 / 8%);
  border-radius: 8px;
  transform: rotate(-4deg);
}

.website-old-card span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.website-old-card i {
  display: block;
  height: 8px;
  margin-top: 26px;
  background: rgb(17 19 26 / 10%);
  border-radius: 999px;
}

.website-old-card i:nth-child(3) {
  width: 78%;
  margin-top: 9px;
}

.website-old-card i:nth-child(4) {
  width: 54%;
  margin-top: 9px;
}

.website-browser {
  position: absolute;
  z-index: 6;
  top: 70px;
  right: 24px;
  width: 78%;
  min-height: 266px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(17 19 26 / 10%);
  border-radius: 12px;
  transform: rotate(1deg);
}

.browser-bar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #11131a;
}

.browser-bar > span {
  width: 7px;
  height: 7px;
  background: #ff9a70;
  border-radius: 50%;
}

.browser-bar > span:nth-child(2) {
  background: #e7e3ff;
}

.browser-bar > span:nth-child(3) {
  background: #55b8ff;
}

.browser-bar small {
  min-width: 0;
  margin-left: 7px;
  overflow: hidden;
  color: rgb(247 244 238 / 62%);
  font-size: 8px;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-page {
  padding: 22px;
}

.browser-page-label {
  color: #5e4ee5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
}

.browser-page strong {
  display: block;
  max-width: 12ch;
  margin-top: 12px;
  color: #11131a;
  font-size: 22px;
  line-height: 1.05;
}

.browser-page p {
  max-width: 32ch;
  margin: 10px 0 0;
  color: #646a78;
  font-size: 10px;
  line-height: 1.4;
}

.browser-cta {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  margin-top: 13px;
  padding: 0 11px;
  color: #f7f4ee;
  background: #5e4ee5;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
}

.browser-service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.browser-service-row i {
  min-height: 30px;
  padding: 8px 6px;
  background: #ece9e2;
  border-top: 2px solid #6c5cff;
  font-size: 7px;
  font-style: normal;
  line-height: 1.2;
}

.browser-service-row i:nth-child(2) {
  border-color: #55b8ff;
}

.browser-service-row i:nth-child(3) {
  border-color: #ff9a70;
}

.demo-route {
  position: absolute;
  z-index: 12;
  right: 28px;
  bottom: 20px;
  left: 28px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  padding: 10px 12px;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 8px;
}

.demo-route span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-route span i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: #11131a;
  background: #e7e3ff;
  border-radius: 50%;
  font-size: 7px;
  font-style: normal;
}

.demo-route span:nth-of-type(2) i {
  background: #ddf1ff;
}

.demo-route span:nth-of-type(3) i {
  background: #ffe4d9;
}

.demo-route span b {
  color: rgb(247 244 238 / 76%);
  font-size: 7px;
  line-height: 1.15;
}

.demo-route em {
  height: 1px;
  background: rgb(247 244 238 / 27%);
}

.demo-route u {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 16%;
  width: 68%;
  height: 1px;
  background: #55b8ff;
  text-decoration: none;
  transform: scaleX(1);
  transform-origin: left;
}

.automation-demo--website.is-active .website-old-card {
  animation: website-old-out 1.1s var(--demo-enter) .15s both;
}

.automation-demo--website.is-active .website-browser {
  animation: website-browser-in 1.05s var(--demo-enter) .55s both;
}

.automation-demo--website.is-active .browser-page > * {
  animation: demo-content-up .72s var(--demo-enter) both;
}

.automation-demo--website.is-active .browser-page > :nth-child(1) { animation-delay: 1.1s; }
.automation-demo--website.is-active .browser-page > :nth-child(2) { animation-delay: 1.2s; }
.automation-demo--website.is-active .browser-page > :nth-child(3) { animation-delay: 1.3s; }
.automation-demo--website.is-active .browser-page > :nth-child(4) { animation-delay: 1.4s; }
.automation-demo--website.is-active .browser-page > :nth-child(5) { animation-delay: 1.5s; }

.automation-demo--website.is-active .demo-route {
  animation: demo-content-up .72s var(--demo-enter) 1.55s both;
}

.automation-demo--website.is-active .demo-route u {
  animation: route-grow 1.15s var(--demo-route) 2s both;
}

/* Missed call: call event, approved rule, then customer text. */
.call-event-card {
  position: absolute;
  z-index: 7;
  top: 80px;
  left: 24px;
  display: grid;
  width: 250px;
  min-height: 82px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgb(17 19 26 / 9%);
  border-radius: 10px;
  transform: rotate(-1.5deg);
}

.event-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 50%;
  font-size: 18px;
}

.call-event-card small,
.rescue-rule-card small,
.rescue-phone > small,
.lead-form-card > small,
.alert-phone > small,
.job-card small,
.review-message small,
.seo-page-stack small,
.seo-result-card > small {
  color: #646a78;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.call-event-card strong,
.rescue-rule-card strong {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.2;
}

.call-event-card > b {
  color: #a12c44;
  font-size: 9px;
}

.rescue-rule-card {
  position: absolute;
  z-index: 6;
  top: 190px;
  left: 60px;
  width: 215px;
  min-height: 112px;
  padding: 16px;
  background: #e7e3ff;
  border: 1px solid rgb(17 19 26 / 8%);
  border-radius: 10px;
  transform: rotate(1.5deg);
}

.rescue-rule-card span {
  display: block;
  margin-top: 5px;
  color: #4e5361;
  font-size: 9px;
}

.rescue-rule-card i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #11131a;
  background: #55b8ff;
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.rescue-phone,
.alert-phone {
  position: absolute;
  z-index: 12;
  top: 98px;
  right: 24px;
  width: 176px;
  min-height: 252px;
  padding: 14px;
  overflow: hidden;
  color: #f7f4ee;
  background: #11131a;
  border: 4px solid #2b2e38;
  border-radius: 24px;
}

.rescue-phone > small,
.alert-phone > small {
  color: rgb(247 244 238 / 55%);
}

.sms-bubble {
  margin-top: 16px;
  padding: 12px;
  color: #11131a;
  background: #ddf1ff;
  border-radius: 12px 12px 4px;
  font-size: 10px;
  line-height: 1.45;
}

.sms-status {
  display: block;
  margin-top: 8px;
  color: rgb(247 244 238 / 50%);
  font-size: 8px;
  text-align: right;
}

.rescue-connector {
  position: absolute;
  z-index: 4;
  top: 176px;
  right: 162px;
  width: 172px;
  height: 2px;
  overflow: hidden;
  background: rgb(17 19 26 / 15%);
  transform: rotate(-7deg);
  transform-origin: right;
}

.rescue-connector i {
  display: block;
  width: 100%;
  height: 100%;
  background: #6c5cff;
  transform: scaleX(1);
  transform-origin: left;
}

.rescue-note {
  position: absolute;
  z-index: 15;
  bottom: 22px;
  left: 24px;
  width: 230px;
  padding: 12px 14px;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 8px;
  transform: rotate(-1deg);
}

.rescue-note span,
.rescue-note strong {
  display: block;
}

.rescue-note span {
  color: #55b8ff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rescue-note strong {
  margin-top: 5px;
  font-size: 11px;
}

.automation-demo--missed-call.is-active .call-event-card {
  animation: call-event-in .8s var(--demo-enter) .15s both;
}

.automation-demo--missed-call.is-active .rescue-rule-card {
  animation: rule-card-in .8s var(--demo-enter) .8s both;
}

.automation-demo--missed-call.is-active .rescue-connector i {
  animation: route-grow .75s var(--demo-route) 1.45s both;
}

.automation-demo--missed-call.is-active .rescue-phone {
  animation: phone-in .9s var(--demo-enter) 1.75s both;
}

.automation-demo--missed-call.is-active .sms-bubble,
.automation-demo--missed-call.is-active .sms-status {
  animation: message-in .7s var(--demo-enter) 2.35s both;
}

.automation-demo--missed-call.is-active .rescue-note {
  animation: demo-content-up .72s var(--demo-enter) 2.75s both;
}

/* Lead alert: form data is packed and handed straight to the phone. */
.lead-form-card {
  position: absolute;
  z-index: 7;
  top: 72px;
  left: 22px;
  width: 236px;
  min-height: 286px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgb(17 19 26 / 9%);
  border-radius: 10px;
  transform: rotate(-1deg);
}

.lead-form-card > strong {
  display: block;
  margin: 10px 0 13px;
  font-size: 17px;
}

.lead-form-card label {
  display: block;
  margin-top: 8px;
  padding: 8px 9px;
  background: #f7f4ee;
  border: 1px solid #d7d2c9;
  border-radius: 4px;
}

.lead-form-card label span,
.lead-form-card label b {
  display: block;
}

.lead-form-card label span {
  color: #646a78;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead-form-card label b {
  margin-top: 3px;
  font-size: 10px;
}

.form-submit {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-top: 10px;
  padding: 0 10px;
  color: #f7f4ee;
  background: #5e4ee5;
  border-radius: 4px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.lead-packet {
  position: absolute;
  z-index: 14;
  top: 186px;
  left: 47%;
  display: grid;
  width: 100px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 7px;
  background: #11131a;
  border-radius: 7px;
  transform: translateX(-50%) rotate(-2deg);
}

.lead-packet span {
  display: grid;
  min-height: 28px;
  place-items: center;
  color: #11131a;
  background: #e7e3ff;
  border-radius: 3px;
  font-size: 6px;
  font-weight: 700;
}

.lead-packet span:nth-child(2) { background: #ddf1ff; }
.lead-packet span:nth-child(3) { background: #ffe4d9; }

.alert-phone {
  top: 102px;
  right: 22px;
  width: 174px;
  min-height: 248px;
}

.alert-phone > strong {
  display: block;
  margin-top: 18px;
  color: #55b8ff;
  font-size: 19px;
  line-height: 1.1;
}

.alert-phone p {
  margin: 9px 0 0;
  color: rgb(247 244 238 / 68%);
  font-size: 10px;
  line-height: 1.5;
}

.alert-phone > span {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: #11131a;
  background: #55b8ff;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
}

.lead-route {
  position: absolute;
  z-index: 5;
  top: 202px;
  right: 155px;
  width: 160px;
  height: 2px;
  overflow: hidden;
  background: rgb(17 19 26 / 16%);
  transform: rotate(-3deg);
}

.lead-route i {
  display: block;
  width: 100%;
  height: 100%;
  background: #55b8ff;
  transform-origin: left;
}

.lead-outcome {
  position: absolute;
  z-index: 16;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #ffe4d9;
  border-radius: 7px;
  transform: rotate(1deg);
}

.lead-outcome span {
  color: #a84625;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lead-outcome b {
  font-size: 10px;
}

.automation-demo--lead-alert.is-active .lead-form-card {
  animation: form-card-in .85s var(--demo-enter) .15s both;
}

.automation-demo--lead-alert.is-active .lead-form-card label {
  animation: demo-content-up .55s var(--demo-enter) both;
}

.automation-demo--lead-alert.is-active .lead-form-card label:nth-of-type(1) { animation-delay: .8s; }
.automation-demo--lead-alert.is-active .lead-form-card label:nth-of-type(2) { animation-delay: 1s; }
.automation-demo--lead-alert.is-active .lead-form-card label:nth-of-type(3) { animation-delay: 1.2s; }

.automation-demo--lead-alert.is-active .lead-packet {
  animation: packet-handoff 1.25s var(--demo-route) 1.5s both;
}

.automation-demo--lead-alert.is-active .lead-route i {
  animation: route-grow .85s var(--demo-route) 1.55s both;
}

.automation-demo--lead-alert.is-active .alert-phone {
  animation: phone-in .85s var(--demo-enter) 2.1s both;
}

.automation-demo--lead-alert.is-active .alert-phone > :not(.phone-speaker) {
  animation: message-in .65s var(--demo-enter) 2.55s both;
}

.automation-demo--lead-alert.is-active .lead-outcome {
  animation: demo-content-up .7s var(--demo-enter) 2.85s both;
}

/* Review funnel: a finished job prompts an honest customer decision. */
.job-card {
  position: absolute;
  z-index: 7;
  top: 82px;
  left: 22px;
  width: 210px;
  min-height: 118px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgb(17 19 26 / 9%);
  border-radius: 9px;
  transform: rotate(-2deg);
}

.job-card strong,
.job-card span {
  display: block;
}

.job-card strong {
  margin-top: 8px;
  font-size: 16px;
}

.job-card span {
  margin-top: 5px;
  color: #646a78;
  font-size: 9px;
}

.job-card > i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #11131a;
  background: #55b8ff;
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.review-message {
  position: absolute;
  z-index: 10;
  bottom: 54px;
  left: 52px;
  width: 210px;
  min-height: 126px;
  padding: 16px;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 11px 11px 3px;
  transform: rotate(1.5deg);
}

.review-message small {
  color: rgb(247 244 238 / 52%);
}

.review-message p {
  margin: 9px 0 0;
  color: rgb(247 244 238 / 78%);
  font-size: 9px;
  line-height: 1.45;
}

.review-message > span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-top: 10px;
  padding: 0 10px;
  color: #11131a;
  background: #ff9a70;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
}

.review-page-card {
  position: absolute;
  z-index: 13;
  top: 94px;
  right: 22px;
  width: 236px;
  min-height: 206px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgb(17 19 26 / 9%);
  border-radius: 11px;
  transform: rotate(1deg);
}

.review-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-brand > i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 6px;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.review-brand span,
.review-brand b,
.review-brand small {
  display: block;
}

.review-brand b {
  font-size: 10px;
}

.review-brand small {
  margin-top: 2px;
  color: #646a78;
  font-size: 8px;
}

.review-page-card > p {
  margin: 21px 0 0;
  color: #646a78;
  font-size: 9px;
}

.review-page-card > strong {
  display: block;
  margin-top: 6px;
  color: #ff9a70;
  font-size: 24px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.review-open {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  margin-top: 15px;
  padding: 0 9px;
  color: #176b5b;
  background: #e2f3ee;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.review-route {
  position: absolute;
  z-index: 5;
  top: 189px;
  right: 147px;
  width: 170px;
  height: 2px;
  overflow: hidden;
  background: rgb(17 19 26 / 15%);
  transform: rotate(7deg);
}

.review-route i {
  display: block;
  width: 100%;
  height: 100%;
  background: #ff9a70;
  transform-origin: left;
}

.review-caption {
  position: absolute;
  z-index: 16;
  right: 23px;
  bottom: 20px;
  padding: 9px 11px;
  color: #4e5361;
  background: #ffe4d9;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
}

.automation-demo--reviews.is-active .job-card {
  animation: job-card-in .8s var(--demo-enter) .15s both;
}

.automation-demo--reviews.is-active .job-card > i {
  animation: check-pop .55s var(--demo-enter) .85s both;
}

.automation-demo--reviews.is-active .review-route i {
  animation: route-grow .85s var(--demo-route) 1.15s both;
}

.automation-demo--reviews.is-active .review-message {
  animation: message-in .8s var(--demo-enter) 1.55s both;
}

.automation-demo--reviews.is-active .review-page-card {
  animation: review-page-in .9s var(--demo-enter) 2.2s both;
}

.automation-demo--reviews.is-active .review-caption {
  animation: demo-content-up .7s var(--demo-enter) 2.7s both;
}

/* Local SEO: specific pages are understood and matched to a relevant search. */
.seo-page-stack {
  position: absolute;
  z-index: 7;
  top: 82px;
  left: 22px;
  width: 205px;
  height: 248px;
}

.seo-page-stack article {
  position: absolute;
  width: 184px;
  min-height: 108px;
  padding: 15px;
  background: #fff;
  border: 1px solid rgb(17 19 26 / 9%);
  border-radius: 8px;
}

.seo-page-stack article:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 3;
  border-top: 3px solid #6c5cff;
  transform: rotate(-3deg);
}

.seo-page-stack article:nth-child(2) {
  top: 62px;
  left: 12px;
  z-index: 2;
  border-top: 3px solid #55b8ff;
  transform: rotate(1.5deg);
}

.seo-page-stack article:nth-child(3) {
  top: 125px;
  left: 3px;
  z-index: 1;
  border-top: 3px solid #ff9a70;
  transform: rotate(-1deg);
}

.seo-page-stack strong,
.seo-page-stack span {
  display: block;
}

.seo-page-stack strong {
  margin-top: 9px;
  font-size: 14px;
}

.seo-page-stack span {
  margin-top: 6px;
  color: #646a78;
  font-size: 9px;
}

.seo-index-node {
  position: absolute;
  z-index: 13;
  top: 164px;
  left: 47%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  padding: 14px;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 50%;
  text-align: center;
  transform: translateX(-50%);
}

.seo-index-node span {
  color: #55b8ff;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .09em;
}

.seo-index-node strong {
  font-size: 10px;
  line-height: 1.2;
}

.seo-index-node i {
  position: absolute;
  inset: -9px;
  border: 1px solid rgb(17 19 26 / 24%);
  border-radius: 50%;
  opacity: .7;
}

.seo-result-card {
  position: absolute;
  z-index: 11;
  top: 90px;
  right: 22px;
  width: 230px;
  min-height: 226px;
  padding: 16px;
  background: #ddf1ff;
  border: 1px solid rgb(17 19 26 / 9%);
  border-radius: 10px;
  transform: rotate(1.5deg);
}

.seo-result-card > p {
  margin: 9px 0 14px;
  padding: 8px 9px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(17 19 26 / 9%);
  border-radius: 999px;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-result-card > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 7px;
}

.seo-result-card > div > i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #f7f4ee;
  background: #5e4ee5;
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.seo-result-card > div span,
.seo-result-card > div strong,
.seo-result-card > div small {
  display: block;
}

.seo-result-card > div strong {
  font-size: 10px;
}

.seo-result-card > div small {
  margin-top: 3px;
  color: #646a78;
  font-size: 7px;
}

.seo-result-card > b {
  display: block;
  margin-top: 14px;
  color: #176b95;
  font-size: 8px;
  letter-spacing: .03em;
}

.seo-route {
  position: absolute;
  z-index: 5;
  left: 182px;
  width: 155px;
  height: 2px;
  overflow: hidden;
  background: rgb(17 19 26 / 15%);
  transform-origin: left;
}

.seo-route--one {
  top: 159px;
  transform: rotate(12deg);
}

.seo-route--two {
  top: 263px;
  transform: rotate(-11deg);
}

.seo-route i {
  display: block;
  width: 100%;
  height: 100%;
  background: #6c5cff;
  transform-origin: left;
}

.seo-route--two i {
  background: #55b8ff;
}

.seo-proof {
  position: absolute;
  z-index: 15;
  right: 24px;
  bottom: 20px;
  padding: 10px 12px;
  color: #f7f4ee;
  background: #11131a;
  border-radius: 7px;
}

.seo-proof span,
.seo-proof b {
  display: block;
}

.seo-proof span {
  color: #55b8ff;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-proof b {
  margin-top: 4px;
  font-size: 10px;
}

.automation-demo--seo.is-active .seo-page-stack article {
  animation: seo-page-in .8s var(--demo-enter) both;
}

.automation-demo--seo.is-active .seo-page-stack article:nth-child(1) { animation-delay: .15s; }
.automation-demo--seo.is-active .seo-page-stack article:nth-child(2) { animation-delay: .35s; }
.automation-demo--seo.is-active .seo-page-stack article:nth-child(3) { animation-delay: .55s; }

.automation-demo--seo.is-active .seo-route i {
  animation: route-grow .9s var(--demo-route) 1.05s both;
}

.automation-demo--seo.is-active .seo-index-node {
  animation: search-node-in .8s var(--demo-enter) 1.45s both;
}

.automation-demo--seo.is-active .seo-index-node i {
  animation: search-ring 2.4s var(--demo-enter) 1.9s infinite;
}

.automation-demo--seo.is-active .seo-result-card {
  animation: seo-result-in .9s var(--demo-enter) 2.05s both;
}

.automation-demo--seo.is-active .seo-proof {
  animation: demo-content-up .7s var(--demo-enter) 2.7s both;
}

@keyframes demo-live-pulse {
  0%, 100% { opacity: .45; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes demo-content-up {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes route-grow {
  0% { opacity: .2; transform: scaleX(0); }
  100% { opacity: 1; transform: scaleX(1); }
}

@keyframes website-old-out {
  0% { opacity: .95; transform: rotate(-4deg) translateX(0); }
  100% { opacity: .38; transform: rotate(-7deg) translateX(-14px); }
}

@keyframes website-browser-in {
  0% { opacity: 0; transform: translateY(30px) rotate(3deg) scale(.95); }
  100% { opacity: 1; transform: translateY(0) rotate(1deg) scale(1); }
}

@keyframes call-event-in {
  0% { opacity: 0; transform: translateY(-18px) rotate(-4deg) scale(.96); }
  100% { opacity: 1; transform: translateY(0) rotate(-1.5deg) scale(1); }
}

@keyframes rule-card-in {
  0% { opacity: 0; transform: translateX(-22px) rotate(-2deg); }
  100% { opacity: 1; transform: translateX(0) rotate(1.5deg); }
}

@keyframes phone-in {
  0% { opacity: 0; transform: translateY(28px) rotate(4deg) scale(.95); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes message-in {
  0% { opacity: 0; transform: translateY(12px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes form-card-in {
  0% { opacity: 0; transform: translateX(-24px) rotate(-4deg); }
  100% { opacity: 1; transform: translateX(0) rotate(-1deg); }
}

@keyframes packet-handoff {
  0% { opacity: 0; transform: translateX(-92px) rotate(-5deg) scale(.86); }
  38% { opacity: 1; transform: translateX(-50%) rotate(-2deg) scale(1); }
  100% { opacity: .78; transform: translateX(58px) rotate(3deg) scale(.9); }
}

@keyframes job-card-in {
  0% { opacity: 0; transform: translateY(-20px) rotate(-5deg); }
  100% { opacity: 1; transform: translateY(0) rotate(-2deg); }
}

@keyframes check-pop {
  0% { opacity: 0; transform: scale(.45) rotate(-18deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes review-page-in {
  0% { opacity: 0; transform: translateX(28px) rotate(4deg) scale(.95); }
  100% { opacity: 1; transform: translateX(0) rotate(1deg) scale(1); }
}

@keyframes seo-page-in {
  0% { opacity: 0; transform: translateX(-22px) rotate(-5deg); }
  100% { opacity: 1; }
}

@keyframes search-node-in {
  0% { opacity: 0; transform: translateX(-50%) scale(.55) rotate(-12deg); }
  100% { opacity: 1; transform: translateX(-50%) scale(1) rotate(0); }
}

@keyframes search-ring {
  0%, 100% { opacity: .15; transform: scale(.9); }
  50% { opacity: .75; transform: scale(1.08); }
}

@keyframes seo-result-in {
  0% { opacity: 0; transform: translateX(30px) rotate(4deg) scale(.95); }
  100% { opacity: 1; transform: translateX(0) rotate(1.5deg) scale(1); }
}

.sendr-calendar {
  display: flex;
  min-height: 474px;
  justify-content: center;
  background: #f7f4ee;
}

.calendar-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 48px 96px;
}

.calendar-inner h1 {
  max-width: 70%;
  text-align: center;
}

.calendar-inner > p {
  max-width: 70%;
  margin: 20px 0 16px;
  color: #4e5361;
  text-align: center;
}

.calendar-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
}

.calendar-iframe {
  width: 100%;
  height: 850px;
  overflow: hidden;
  border: 0;
}

.sendr-faq {
  width: 100%;
  padding: 40px 20px;
  background: #f7f4ee;
}

.faq-inner {
  max-width: 800px;
  margin-inline: auto;
}

.sendr-faq header {
  max-width: 800px;
  margin: 0 auto 24px;
}

.sendr-faq h1 {
  margin-bottom: 8px;
  color: #000;
  text-align: center;
}

.sendr-faq header p {
  margin: 24px 0 20px;
  color: #5c6277;
  text-align: center;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  flex: 1 1 auto;
  padding-right: 16px;
  color: #000;
  font-weight: 700;
  word-break: break-word;
}

.faq-item button i {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .2s ease;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 8px;
  width: 10px;
  height: 2px;
  background: currentColor;
  content: "";
}

.faq-item button i::before {
  left: 1px;
  transform: rotate(45deg);
}

.faq-item button i::after {
  right: 1px;
  transform: rotate(-45deg);
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height .3s ease-in-out;
}

.faq-answer p {
  margin: 0;
  padding: 16px;
  color: #555;
  opacity: 0;
  white-space: pre-line;
  transition: opacity .3s ease;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  max-height: 260px;
}

.faq-item button[aria-expanded="true"] + .faq-answer p {
  opacity: 1;
}

.sendr-cta {
  display: flex;
  min-height: 384px;
  align-items: center;
  padding-inline: 20px;
  background: #f7f4ee;
}

.cta-card {
  display: flex;
  width: 100%;
  max-width: 1024px;
  min-height: 320px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin-inline: auto;
  padding: 40px 96px;
  background: #fbfbfc;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);
}

.cta-card h2 {
  max-width: 617px;
  text-align: center;
}

.cta-card p {
  max-width: 85%;
  margin: 0;
  color: #4e5361;
  font-size: 19.2px;
  text-align: center;
}

.sendr-footer {
  width: 100%;
  background: #f7f4ee;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 96px;
}

.footer-brand {
  display: flex;
  max-width: 50%;
  flex-direction: column;
  gap: 16px;
}

.footer-brand img {
  width: 175px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: #5c6277;
}

.footer-links {
  display: flex;
  min-width: 90px;
  flex-direction: column;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 4px;
  color: #5c6277;
  font-size: 16px;
  font-weight: 700;
}

.footer-links a {
  min-height: 21px;
  color: #5c6277;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-links a:hover {
  opacity: .8;
}

@media (max-width: 767px) {
  .nav-inner {
    padding-inline: 20px;
  }

  .nav-logo {
    max-width: 60%;
  }

  .sendr-hero {
    min-height: 300px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px;
  }

  .hero-copy h1,
  .sendr-faq h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }

  .sendr-feature:nth-of-type(3) .feature-copy,
  .sendr-feature:nth-of-type(5) .feature-copy {
    order: -1;
  }

  .feature-copy h1,
  .calendar-inner h1,
  .cta-card h2 {
    font-size: 30px;
    line-height: 38px;
    text-align: center;
  }

  .feature-copy {
    align-items: center;
  }

  .feature-copy p {
    text-align: center;
  }

  .automation-demo {
    min-height: 444px;
  }

  .automation-demo::after {
    box-shadow: 34vw 0 0 #55b8ff, 68vw 0 0 #ff9a70;
  }

  .demo-kicker {
    left: 14px;
  }

  .demo-live {
    right: 14px;
  }

  .website-old-card {
    top: 116px;
    left: 8px;
    width: 130px;
    height: 202px;
  }

  .website-browser {
    top: 76px;
    right: 12px;
    width: calc(100% - 32px);
    min-height: 266px;
  }

  .browser-page {
    padding: 18px;
  }

  .browser-page strong {
    font-size: 19px;
  }

  .demo-route {
    right: 12px;
    bottom: 14px;
    left: 12px;
    grid-template-columns: 1fr 20px 1fr 20px 1fr;
    padding: 9px 8px;
  }

  .demo-route span {
    gap: 4px;
  }

  .demo-route span i {
    width: 19px;
    height: 19px;
  }

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

  .automation-demo--missed-call {
    min-height: 468px;
  }

  .call-event-card {
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .rescue-rule-card {
    top: 182px;
    left: 12px;
    width: 176px;
  }

  .rescue-phone {
    top: 164px;
    right: 12px;
    width: 150px;
    min-height: 244px;
  }

  .rescue-connector {
    top: 237px;
    right: 133px;
    width: 124px;
  }

  .rescue-note {
    bottom: 16px;
    left: 12px;
    width: 204px;
  }

  .automation-demo--lead-alert {
    min-height: 470px;
  }

  .lead-form-card {
    top: 75px;
    left: 12px;
    width: 190px;
    min-height: 292px;
    padding: 15px;
  }

  .alert-phone {
    top: 143px;
    right: 12px;
    width: 150px;
    min-height: 246px;
  }

  .lead-packet {
    top: 220px;
    left: 50%;
    width: 88px;
  }

  .lead-route {
    top: 237px;
    right: 126px;
    width: 120px;
  }

  .lead-outcome {
    right: 12px;
    bottom: 16px;
  }

  .automation-demo--reviews {
    min-height: 490px;
  }

  .job-card {
    top: 78px;
    left: 12px;
    width: 184px;
  }

  .review-page-card {
    top: 141px;
    right: 12px;
    width: 214px;
  }

  .review-message {
    bottom: 49px;
    left: 12px;
    width: 204px;
  }

  .review-route {
    top: 205px;
    right: 116px;
    width: 142px;
  }

  .review-caption {
    right: 12px;
    bottom: 14px;
  }

  .automation-demo--seo {
    min-height: 486px;
  }

  .seo-page-stack {
    top: 78px;
    left: 12px;
    width: 180px;
  }

  .seo-page-stack article {
    width: 168px;
  }

  .seo-index-node {
    top: 184px;
    left: 42%;
    width: 102px;
    height: 102px;
  }

  .seo-result-card {
    top: 176px;
    right: 12px;
    width: 210px;
    min-height: 218px;
  }

  .seo-route {
    left: 136px;
    width: 126px;
  }

  .seo-route--one {
    top: 165px;
  }

  .seo-route--two {
    top: 277px;
  }

  .seo-proof {
    right: 12px;
    bottom: 15px;
  }

  .calendar-inner {
    padding: 48px 20px;
  }

  .calendar-inner h1,
  .calendar-inner > p {
    max-width: 90%;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-card p {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    padding: 40px 20px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 359px) {
  .demo-live {
    top: 49px;
    right: auto;
    left: 14px;
  }

  .website-browser {
    top: 92px;
  }

  .call-event-card,
  .lead-form-card,
  .job-card,
  .seo-page-stack {
    top: 94px;
  }

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

  .review-caption {
    max-width: 166px;
    text-align: right;
  }

  .automation-demo--reviews {
    min-height: 550px;
  }

  .automation-demo--lead-alert {
    min-height: 650px;
  }

  .alert-phone {
    top: 360px;
  }

  .lead-packet {
    top: 392px;
    left: 50%;
  }

  .lead-route {
    top: 409px;
  }

  .review-page-card {
    top: 176px;
    right: 8px;
    width: 200px;
  }

  .review-message {
    bottom: 49px;
    width: 204px;
  }

  .review-route {
    top: 218px;
  }

  .automation-demo--seo {
    min-height: 600px;
  }

  .seo-index-node {
    top: 242px;
    left: 50%;
    width: 90px;
    height: 90px;
  }

  .seo-result-card {
    top: 342px;
    right: 12px;
    width: calc(100% - 24px);
    min-height: 210px;
  }

  .seo-route--one {
    top: 225px;
  }

  .seo-route--two {
    top: 329px;
  }

  .seo-proof {
    display: none;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }

  .automation-demo *,
  .automation-demo *::before,
  .automation-demo *::after {
    animation: none !important;
  }
}
