@font-face {
  font-family: Satoshi;
  src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: Satoshi;
  src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: Satoshi;
  src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Satoshi Placeholder";
  src: local("Arial");
  ascent-override: 102.23%;
  descent-override: 24.29%;
  line-gap-override: 10.12%;
  size-adjust: 98.8%;
}

@font-face {
  font-family: Poppins;
  src: url("https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url("https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url("https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --bg: #ecedf1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1c1c1c;
  --muted: #5f6066;
  --soft: #aeb3c2;
  --accent: #5865f2;
  --accent-2: #5865f2;
  --line: rgba(23, 26, 37, 0.08);
  --shadow: 0 24px 70px rgba(91, 99, 134, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.55), transparent 36%),
    linear-gradient(180deg, #ecedf1 0%, #ecedf1 100%);
}

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

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

@keyframes logoDrift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes deployLineDrift {
  0% {
    transform: translate3d(230px, -230px, 0);
  }

  100% {
    transform: translate3d(-230px, 230px, 0);
  }
}

@keyframes launchRocketShootUp {
  0% {
    opacity: 0.98;
    transform: translate3d(0, 12px, 0) scale(0.985);
  }

  42% {
    opacity: 1;
    transform: translate3d(0, -8px, 0) scale(1.015);
  }

  70% {
    opacity: 1;
    transform: translate3d(0, -12px, 0) scale(1.02);
  }

  100% {
    opacity: 0.98;
    transform: translate3d(0, 12px, 0) scale(0.985);
  }
}

@keyframes serviceRailPulse {
  0%,
  100% {
    background-position: 0 0;
  }

  50% {
    background-position: 84px 0;
  }
}

@keyframes serviceChatReply {
  0%,
  48% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  62%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  .logo-strip {
    animation: none !important;
    transform: none !important;
  }

  .deploy-rail,
  .launch-icon {
    animation: none !important;
  }

  .deploy-rail {
    transform: none !important;
  }

  .launch-icon {
    transform: translate3d(0, 1.27px, 0) !important;
  }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  opacity: 1 !important;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(244, 245, 249, 0.86);
  box-shadow: 0 14px 38px rgba(91, 99, 134, 0.12);
  backdrop-filter: blur(18px);
  transform-origin: center top;
}

main {
  padding-top: 0;
}

section[id],
.contact-section {
  scroll-margin-top: 118px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  color: #505461;
  font-size: 26px;
  font-weight: 500;
}

.brand-word {
  display: none;
  white-space: nowrap;
}

.brand > span:last-child span {
  color: var(--accent);
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.brand-mark span {
  display: none;
}

.brand-mark::before {
  display: none;
  content: none;
}

.brand-mark span:first-child {
  top: 7px;
}

.brand-mark span + span {
  bottom: 7px;
  border-radius: 4px 4px 9px 9px;
}

.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #4b4f59;
  font-size: 16px;
  font-weight: 500;
}

.site-nav a,
.site-footer nav a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a:focus,
.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.site-footer nav a:focus,
.site-nav a[aria-current="true"] {
  color: var(--accent);
}

.site-header .site-nav a:focus-visible,
.site-header .site-nav a:focus,
.site-footer nav a:focus-visible,
.site-footer nav a:focus {
  color: var(--accent) !important;
  outline: 2px solid rgba(109, 122, 255, 0.55);
  outline-offset: 4px;
}

/* Keep the scroll-driven active nav state visually identical to the hash-target state. */
.site-nav a[aria-current="true"],
body:has(#process:target) .site-nav a[href="#process"],
body:has(#services:target) .site-nav a[href="#services"],
body:has(#benefits:target) .site-nav a[href="#benefits"],
body:has(#about-us:target) .site-nav a[href="#about-us"],
body:has(#plans:target) .site-nav a[href="#plans"],
body:has(#faq:target) .site-nav a[href="#faq"] {
  border-color: rgba(104, 113, 255, 0.78);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.28);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  width: 50px;
  min-width: 50px;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #7f8cff, #5865f2);
  box-shadow: 0 14px 30px rgba(127, 134, 255, 0.34);
}

.header-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.button {
  padding: 0 34px;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #8f98ff, #5865f2);
  box-shadow: 0 14px 35px rgba(127, 134, 255, 0.24);
}

.button.secondary {
  color: #565dca;
  background: #fff;
  border-color: rgba(127, 134, 255, 0.18);
}

.button:hover,
.button:focus-visible,
.button:focus,
.header-cta:hover {
  box-shadow: 0 18px 38px rgba(104, 113, 255, 0.24);
  transform: translateY(-2px);
}

.button:focus-visible,
.button:focus,
.header-cta:focus-visible,
.header-cta:focus,
.menu-button:focus-visible,
.menu-button:focus,
.faq-list summary:focus-visible,
.faq-list summary:focus,
.social-links a:focus-visible,
.social-links a:focus {
  outline: 2px solid rgba(109, 122, 255, 0.55);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transform-origin: center;
  will-change: opacity, transform;
}

.reveal.hero-appear {
  opacity: 0.001;
  transform: translate3d(0, 80px, 0) scale(0.9);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.button.reveal.visible:hover {
  transform: translateY(-2px);
}

.button.reveal.visible:focus-visible {
  transform: translateY(-2px);
}

.button.reveal.visible:focus {
  transform: translateY(-2px);
}

.reveal.hero-appear.visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.button.reveal.hero-appear.visible:hover {
  transform: translateY(-2px) !important;
}

.button.reveal.hero-appear.visible:focus-visible {
  transform: translateY(-2px) !important;
}

.button.reveal.hero-appear.visible:focus {
  transform: translateY(-2px) !important;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 965px;
  display: grid;
  place-items: start center;
  padding: 236px 24px 46px;
}

.hero-inner {
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  text-align: center;
}

.hero h1 {
  max-width: 1000px;
  margin: 32px 0 0;
  color: var(--text);
  font-size: clamp(48px, 5.5vw, 60px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 span,
.plans-section h2 span,
.testimonials-section h2 span {
  color: var(--accent-2);
}

.hero h1 span {
  display: inline;
}

.hero p {
  width: min(800px, 100%);
  margin: 24px 0 48px;
  color: #4d4d4d;
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.client-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  color: #4b4d55;
}

.avatar-stack {
  display: flex;
}

.avatar-stack {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(104, 113, 255, 0.18);
}

.avatar-stack img {
  width: 46px;
  height: 46px;
  margin-left: -12px;
  border: 2px solid #eef0f7;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack:hover img {
  transform: translateY(-3px);
}

.stars {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 1px;
}

@media (min-width: 810px) {
  .stars {
    text-align: left;
  }
}

.client-proof strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.client-proof strong {
  color: #4b4d55;
}

.client-proof strong span {
  color: var(--accent);
}

.logo-reveal {
  width: 100%;
  height: 80px;
  margin-top: 74px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(58px, 7vw, 92px);
  width: max-content;
  min-width: 100%;
  color: #39404a;
  opacity: 0.92;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  animation: logoDrift 48.48s linear infinite;
}

.client-logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  color: #394149;
}

.client-logo-image {
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) saturate(0) contrast(0.9) brightness(0.56);
  opacity: 0.82;
}

.logo-royal-ink {
  width: 78px;
  height: 52px;
}

.logo-p1-media {
  width: 82px;
  height: 56px;
}

.logo-jack-fm {
  width: 116px;
  height: 40px;
}

.logo-resell-calendar {
  width: 96px;
  height: 52px;
}

.logo-epic-gardening {
  width: 140px;
  height: 48px;
}

.logo-reveal:hover .logo-strip,
.logo-strip:hover {
  animation-play-state: paused;
}

.section {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.services-section,
.benefits-section,
.about-section,
.plans-section,
.testimonials-section,
.faq-section {
  width: min(1360px, calc(100% - 80px));
}

section.services-section {
  scroll-margin-top: 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 74px;
  text-align: center;
}

.benefits-section .section-heading {
  margin-bottom: 60px;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border: 1px solid rgba(127, 134, 255, 0.12);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(127, 134, 255, 0.08);
  font-weight: 600;
}

.section-heading h2,
.about-copy h2,
.contact-section h2 {
  margin: 26px 0 14px;
  color: var(--text);
  font-size: clamp(38px, 4.2vw, 45px);
  line-height: 1.4;
  font-weight: 600;
}

.section-heading p,
.about-copy p {
  max-width: 690px;
  margin: 0;
  color: #1c1c1c;
  font-size: 18px;
  line-height: 1.6;
}

.process-list {
  display: grid;
  gap: 90px;
}

.process-section {
  min-height: 1888px;
  padding-top: 6px;
}

.process-step {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  align-items: center;
  gap: 60px;
}

.process-step.reverse {
  grid-template-columns: minmax(0, 1fr) 500px;
}

.process-step.reverse .process-visual {
  order: 2;
}

.process-visual {
  width: 500px;
  min-height: 400px;
  border-radius: var(--radius);
}

.audit-card,
.build-card,
.deploy-card {
  position: relative;
  height: 400px;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgb(236, 237, 241);
  box-shadow: var(--shadow);
  transform: translate3d(0, 0, 0);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
  will-change: transform;
}

.process-step:hover .audit-card,
.process-step:hover .build-card,
.process-step:hover .deploy-card {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 78px rgba(91, 99, 134, 0.18);
  transform: translate3d(0, -8px, 0) scale(1.015);
}

.lottie-target,
.lottie-pin {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 280ms ease;
  will-change: transform;
}

.process-step:hover .lottie-target {
  transform: translate3d(4px, -4px, 0) scale(1.04);
}

.process-step:hover .lottie-pin {
  transform: translate3d(0, -5px, 0) scale(1.08);
}

.lottie-target {
  right: 30px;
  top: 220px;
  width: 150px;
  height: 150px;
}

.lottie-pin {
  width: 75px;
  height: 75px;
}

.pin-primary {
  left: 50px;
  top: 40px;
}

.pin-secondary {
  left: 213px;
  top: 153px;
}

.audit-lines {
  display: grid;
  gap: 19px;
  padding: 34px 24px 0;
}

.audit-row {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 16px;
  align-items: center;
}

.audit-row span {
  height: 15px;
  border-radius: 999px;
  background: #d5d7db;
  transform: translate3d(0, 0, 0);
  transition: background 220ms ease, transform 260ms ease;
}

.process-step:hover .audit-row span {
  background: #c8cbe0;
}

.process-step:hover .audit-row:nth-child(2n) span:last-child {
  transform: translate3d(10px, 0, 0);
}

.process-step:hover .audit-row:nth-child(2n + 1) span:last-child {
  transform: translate3d(-6px, 0, 0);
}

.radar {
  position: absolute;
  left: 58px;
  top: 86px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 7px solid #171a3a;
  border-radius: 50%;
}

.radar::before,
.radar::after {
  position: absolute;
  content: "";
  background: #171a3a;
  transform-origin: center;
}

.radar::before {
  width: 7px;
  height: 132px;
  transform: rotate(16deg);
}

.radar::after {
  width: 132px;
  height: 7px;
  transform: rotate(16deg);
}

.radar span {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.radar span::before,
.radar span::after {
  position: absolute;
  inset: 13px 0 auto;
  height: 5px;
  border-radius: 999px;
  background: #6871ff;
  content: "";
}

.radar span::after {
  transform: rotate(90deg);
}

.pin {
  position: absolute;
  left: 57%;
  bottom: 74px;
  width: 22px;
  height: 30px;
  border-radius: 999px 999px 999px 0;
  background: #6871ff;
  transform: rotate(-45deg);
}

.pin::after {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #eef0f7;
  content: "";
}

.process-copy span {
  display: block;
  color: #6871ff;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
}

.process-copy h3,
.service-card h3,
.benefit-grid h3,
.pricing-card h3 {
  margin: 18px 0 14px;
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.plan-title-featured {
  display: flex;
  align-items: center;
  gap: 11px;
}

.plan-crown {
  width: 25px;
  height: 25px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.process-copy p,
.service-card p,
.benefit-grid p,
.pricing-card p,
.faq-list p,
blockquote {
  margin: 0;
  color: #1c1c1c;
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.process-copy p {
  color: #4d4d4d;
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.window-dots {
  display: flex;
  gap: 10px;
  height: 60px;
  padding: 20px 24px 20px;
}

.window-dots span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b8b8b8;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 12px 32px;
}

.module-grid span {
  min-height: 82px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4f5fa, #dde1ff);
  transform: translate3d(0, 0, 0);
  transition: transform 260ms ease, background 260ms ease;
}

.module-grid span:nth-child(2) {
}

.module-grid span:nth-child(3) {
}

.module-grid span:nth-child(4) {
}

.process-step:hover .module-grid span:nth-child(1) {
  transform: translate3d(-5px, -5px, 0);
}

.process-step:hover .module-grid span:nth-child(2) {
  transform: translate3d(5px, -5px, 0);
}

.process-step:hover .module-grid span:nth-child(3) {
  transform: translate3d(-5px, 5px, 0);
}

.process-step:hover .module-grid span:nth-child(4) {
  transform: translate3d(5px, 5px, 0);
}

.code-lines {
  display: grid;
  gap: 14px;
  padding: 24px 32px;
}

.code-lines span {
  height: 12px;
  border-radius: 999px;
  background: #cfd3dd;
  transform-origin: left center;
  transition: transform 260ms ease, background 260ms ease;
}

.code-lines span:nth-child(2) {
  width: 78%;
}

.code-lines span:nth-child(3) {
  width: 56%;
}

.process-step:hover .code-lines span {
  background: #bcc2d5;
}

.process-step:hover .code-lines span:nth-child(1) {
  transform: scaleX(0.92);
}

.process-step:hover .code-lines span:nth-child(2) {
  transform: scaleX(1.08);
}

.process-step:hover .code-lines span:nth-child(3) {
  transform: scaleX(1.16);
}

.deploy-card {
  display: grid;
  place-items: center;
}

.orbit {
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(104, 113, 255, 0.36);
  border-radius: 50%;
  transition: transform 320ms ease, border-color 260ms ease;
}

.process-step:hover .orbit {
  border-color: rgba(104, 113, 255, 0.58);
  transform: rotate(18deg) scale(1.04);
}

.rocket {
  position: absolute;
  width: 74px;
  height: 120px;
  border-radius: 999px 999px 24px 24px;
  background: linear-gradient(180deg, #fff, #cfd3ff);
  box-shadow: 0 18px 40px rgba(104, 113, 255, 0.22);
  transform: rotate(35deg);
  transition: transform 300ms ease, box-shadow 260ms ease;
}

.rocket::before {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6871ff;
  content: "";
}

.trail {
  position: absolute;
  right: 33%;
  bottom: 23%;
  width: 56px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(127, 134, 255, 0.36), transparent);
  transform: rotate(35deg);
  opacity: 0.78;
  transition: opacity 260ms ease, transform 300ms ease;
}

.process-step:hover .rocket {
  box-shadow: 0 24px 52px rgba(104, 113, 255, 0.28);
  transform: translate3d(13px, -15px, 0) rotate(35deg);
}

.process-step:hover .trail {
  opacity: 1;
  transform: translate3d(-5px, 10px, 0) rotate(35deg) scaleY(1.08);
}

.audit-card {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-step:hover .audit-card,
.process-step:hover .build-card,
.process-step:hover .deploy-card {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  transform: none;
}

.process-step:hover .audit-card {
  background: transparent;
  box-shadow: none;
}

.audit-paper {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  transform: perspective(1200px);
  transform-origin: center;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), border-radius 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .audit-paper {
  border-radius: 25px;
  transform: matrix3d(0.875, -0.216506, -0.433013, 0.000360844, 0.433013, 0.75, 0.5, -0.000416667, 0.216506, -0.625, 0.75, -0.000625, 0, 0, -1200, 2);
}

.discovery-icon {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border-radius: 25%;
  color: #6871ff;
  background: rgb(236, 237, 241);
  box-shadow: 0 18px 42px rgba(91, 99, 134, 0.12);
  opacity: 0;
  transition: opacity 240ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.discovery-icon svg {
  width: 70px;
  height: 70px;
  fill: currentColor;
}

.icon-bar {
  left: 15px;
  top: 16px;
  transform: translate3d(185px, 137px, 0);
}

.icon-note {
  right: 15px;
  top: 16px;
  transform: translate3d(-185px, 137px, 0);
}

.icon-line {
  left: 15px;
  bottom: 14px;
  transform: translate3d(185px, -133px, 0);
}

.icon-pie {
  right: 15px;
  bottom: 14px;
  transform: translate3d(-185px, -133px, 0);
}

.process-step:hover .icon-bar,
.process-step:hover .icon-note,
.process-step:hover .icon-line,
.process-step:hover .icon-pie {
  opacity: 1;
  transform: translate3d(0, 1.87px, 0);
}

.pin-tertiary {
  left: 255px;
  top: 74px;
  opacity: 1;
}

.process-step:hover .lottie-target,
.process-step:hover .lottie-pin {
  transform: none;
}

.process-step:hover .pin-tertiary {
  opacity: 1;
}

.dev-code-block {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  height: 340px;
  overflow: hidden;
  padding: 24px;
}

.line-number-column {
  display: grid;
  gap: 15px;
  align-content: start;
  height: 495px;
  padding-top: 0;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.line-number-column span,
.dev-code-lines span {
  display: block;
  height: 15px;
  border-radius: 999px;
  background: #d1d3d8;
}

.line-number-column span {
  width: 25px;
}

.process-step:hover .line-number-column {
  transform: translateY(-200px);
}

.dev-code-lines {
  display: grid;
  gap: 15px;
  align-content: start;
  padding-top: 0;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .dev-code-lines {
  transform: translateY(-200px);
}

.dev-code-lines span {
  display: flex;
  gap: 5px;
  width: 251px;
  background: transparent;
}

.dev-code-lines span::before,
.dev-code-lines span::after {
  display: block;
  height: 15px;
  border-radius: 999px;
  background: #d1d3d8;
  content: "";
}

.dev-code-lines span::before {
  width: 75px;
  flex: 0 0 75px;
}

.dev-code-lines span::after {
  width: 171px;
  flex: 0 0 171px;
}

.dev-code-lines span:nth-child(n) {
  width: 251px;
}

.dev-code-lines span:nth-child(n)::after {
  width: 171px;
  flex-basis: 171px;
}

.dev-code-lines span:nth-child(3),
.dev-code-lines span:nth-child(8),
.dev-code-lines span:nth-child(13) {
  opacity: 0;
}

.dev-code-lines span:nth-child(5),
.dev-code-lines span:nth-child(7),
.dev-code-lines span:nth-child(10),
.dev-code-lines span:nth-child(12) {
  width: 294px;
}

.dev-code-lines span:nth-child(5)::after,
.dev-code-lines span:nth-child(7)::after,
.dev-code-lines span:nth-child(10)::after,
.dev-code-lines span:nth-child(12)::after {
  width: 214px;
  flex-basis: 214px;
}

.dev-code-lines span:nth-child(6),
.dev-code-lines span:nth-child(11),
.dev-code-lines span:nth-child(15) {
  width: 337px;
}

.dev-code-lines span:nth-child(6)::after,
.dev-code-lines span:nth-child(11)::after,
.dev-code-lines span:nth-child(15)::after {
  width: 257px;
  flex-basis: 257px;
}

.deploy-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 25px;
  background: rgb(236, 237, 241);
  box-shadow: var(--shadow);
}

.process-step:hover .deploy-card {
  background: rgb(236, 237, 241);
  box-shadow: var(--shadow);
}

.build-card,
.process-step:hover .build-card {
  border: 0;
  border-radius: 25px;
  background: rgb(236, 237, 241);
  box-shadow: none;
}

.process-step.is-hovered .audit-card,
.process-step.is-hovered .build-card,
.process-step.is-hovered .deploy-card {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  transform: none;
}

.process-step.is-hovered .audit-card,
.process-step.is-hovered .deploy-card {
  background: rgb(236, 237, 241);
  box-shadow: var(--shadow);
}

.process-step.is-hovered .build-card {
  border: 0;
  border-radius: 25px;
  background: rgb(236, 237, 241);
  box-shadow: none;
}

.process-step.is-hovered .audit-paper {
  border-radius: 25px;
  transform: matrix3d(0.875, -0.216506, -0.433013, 0.000360844, 0.433013, 0.75, 0.5, -0.000416667, 0.216506, -0.625, 0.75, -0.000625, 0, 0, -1200, 2);
}

.process-step.is-hovered .icon-bar,
.process-step.is-hovered .icon-note,
.process-step.is-hovered .icon-line,
.process-step.is-hovered .icon-pie {
  opacity: 1;
  transform: translate3d(0, 1.87px, 0);
}

.process-step.is-hovered .lottie-target,
.process-step.is-hovered .lottie-pin {
  transform: none;
}

.process-step.is-hovered .pin-tertiary {
  opacity: 1;
}

.process-step.is-hovered .line-number-column,
.process-step.is-hovered .dev-code-lines {
  transform: translateY(-200px);
}

.process-step.is-hovered .orbit {
  border-color: rgba(104, 113, 255, 0.58);
  transform: rotate(18deg) scale(1.04);
}

.process-step.is-hovered .rocket {
  box-shadow: 0 24px 52px rgba(104, 113, 255, 0.28);
  transform: translate3d(13px, -15px, 0) rotate(35deg);
}

.process-step.is-hovered .trail {
  opacity: 1;
  transform: translate3d(-5px, 10px, 0) rotate(35deg) scaleY(1.08);
}

.process-step:hover .launch-icon,
.process-step.is-hovered .launch-icon {
  animation-duration: 0.88s;
}

.deploy-rail-system {
  position: absolute;
  inset: 0;
  transform-origin: center;
}

.deploy-rail {
  position: absolute;
  inset: 0;
  animation: deployLineDrift 1.12s linear infinite;
  will-change: transform;
}

.rail-a {
  animation-duration: 1.12s;
}

.rail-b {
  animation-delay: -0.28s;
  animation-duration: 1.12s;
  opacity: 0.42;
}

.rail-c {
  animation-delay: -0.56s;
  animation-duration: 1.12s;
  opacity: 0.64;
}

.rail-d {
  animation-delay: -0.84s;
  animation-duration: 1.12s;
  opacity: 0.28;
}

.deploy-rail span {
  position: absolute;
  width: 140px;
  height: 7px;
  border-radius: 999px;
  background: rgba(104, 113, 255, 0.8);
  box-shadow: 44px 44px 0 rgba(104, 113, 255, 0.12);
  transform: rotate(-45deg);
  transform-origin: center;
}

.rail-a span:nth-child(1) { left: 132px; top: -30px; }
.rail-a span:nth-child(2) { left: 268px; top: -48px; }
.rail-a span:nth-child(3) { left: 470px; top: 68px; }
.rail-a span:nth-child(4) { left: 62px; top: 168px; }
.rail-a span:nth-child(5) { left: 268px; top: 198px; }

.rail-b span:nth-child(1) { left: -44px; top: 212px; }
.rail-b span:nth-child(2) { left: 165px; top: 112px; }
.rail-b span:nth-child(3) { left: 398px; top: 120px; }
.rail-b span:nth-child(4) { left: 94px; top: 388px; }
.rail-b span:nth-child(5) { left: 282px; top: 412px; }

.rail-c span:nth-child(1) { left: -60px; top: 356px; }
.rail-c span:nth-child(2) { left: 166px; top: 308px; }
.rail-c span:nth-child(3) { left: 332px; top: 300px; }
.rail-c span:nth-child(4) { left: 458px; top: 238px; }
.rail-c span:nth-child(5) { left: 322px; top: 516px; }

.rail-d span:nth-child(1) { left: 40px; top: -68px; }
.rail-d span:nth-child(2) { left: 216px; top: 42px; }
.rail-d span:nth-child(3) { left: 408px; top: -32px; }
.rail-d span:nth-child(4) { left: 455px; top: 365px; }
.rail-d span:nth-child(5) { left: 170px; top: 500px; }

.launch-icon {
  position: absolute;
  left: 172px;
  top: 132px;
  z-index: 2;
  width: 141.4px;
  height: 141.4px;
  color: #6871ff;
  transform: translate3d(0, 1.27px, 0);
  animation: launchRocketShootUp 1.12s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  will-change: transform;
}

.launch-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

.service-card,
.benefit-grid article,
.pricing-card,
.testimonial-grid figure,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 55px rgba(91, 99, 134, 0.1);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: 36px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover,
.service-card.is-hovered,
.benefit-grid article:hover,
.benefit-grid article.is-hovered,
.pricing-card:hover,
.pricing-card.is-hovered,
.testimonial-grid figure:hover,
.testimonial-grid figure.is-hovered {
  box-shadow: 0 24px 70px rgba(91, 99, 134, 0.16);
  transform: translateY(-4px);
}

.service-large {
  grid-column: auto;
  min-height: 560px;
}

.chat-demo {
  position: relative;
  min-height: 330px;
}

.automation-visual {
  position: relative;
  min-height: 360px;
}

.app-node,
.openai-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 34px rgba(91, 99, 134, 0.15);
}

.openai-node {
  left: 50%;
  top: 48%;
  z-index: 2;
  width: 84px;
  height: 84px;
  color: #111;
  font-size: 42px;
  transform: translate(-50%, -50%);
}

.automation-visual::before,
.automation-visual::after {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 320px;
  height: 8px;
  background: linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(176, 181, 198, 0.26) 2px 3.5px,
    transparent 3.5px 5px,
    rgba(176, 181, 198, 0.26) 5px 6.5px,
    transparent 6.5px 100%
  );
  content: "";
  transform-origin: center;
}

.automation-visual::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.automation-visual::after {
  transform: translate(-50%, -50%) rotate(60deg);
}

.workflow-pulse {
  --anchor-x: 0px;
  --anchor-y: 0px;
  --line-start: 64px;
  --pulse-rotate: 0deg;
  position: absolute;
  left: calc(50% + var(--anchor-x));
  top: calc(50% + var(--anchor-y));
  z-index: 1;
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: rgba(109, 122, 255, 0.74);
  pointer-events: none;
  transform-origin: center;
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(var(--pulse-rotate));
  transition:
    opacity 260ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  animation: none;
}

.services-section .service-card.is-hovered .workflow-pulse,
.services-section .service-card.is-hovered .workflow-pulse {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(var(--pulse-rotate));
}

.workflow-pulse.particle-1 {
  --anchor-x: -22px;
  --anchor-y: 6px;
  --pulse-rotate: -55deg;
}

.workflow-pulse.particle-2 {
  --anchor-x: -3px;
  --anchor-y: -13px;
  --pulse-rotate: -55deg;
}

.workflow-pulse.particle-3 {
  --anchor-x: -16px;
  --anchor-y: 10px;
  --pulse-rotate: -55deg;
}

.workflow-pulse.particle-4 {
  --anchor-x: -8px;
  --anchor-y: -9px;
  --pulse-rotate: -55deg;
}

.workflow-pulse.particle-5 {
  --anchor-x: -8px;
  --anchor-y: -13px;
  --pulse-rotate: 55deg;
}

.workflow-pulse.particle-6 {
  --anchor-x: -3px;
  --anchor-y: 6px;
  --pulse-rotate: 55deg;
}

.workflow-pulse.particle-7 {
  --anchor-x: -14px;
  --anchor-y: -9px;
  --pulse-rotate: 55deg;
}

.workflow-pulse.particle-8 {
  --anchor-x: -16px;
  --anchor-y: 10px;
  --pulse-rotate: 55deg;
}

.workflow-pulse.workflow-bar {
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: rgba(109, 122, 255, 0.74);
}

.workflow-pulse.bar-1 {
  --anchor-x: 2px;
  --anchor-y: -4px;
}

.workflow-pulse.bar-2 {
  --anchor-x: -27px;
  --anchor-y: -4px;
}

.workflow-pulse.bar-3 {
  --anchor-x: 2px;
  --anchor-y: 3px;
}

.workflow-pulse.bar-4 {
  --anchor-x: -27px;
  --anchor-y: 3px;
}

@keyframes workflowPulse {
  0% {
    opacity: 1;
    transform: translate3d(var(--line-start), 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes workflowPulseMobileDrift {
  0%,
  100% {
    transform: translate3d(calc(var(--line-start) * 0.3), 0, 0);
  }

  44% {
    transform: translate3d(calc(var(--line-start) * 1.65), 0, 0);
  }

  70% {
    transform: translate3d(calc(var(--line-start) * 1.42), 0, 0);
  }
}

@keyframes workflowPulseDesktopDrift {
  0%,
  100% {
    transform: translate3d(calc(var(--line-start) * 1.08), 0, 0);
  }

  44% {
    transform: translate3d(calc(var(--line-start) * 1.5), 0, 0);
  }

  70% {
    transform: translate3d(calc(var(--line-start) * 1.1), 0, 0);
  }
}

.node-zap {
  left: 32%;
  top: 14%;
  color: #fff;
  background: #ff5b16;
  border-radius: 15px;
  font-size: 34px;
}

.node-slack {
  right: 30%;
  top: 14%;
}

.node-slack::before {
  color: #22b8cf;
  font-size: 38px;
  content: "✣";
}

.node-ms {
  left: 18%;
  top: 43%;
}

.node-ms::before {
  color: #f25022;
  font-size: 34px;
  content: "▦";
}

.node-gmail {
  right: 17%;
  top: 43%;
}

.node-gmail::before {
  color: #ea4335;
  font-size: 34px;
  content: "M";
}

.node-air {
  left: 32%;
  bottom: 10%;
}

.node-air::before {
  color: #ffbf00;
  font-size: 34px;
  content: "▱";
}

.node-notion {
  right: 30%;
  bottom: 10%;
  color: #111;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
}

.app-node .logo-svg,
.openai-node .logo-svg {
  display: block;
  width: 45px;
  height: 45px;
}

.node-zap,
.node-slack,
.node-ms,
.node-gmail,
.node-air,
.node-notion {
  color: #111;
  background: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.node-slack::before,
.node-ms::before,
.node-gmail::before,
.node-air::before {
  content: none;
}

.zapier-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ff4f00;
  transform: translateZ(0);
}

.zapier-mark svg {
  display: block;
  width: 28px;
  height: 28px;
  overflow: visible;
}

.zapier-mark path {
  fill: none;
  stroke: #fff;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.openai-node {
  font-size: inherit;
}

.service-copy {
  margin-top: auto;
}

.bubble {
  position: absolute;
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 14px 18px;
  border-radius: 20px;
  color: #555c68;
  background: #fff;
}

.bubble.user {
  right: 4px;
  top: 142px;
  color: #1c1c1c;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(91, 99, 134, 0.12);
}

.bubble.bot {
  left: 2px;
  top: 64px;
  color: #fff;
  background: #6871ff;
}

.bubble.reply {
  display: none;
}

.chat-input {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 2px 9px rgba(91, 99, 134, 0.08), 0 14px 34px rgba(91, 99, 134, 0.08);
}

.chat-input span {
  width: 74%;
  height: 12px;
  border-radius: 999px;
  background: rgba(205, 208, 216, 0.5);
}

.chat-input strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: #6871ff;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.chat-input strong svg,
.chat-input strong svg path {
  fill: currentColor;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  color: #6871ff;
  background: linear-gradient(135deg, #fff, #dfe2ff);
  font-size: 24px;
  font-weight: 800;
}

.email-visual {
  width: min(452px, 100%);
  min-height: 360px;
  margin: 34px auto 0;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 34px rgba(91, 99, 134, 0.08);
}

.mini-avatar-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.mini-avatar-row img {
  width: 50px;
  height: 50px;
  margin-left: -13px;
  border: 2px solid #eef0f7;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.email-visual:hover .mini-avatar-row img {
  transform: translateY(-4px);
}

.mini-avatar-row img:first-child {
  margin-left: 0;
}

.mini-avatar-row strong {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-left: -13px;
  border-radius: 50%;
  color: #fff;
  background: #6871ff;
  font-size: 18px;
  transition: transform 220ms ease;
}

.form-label {
  display: block;
  margin: 16px 0 10px;
  color: #1c1c1c;
  font-size: 14px;
}

.form-line,
.form-text-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #d4d6dc;
}

.form-line.medium {
  width: 78%;
}

.form-text-lines {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px 8px;
}

.form-text-lines span:nth-child(1),
.form-text-lines span:nth-child(6) {
  grid-column: span 2;
}

.form-text-lines span:nth-child(3),
.form-text-lines span:nth-child(9) {
  grid-column: span 2;
}

.content-visual {
  width: min(430px, 100%);
  min-height: 352px;
  margin: 48px auto 0;
  padding: 24px;
  border: 2px solid rgba(85, 88, 96, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.36);
}

.content-hover-icons,
.content-hover-sheet {
  display: none;
}

.browser-frame {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.browser-frame span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cfd2dc;
}

.content-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
}

.content-layout > div:first-child {
  height: 118px;
  border-radius: 12px;
  background: linear-gradient(180deg, #d7d8dc, #ededf0);
}

.content-layout > div:last-child,
.content-lines {
  display: grid;
  gap: 14px;
}

.content-layout span,
.content-lines span {
  height: 12px;
  border-radius: 999px;
  background: #d2d5dc;
}

.content-layout span:nth-child(1) {
  width: 85%;
}

.content-layout span:nth-child(2) {
  width: 100%;
}

.content-layout span:nth-child(3) {
  width: 62%;
}

.content-layout span:nth-child(4) {
  width: 78%;
}

.content-lines {
  grid-template-columns: 2fr 0.5fr 0.7fr;
  margin-top: 32px;
}

.content-lines span:first-child {
  grid-column: span 2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 24px;
}

.benefit-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 275px;
  padding: 44px 34px 36px;
  gap: 18px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #ecedf1;
  box-shadow:
    -10px -10px 20px #fafbff,
    10px 10px 20px rgba(166, 171, 189, 0.22);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.benefit-icon {
  display: grid;
  flex: 0 0 100px;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 0;
  color: #6871ff;
  border-radius: 50%;
  background: #ecedf1;
  box-shadow:
    -8px -8px 18px #fafbff,
    8px 8px 18px rgba(166, 171, 189, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.benefit-icon svg {
  display: block;
  width: 60px;
  height: 60px;
  fill: currentColor;
}

.benefit-grid h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.benefit-grid p {
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.5;
}

.benefit-grid article:hover .benefit-icon,
.benefit-grid article.is-hovered .benefit-icon {
  transform: translateY(-4px);
}

.benefit-grid article:hover,
.benefit-grid article.is-hovered {
  box-shadow:
    -12px -12px 24px #fafbff,
    12px 12px 24px rgba(166, 171, 189, 0.28);
  transform: translateY(-3px);
}

.about-section {
  display: grid;
  min-height: 579px;
  align-items: start;
  justify-items: center;
  padding: 100px 40px;
  text-align: center;
}

.about-copy {
  display: grid;
  justify-items: center;
  width: 100%;
}

.about-copy h2 {
  width: 100%;
}

.about-copy p {
  max-width: 1200px;
  color: #5f6066;
  font-size: 30px;
  line-height: 45px;
  font-weight: 500;
}

.about-copy .button {
  margin-top: 40px;
}

.about-copy .button.secondary {
  color: #fff;
  background: linear-gradient(135deg, #aeb4ff, #818aff);
  border-color: transparent;
  box-shadow: 0 14px 35px rgba(127, 134, 255, 0.24);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1000px, 100%);
  margin: -112px auto 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 672px;
  padding: 28px 32px 32px;
  font-family: Satoshi, Poppins, ui-sans-serif, system-ui, sans-serif;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.pricing-card.featured {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  font-family: Satoshi, Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.price {
  margin: 15px 0 16px;
  color: #6871ff;
  font-family: Satoshi, Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.price span {
  color: #6871ff;
  font-size: 20px;
  font-weight: 700;
}

.pricing-card p {
  color: #666;
  font-family: Satoshi, Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.pricing-card ul {
  display: grid;
  gap: 16px;
  margin: 32px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  min-height: 26px;
  padding-left: 39px;
  color: #000;
  font-family: Satoshi, Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #6871ff;
  background: transparent;
  color: #6871ff;
  content: "✓";
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.pricing-card li.not-included {
  color: #000;
}

.pricing-card li.not-included::before {
  border-color: #777;
  background: transparent;
  color: #777;
  content: "×";
}

.pricing-card .button {
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  border: 0;
  border-radius: 50px;
  color: #1c1c1c;
  background: #ededf1;
  box-shadow: 0 10px 25px rgba(91, 99, 134, 0.12);
  font-family: Satoshi, Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.testimonials-section {
  padding-top: 140px;
}

.testimonials-section .section-heading {
  margin-bottom: 38px;
}

.testimonials-section .section-heading.reveal:not(.visible) {
  transform: translate3d(0, 37px, 0);
}

.testimonials-section h2 span {
  color: inherit;
}

.testimonial-grid figure {
  display: grid;
  justify-items: center;
  align-content: start;
  margin: 0;
  height: 309.8px;
  min-height: 309.8px;
  padding: 30px;
  text-align: center;
  background: #ecedf1;
  box-shadow:
    -10px -10px 20px #fafbff,
    10px 10px 20px rgba(166, 171, 189, 0.25);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.portrait {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

figcaption {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.testimonial-stars {
  margin-bottom: 28px;
  color: #6871ff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

blockquote {
  quotes: none;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.faq-section {
  padding-top: 91px;
  padding-bottom: 0;
}

.faq-section .section-heading {
  margin-bottom: 2px;
}

.faq-list details {
  padding: 0 24px;
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.faq-list details:hover {
  box-shadow: 0 20px 60px rgba(91, 99, 134, 0.14);
  transform: translateY(-2px);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 24px 0;
  color: #272b35;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: #5f6066;
  content: "+";
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  padding: 0 0 24px;
}

.contact-section {
  display: grid;
  justify-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 24px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at 50% 0%, rgba(127, 134, 255, 0.24), transparent 36%);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-section.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body:has(#faq:target) .contact-section {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.contact-section h2 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.15;
}

.contact-section h2 span {
  color: var(--accent-2);
}

.contact-section p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 20px;
}

.contact-section > span {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: 80px auto 0;
  padding: 44px 0 56px;
  color: #1c1c1c;
}

.footer-brand {
  font-size: 21px;
}

.footer-word {
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 34px;
}

.site-footer p {
  margin: 0;
  color: #1c1c1c;
}

.footer-credit {
  color: #1c1c1c;
  font-size: 17px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #1c1c1c;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 38px rgba(91, 99, 134, 0.12);
  font-size: 16px;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.social-links svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:hover {
  color: var(--accent);
  box-shadow: 0 20px 44px rgba(91, 99, 134, 0.16);
  transform: translateY(-3px);
}

.social-links a:focus-visible {
  color: var(--accent);
  box-shadow: 0 20px 44px rgba(91, 99, 134, 0.16);
  transform: translateY(-3px);
}

@media (min-width: 1440px) {
  .process-list .process-step:nth-child(3) .process-visual {
    position: relative;
    left: 9px;
    top: -2px;
  }

  .process-list .process-step:nth-child(3) .process-copy {
    position: relative;
    left: 8px;
  }

  .process-list .process-step:nth-child(3) .process-copy h3 {
    margin-top: 10px;
  }

  .process-list .process-step:nth-child(3) .process-copy p {
    color: #4d4d4d;
    line-height: 1.5;
  }

  .services-section {
    width: calc(100% + 15px);
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .services-section .section-heading {
    width: 1360px;
    max-width: calc(100vw - 80px);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 74px;
    transform: none;
  }

  .services-section .section-chip {
    min-height: 39px;
    padding: 0 19px;
    font-weight: 400;
  }

  .services-section .section-heading h2 {
    width: 1360px;
    max-width: 100%;
    margin: 10px 0;
    font-size: 45px;
    line-height: 1.4;
  }

  .services-section .section-heading p {
    width: 1360px;
    max-width: 100%;
    line-height: 1.2;
  }

  .services-grid {
    width: 100%;
    max-width: none;
    gap: 25px;
    margin-top: -34px;
  }

  .services-section .service-card,
  .services-section .service-large {
    height: 600px;
    min-height: 600px;
    padding: 0;
    border: 0;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow:
      -10px -10px 20px #fafbff,
      10px 10px 20px rgba(166, 171, 189, 0.25);
    overflow: hidden;
    transition: none;
  }

  .services-section .service-card:hover,
  .services-section .service-card.is-hovered,
  .services-section .service-large:hover {
    box-shadow:
      -10px -10px 20px #fafbff,
      10px 10px 20px rgba(166, 171, 189, 0.25);
    transform: none;
  }

  .services-section .service-card h3 {
    margin: 0 0 10px;
    font-family: Poppins, "Poppins Placeholder", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
  }

  .services-section .service-card p {
    color: #4d4d4d;
    font-family: Poppins, "Poppins Placeholder", sans-serif;
    line-height: 1.5;
  }

  .services-section .service-copy {
    position: relative;
    z-index: 6;
    padding: 0 36px 36px;
    background: #ecedf1;
  }

  .services-section .automation-visual,
  .services-section .email-visual,
  .services-section .content-visual {
    width: 500px;
    min-height: 400px;
    margin: 35px auto 0;
  }

  .services-section .chat-demo {
    width: 619.5px;
    min-height: 400px;
    margin: 35.6px auto 0;
    overflow: hidden;
  }

  .services-section .automation-visual {
    overflow: hidden;
  }

  .services-section .automation-visual::before,
  .services-section .automation-visual::after {
    width: 300px;
    animation: none;
  }

  .services-section .app-node,
  .services-section .openai-node {
    width: 75px;
    height: 75px;
    z-index: 2;
    border: 0;
    border-radius: 12px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

.services-section .openai-node {
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.services-section .workflow-pulse {
  top: calc(50% + var(--anchor-y));
}

.services-section .app-node {
  z-index: 2;
}

.services-section .openai-node::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 300px;
  height: 8px;
  background: linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(176, 181, 198, 0.26) 2px 3.5px,
    transparent 3.5px 5px,
    rgba(176, 181, 198, 0.26) 5px 6.5px,
    transparent 6.5px 100%
  );
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-60deg);
  transform-origin: center;
  animation: none;
}

  .services-section .node-zap {
    left: 125px;
    top: 50px;
  }

  .services-section .node-slack {
    left: 300px;
    right: auto;
    top: 50px;
  }

  .services-section .node-ms {
    left: 50px;
    top: 163px;
  }

  .services-section .node-gmail {
    left: 375px;
    right: auto;
    top: 163px;
  }

  .services-section .node-air {
    left: 125px;
    bottom: auto;
    top: 275px;
  }

  .services-section .node-notion {
    left: 300px;
    right: auto;
    bottom: auto;
    top: 275px;
  }

  .services-section .service-card.is-hovered .app-node,
  .services-section .service-card.is-hovered .app-node {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-zap,
  .services-section .service-card.is-hovered .node-zap {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-slack,
  .services-section .service-card.is-hovered .node-slack {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-ms,
  .services-section .service-card.is-hovered .node-ms {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-gmail,
  .services-section .service-card.is-hovered .node-gmail {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-air,
  .services-section .service-card.is-hovered .node-air {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-notion,
  .services-section .service-card.is-hovered .node-notion {
    transform: none;
  }

.services-section .service-card.is-hovered .openai-node,
.services-section .service-card.is-hovered .openai-node {
  transform: translate(-50%, -50%);
}

.services-section .service-card.is-hovered .openai-node::before,
.services-section .service-card.is-hovered .openai-node::before {
  background: linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(176, 181, 198, 0.26) 2px 3.5px,
    transparent 3.5px 5px,
    rgba(176, 181, 198, 0.26) 5px 6.5px,
    transparent 6.5px 100%
  );
}

  .services-section .service-card.is-hovered .automation-visual::before,
  .services-section .service-card.is-hovered .automation-visual::after,
  .services-section .service-card.is-hovered .automation-visual::before,
  .services-section .service-card.is-hovered .automation-visual::after {
    background: linear-gradient(
      to bottom,
      transparent 0 2px,
      rgba(176, 181, 198, 0.26) 2px 3.5px,
      transparent 3.5px 5px,
      rgba(176, 181, 198, 0.26) 5px 6.5px,
      transparent 6.5px 100%
    );
  }

  .services-section .bubble {
    padding: 15px;
    border-radius: 24px;
    font-family: Satoshi, "Satoshi Placeholder", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    z-index: 2;
  }

  .services-section .bubble.bot {
    left: 15px;
    top: 156px;
    width: 213px;
    height: 54px;
    min-height: 54px;
    border-radius: 24px 24px 24px 8px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    overflow: hidden;
    white-space: nowrap;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card .bubble.bot,
  .services-section .service-card .bubble.reply {
    color: #fff;
  }

  .services-section .bubble.user {
    right: 15px;
    top: 232px;
    width: 350px;
    min-height: 78px;
    border-radius: 24px 24px 8px 24px;
    background: #ecedf1;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .bubble.reply {
    display: block;
    left: 15px;
    top: 544px;
    width: 350px;
    min-height: 150px;
    color: #fff;
    border-radius: 24px 24px 24px 8px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    opacity: 1;
    transform: translate3d(0, -75px, 0);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
  }

  .services-section .service-card.is-hovered .bubble.reply,
  .services-section .service-card.is-hovered .bubble.reply {
    animation: none;
    opacity: 1;
    transform: translate3d(0, -384px, 0);
  }

  .services-section .service-card.is-hovered .bubble.bot,
  .services-section .service-card.is-hovered .bubble.bot {
    transform: translate3d(0, -215px, 0);
  }

  .services-section .service-card.is-hovered .bubble.user,
  .services-section .service-card.is-hovered .bubble.user {
    transform: translate3d(0, -175px, 0);
  }

  .services-section .chat-input {
    left: 5px;
    right: 5px;
    top: 330px;
    bottom: auto;
    height: 65px;
    padding: 0 10px;
    border-radius: 50px;
    background: #ecedf1;
    box-shadow:
      inset -3px -3px 6px #fafbff,
      inset 3px 3px 6px rgba(166, 171, 189, 0.5);
    transition: opacity 360ms ease, transform 360ms ease;
    z-index: 1;
  }

  .services-section .service-card.is-hovered .chat-input,
  .services-section .service-card.is-hovered .chat-input {
    opacity: 1;
    transform: none;
  }

.services-section .chat-input strong {
  width: 45px;
  height: 45px;
  color: #6d7aff;
  background: transparent;
    box-shadow:
      -2px -2px 5px #fafbff,
      2px 2px 5px rgba(166, 171, 189, 0.25);
}

.services-section .chat-input strong svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.services-section .chat-input strong svg path {
  fill: currentColor;
}

  .services-section .chat-input span {
    opacity: 0;
  }

  .services-section .email-visual {
    width: 450px;
    min-height: 329px;
    margin-top: 71px;
    position: relative;
    padding: 0;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card.is-hovered .email-visual,
  .services-section .service-card.is-hovered .email-visual {
    transform: none;
  }

  .services-section .service-card.is-hovered .mini-avatar-row img,
  .services-section .service-card.is-hovered .mini-avatar-row img,
  .services-section .service-card.is-hovered .mini-avatar-row strong,
  .services-section .service-card.is-hovered .mini-avatar-row strong {
    transform: none;
  }

  .services-section .email-visual .mini-avatar-row {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 208px;
    height: 50px;
    margin: 0;
  }

  .services-section .email-visual .mini-avatar-row img,
  .services-section .email-visual .mini-avatar-row strong {
    width: 50px;
    height: 50px;
    margin-left: -20px;
  }

  .services-section .email-visual .mini-avatar-row img:first-child {
    margin-left: 0;
  }

  .services-section .email-visual .mini-avatar-row strong {
    margin-left: -14px;
    background: #6d7aff;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
  }

  .services-section .email-visual > .form-label {
    position: absolute;
    left: 25px;
    margin: 0;
    font-size: 12px;
    line-height: 14.4px;
  }

  .services-section .email-visual > .form-label:nth-of-type(1) {
    top: 90px;
  }

  .services-section .email-visual > .form-label:nth-of-type(2) {
    top: 144px;
  }

  .services-section .email-visual .form-line.medium {
    position: absolute;
    left: 25px;
    top: 119px;
    width: 400px;
    height: 10px;
    margin: 0;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 77px,
        transparent 77px 82px,
        #d4d4d4 82px 159px,
        transparent 159px 164px,
        #d4d4d4 164px 318px,
        transparent 318px 100%);
    background-color: transparent;
  }

  .services-section .email-visual .form-text-lines {
    position: absolute;
    left: 25px;
    top: 174px;
    display: block;
    width: 400px;
    height: 65px;
    margin: 0;
  }

  .services-section .email-visual .form-text-lines span {
    position: absolute;
    left: 0;
    display: block;
    width: 400px;
    height: 10px;
    border-radius: 25px;
    background-color: transparent;
  }

  .services-section .email-visual .form-text-lines span:nth-child(1) {
    top: 0;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 76px,
        transparent 76px 81px,
        #d4d4d4 81px 157px,
        transparent 157px 162px,
        #d4d4d4 162px 238px,
        transparent 238px 243px,
        #d4d4d4 243px 319px,
        transparent 319px 324px,
        #d4d4d4 324px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(2) {
    top: 20px;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 69px,
        transparent 69px 74px,
        #d4d4d4 74px 143px,
        transparent 143px 148px,
        #d4d4d4 148px 217px,
        transparent 217px 222px,
        #d4d4d4 222px 326px,
        transparent 326px 331px,
        #d4d4d4 331px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(3) {
    top: 40px;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 54px,
        transparent 54px 59px,
        #d4d4d4 59px 139px,
        transparent 139px 144px,
        #d4d4d4 144px 198px,
        transparent 198px 203px,
        #d4d4d4 203px 283px,
        transparent 283px 288px,
        #d4d4d4 288px 342px,
        transparent 342px 347px,
        #d4d4d4 347px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(4) {
    top: 60px;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 69px,
        transparent 69px 74px,
        #d4d4d4 74px 178px,
        transparent 178px 183px,
        #d4d4d4 183px 252px,
        transparent 252px 257px,
        #d4d4d4 257px 326px,
        transparent 326px 331px,
        #d4d4d4 331px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(n + 5) {
    display: none;
  }

  .services-section .email-send {
    position: absolute;
    left: 360px;
    top: 259px;
    display: grid;
    place-items: center;
    width: 65px;
    height: 45px;
    border-radius: 15px;
    color: #fff;
    background: #6d7aff;
  }

  .services-section .email-send svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: currentColor;
  }

  .services-section .form-line,
  .services-section .form-text-lines span,
  .services-section .content-layout span,
  .services-section .content-lines span {
    transform-origin: left center;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card.is-hovered .form-line,
  .services-section .service-card.is-hovered .form-line {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n),
  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n) {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n + 1),
  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n + 1) {
    transform: none;
  }

  .services-section .content-visual {
    width: 425px;
    min-height: 350px;
    margin-top: 85px;
    position: relative;
    isolation: isolate;
    border: 0;
    border-radius: 25px 25px 0 0;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    overflow: visible;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-hover-icons {
    position: absolute;
    left: calc(50% + 5px);
    top: -6px;
    z-index: 5;
    display: block;
    width: 425px;
    height: 90px;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .services-section .content-icon {
    position: absolute;
    top: 0;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: #222;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    opacity: 0;
    transform: translate3d(0, 44px, 0) scale(0.98);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-icon svg {
    display: block;
    width: 40px;
    height: 40px;
    fill: currentColor;
    stroke: none;
  }

  .services-section .content-icon-page svg {
    width: 50px;
    height: 50px;
    fill: currentColor;
    stroke: none;
  }

  .services-section .content-icon-linkedin {
    left: -25px;
    transform: translate3d(102px, 44px, 0) scale(0.98) rotate(-10deg);
  }

  .services-section .content-icon-video {
    left: 95px;
    transform: translate3d(0, 44px, 0) scale(0.98) rotate(-7deg);
  }

.services-section .content-icon-page {
    left: 236px;
    transform: translate3d(0, 44px, 0) scale(0.98) rotate(8deg);
  }

  .services-section .content-icon-twitter {
    left: 353px;
    transform: translate3d(-102px, 44px, 0) scale(0.98) rotate(11deg);
  }

  .services-section .content-hover-sheet {
    position: absolute;
    left: 0;
    z-index: 0;
    display: block;
    width: 425px;
    height: 350px;
    border-radius: 25px 25px 0 0;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-hover-sheet.sheet-back {
    top: 0;
    left: 30.3px;
    width: 364.3px;
    height: 300px;
    box-shadow:
      -5px -5px 10px rgba(250, 251, 255, 0.74),
      5px 5px 10px rgba(166, 171, 189, 0.14);
  }

  .services-section .content-hover-sheet.sheet-mid {
    top: 0;
    left: 16.3px;
    width: 392.3px;
    height: 323.1px;
    box-shadow:
      -5px -5px 10px rgba(250, 251, 255, 0.82),
      5px 5px 10px rgba(166, 171, 189, 0.16);
  }

  .services-section .content-visual::after {
    position: absolute;
    left: 289px;
    top: 171px;
    z-index: 1;
    width: 111px;
    height: 103px;
    border-radius: 12px;
    background: #d4d4d4;
    content: "";
  }

  .services-section .content-visual > * {
    position: relative;
    z-index: 2;
  }

  .services-section .content-visual > .content-hover-icons,
  .services-section .content-visual > .content-hover-sheet {
    position: absolute;
  }

  .services-section .content-visual > .content-hover-icons {
    z-index: 5;
  }

  .services-section .service-card.is-hovered .content-hover-icons,
  .services-section .service-card.is-hovered .content-hover-icons {
    transform: translate(-50%, -27px);
  }

  .services-section .content-visual > .content-hover-sheet {
    z-index: -1;
  }

  .services-section .service-card.is-hovered .content-icon,
  .services-section .service-card.is-hovered .content-icon {
    opacity: 1;
    transform: translate3d(0, -178px, 0) scale(1);
  }

  .services-section .service-card.is-hovered .content-icon-linkedin,
  .services-section .service-card.is-hovered .content-icon-linkedin {
    transform: translate3d(2px, -152px, 0) scale(1) rotate(-15deg);
  }

  .services-section .service-card.is-hovered .content-icon-video,
  .services-section .service-card.is-hovered .content-icon-video {
    transform: translate3d(0, -178px, 0) scale(1) rotate(-10deg);
  }

  .services-section .service-card.is-hovered .content-icon-page,
  .services-section .service-card.is-hovered .content-icon-page {
    transform: translate3d(0, -178px, 0) scale(1) rotate(10deg);
  }

  .services-section .service-card.is-hovered .content-icon-twitter,
  .services-section .service-card.is-hovered .content-icon-twitter {
    transform: translate3d(4px, -152px, 0) scale(1) rotate(15deg);
  }

  .services-section .service-card.is-hovered .content-hover-sheet,
  .services-section .service-card.is-hovered .content-hover-sheet {
    opacity: 0.72;
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid {
    opacity: 0.84;
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back {
    transform: translate3d(0, -55px, 0);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid {
    transform: translate3d(0, -27px, 0);
  }

  .services-section .content-visual .browser-frame {
    position: absolute;
    left: 24.5px;
    top: 25px;
    width: 375px;
    height: 11px;
    margin: 0;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-visual .browser-frame span {
    display: none;
  }

  .services-section .content-visual .content-layout {
    position: absolute;
    left: 25px;
    top: 50px;
    display: block;
    width: 375px;
    height: 112px;
  }

  .services-section .content-layout > div:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 111px;
    height: 103px;
    border-radius: 12px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child {
    position: absolute;
    left: 126.5px;
    top: 7px;
    display: block;
    width: 250px;
    height: 105px;
  }

  .services-section .content-layout > div:last-child span {
    position: absolute;
    height: 11px;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child span:nth-child(1) {
    left: 0;
    top: 0;
    width: 171px;
  }

  .services-section .content-layout > div:last-child span:nth-child(2) {
    left: 0.5px;
    top: 26px;
    width: 200px;
  }

  .services-section .content-layout > div:last-child span:nth-child(3) {
    left: 0.5px;
    top: 52px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 102px,
      transparent 102px 109px,
      #d4d4d4 109px 215px,
      transparent 215px 223px,
      #d4d4d4 223px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-layout > div:last-child span:nth-child(4) {
    left: 0.5px;
    top: 78px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 54px,
      transparent 54px 61px,
      #d4d4d4 61px 100px,
      transparent 100px 109px,
      #d4d4d4 109px 204px,
      transparent 204px 209px,
      #d4d4d4 209px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines {
    position: absolute;
    left: 25px;
    top: 178px;
    display: block;
    width: 375px;
    height: 115px;
    margin: 0;
  }

  .services-section .content-lines span {
    position: absolute;
    height: 11px;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-lines::before {
    position: absolute;
    left: 0;
    top: 78px;
    width: 250px;
    height: 11px;
    border-radius: 25px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 54px,
      transparent 54px 61px,
      #d4d4d4 61px 100px,
      transparent 100px 109px,
      #d4d4d4 109px 204px,
      transparent 204px 209px,
      #d4d4d4 209px 248px,
      transparent 248px 100%
    );
    content: "";
  }

  .services-section .content-lines span:nth-child(1) {
    left: 0;
    top: 0;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 171px,
      transparent 171px 180px,
      #d4d4d4 180px 205px,
      transparent 205px 214px,
      #d4d4d4 214px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines span:nth-child(2) {
    left: 0;
    top: 26px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 200px,
      transparent 200px 209px,
      #d4d4d4 209px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines span:nth-child(3) {
    left: 0;
    top: 52px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 102px,
      transparent 102px 109px,
      #d4d4d4 109px 215px,
      transparent 215px 223px,
      #d4d4d4 223px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines span:nth-child(4) {
    left: 0;
    top: 111px;
    width: 375px;
  }

  .services-section .service-card.is-hovered .content-visual,
  .services-section .service-card.is-hovered .content-visual {
    transform: translate3d(0, 181px, 0);
  }

  .services-section .service-card.is-hovered .content-layout > div:first-child,
  .services-section .service-card.is-hovered .content-layout > div:first-child {
    transform: none;
  }

  .services-section .content-layout > div:first-child {
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card.is-hovered .content-layout span:nth-child(1),
  .services-section .service-card.is-hovered .content-layout span:nth-child(1),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n) {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-layout span:nth-child(2),
  .services-section .service-card.is-hovered .content-layout span:nth-child(2),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n + 1),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n + 1) {
    transform: none;
  }

  .plans-section {
    padding-top: 100px;
  }

  .plans-section .section-heading {
    width: 1360px;
    max-width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 39px;
  }

  .plans-section .section-chip {
    min-height: 39px;
    padding: 0 20px;
  }

  .plans-section .section-heading h2 {
    width: 1360px;
    max-width: 100%;
    margin: 10px 0;
    font-size: 45px;
    line-height: 1.4;
  }

  .plans-section .section-heading p {
    width: 1360px;
    max-width: 100%;
    line-height: 1.2;
  }

  .pricing-grid {
    width: 1000px;
    gap: 24px;
    margin-top: 0;
  }

  .pricing-card,
  .pricing-card.featured {
    height: 672px;
    min-height: 672px;
    padding: 32px 32px 32px;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow: var(--shadow);
  }

  .pricing-card h3 {
    margin: 0 0 8px;
  }

  .price {
    margin: 4px 0 16px;
  }

  .pricing-card ul {
    margin: 32px 0 24px;
  }

  .pricing-card .button {
    margin-top: auto;
  }

  .faq-section {
    width: 1440px;
    max-width: calc(100vw - 80px);
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .faq-section .section-heading {
    width: 1360px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .faq-section .section-chip {
    min-height: 39px;
    padding: 0 20px;
  }

  .faq-section .section-heading h2 {
    width: 1360px;
    max-width: 100%;
    margin: 10px 0;
    font-size: 45px;
    line-height: 1.4;
  }

  .faq-section .section-heading p {
    width: 1360px;
    max-width: 100%;
    line-height: 1.2;
  }

  .faq-list {
    width: 1000px;
    gap: 15px;
  }

  .faq-list details {
    min-height: 75px;
    padding: 24px;
    border-radius: 25px;
    background: #ededf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .faq-list summary {
    padding: 0;
    font-weight: 500;
    line-height: 1.5;
  }

  .contact-section {
    width: 1000px;
    min-height: 311px;
    padding: 60px;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .contact-section h2 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.2;
  }

  .contact-section p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.5;
  }

  .contact-section .button {
    min-height: 51px;
    padding: 0 32px;
  }

  .contact-section > span {
    margin-top: 10px;
    font-weight: 400;
    line-height: 1.5;
  }
}

@media (min-width: 1600px) {
  .services-grid {
    position: relative;
    left: 8px;
  }
}

@media (min-width: 810px) {
  .site-footer {
    position: relative;
    align-content: start;
    justify-items: center;
    width: min(1360px, calc(100% - 80px));
    height: 296px;
    min-height: 296px;
    margin-top: 80px;
    padding: 25px 0 0;
    gap: 24px;
  }

  .site-footer .footer-brand,
  .site-footer nav,
  .site-footer .footer-credit {
    grid-column: 1;
    justify-self: center;
  }

  .site-footer > p:last-child {
    position: absolute;
    left: 25px;
    bottom: 25px;
  }

  .social-links {
    position: absolute;
    right: 25px;
    bottom: 25px;
  }
}

@media (min-width: 810px) and (max-width: 1439px) {
  .hero h1 {
    width: 730px;
    max-width: calc(100vw - 80px);
    font-size: 48px;
    line-height: 1.2;
  }

  .hero p {
    width: 720px;
    max-width: calc(100vw - 80px);
  }

  .section,
  .services-section,
  .benefits-section,
  .about-section,
  .plans-section,
  .testimonials-section,
  .faq-section {
    width: min(920px, calc(100% - 80px));
  }

  .section-heading h2,
  .about-copy h2,
  .contact-section h2 {
    font-size: 36px;
    line-height: 1.4;
  }

  .process-section {
    width: 100%;
    height: 2699px;
    min-height: 2699px;
    padding: 100px 40px;
    overflow: visible;
  }

  .process-section .section-heading {
    transform: translateY(-34px);
  }

  .process-section .section-heading h2 {
    width: 1200px;
    max-width: calc(100vw - 80px);
    margin: 26px 0 5px;
    font-size: 45px;
    line-height: 63px;
  }

  .process-section .section-heading p {
    width: 1200px;
    max-width: calc(100vw - 80px);
    line-height: 21.6px;
  }

  .process-list {
    gap: 40px;
    margin-top: -68px;
  }

  .process-step,
  .process-step.reverse {
    grid-template-columns: 1fr;
    gap: 60px;
    width: min(500px, 100%);
    min-height: 745px;
    margin: 0 auto;
  }

  .process-step.reverse .process-visual {
    order: initial;
  }

  .process-visual,
  .audit-card,
  .build-card,
  .deploy-card {
    width: 100%;
    height: 400px;
    min-height: 400px;
  }

  .process-copy {
    width: min(500px, 100%);
    margin: 0 auto;
    text-align: left;
  }

  .process-copy h3 {
    font-size: 24px;
  }

  .process-copy span {
    font-size: 80px;
  }

  .services-section {
    width: min(810px, calc(100% - 80px));
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .services-section .section-heading {
    position: relative;
    left: 0;
    width: 730px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .services-section .section-chip {
    min-height: 39px;
    padding: 0 19px;
    font-weight: 400;
  }

  .services-section .section-heading h2 {
    width: 730px;
    max-width: 100%;
    margin: 10px 0;
    font-size: 45px;
    line-height: 1.4;
  }

  .services-section .section-heading p {
    width: 730px;
    max-width: 100%;
    line-height: 1.2;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(730px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    position: relative;
    left: 0;
    width: 730px;
    max-width: 100%;
    gap: 40px;
  }

  .service-card,
  .service-large {
    min-height: 600px;
    padding: 36px;
  }

  .services-section .service-card,
  .services-section .service-large {
    height: 600px;
    min-height: 600px;
    padding: 0;
    border: 0;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow:
      -10px -10px 20px #fafbff,
      10px 10px 20px rgba(166, 171, 189, 0.25);
    overflow: hidden;
  }

  .services-section .service-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }

  .services-section .service-card p {
    color: #4d4d4d;
    line-height: 1.5;
  }

  .services-section .service-card h3,
  .services-section .service-card p {
    font-family: Poppins, "Poppins Placeholder", sans-serif;
  }

  .services-section .bubble {
    font-size: 16px;
    line-height: 1.5;
  }

  .services-section .bubble.user {
    color: #1c1c1c;
  }

  .services-section .service-copy {
    padding: 0 36px 36px;
  }

  .automation-visual,
  .chat-demo,
  .email-visual,
  .content-visual {
    min-height: 360px;
  }

  .services-section .chat-demo,
  .services-section .email-visual,
  .services-section .content-visual {
    position: relative;
    width: 730px;
    height: 476px;
    min-height: 476px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 28px 28px;
    background: transparent;
    box-shadow: none;
  }

  .services-section .service-card:nth-child(2) .service-copy,
  .services-section .service-card:nth-child(3) .service-copy,
  .services-section .service-card:nth-child(4) .service-copy {
    padding-top: 0;
  }

  .services-section .automation-visual {
    width: 730px;
    height: 476px;
    min-height: 476px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
  }

  .services-section .automation-visual::before,
  .services-section .automation-visual::after {
    top: 50%;
    width: 300px;
  }

  .services-section .app-node,
  .services-section .openai-node {
    width: 75px;
    height: 75px;
    z-index: 2;
    border: 0;
    border-radius: 12px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .services-section .openai-node {
    left: 50%;
    top: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    overflow: visible;
  }

  .services-section .openai-node::before {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    width: 300px;
    height: 8px;
    background: linear-gradient(
      to bottom,
      transparent 0 2px,
      rgba(176, 181, 198, 0.26) 2px 3.5px,
      transparent 3.5px 5px,
      rgba(176, 181, 198, 0.26) 5px 6.5px,
      transparent 6.5px 100%
    );
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-60deg);
    transform-origin: center;
    animation: none;
  }

  .services-section .node-zap {
    left: 240px;
    top: 88px;
  }

  .services-section .node-slack {
    left: 415px;
    right: auto;
    top: 88px;
  }

  .services-section .node-ms {
    left: 165px;
    top: 200.5px;
  }

  .services-section .node-gmail {
    left: 490px;
    right: auto;
    top: 200.5px;
  }

  .services-section .node-air {
    left: 240px;
    bottom: auto;
    top: 313px;
  }

  .services-section .node-notion {
    left: 415px;
    right: auto;
    bottom: auto;
    top: 313px;
  }

  .services-section .service-card.is-hovered .app-node,
  .services-section .service-card.is-hovered .app-node {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-zap,
  .services-section .service-card.is-hovered .node-zap {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-slack,
  .services-section .service-card.is-hovered .node-slack {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-ms,
  .services-section .service-card.is-hovered .node-ms {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-gmail,
  .services-section .service-card.is-hovered .node-gmail {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-air,
  .services-section .service-card.is-hovered .node-air {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-notion,
  .services-section .service-card.is-hovered .node-notion {
    transform: none;
  }

  .services-section .service-card.is-hovered .openai-node,
  .services-section .service-card.is-hovered .openai-node {
    transform: translate(-50%, -50%);
  }

  .services-section .service-card.is-hovered .automation-visual::before,
  .services-section .service-card.is-hovered .automation-visual::after,
  .services-section .service-card.is-hovered .automation-visual::before,
  .services-section .service-card.is-hovered .automation-visual::after,
  .services-section .service-card.is-hovered .openai-node::before,
  .services-section .service-card.is-hovered .openai-node::before {
    background: linear-gradient(
      to bottom,
      transparent 0 2px,
      rgba(176, 181, 198, 0.26) 2px 3.5px,
      transparent 3.5px 5px,
      rgba(176, 181, 198, 0.26) 5px 6.5px,
      transparent 6.5px 100%
    );
  }

  .services-section .bubble.bot {
    left: 39px;
    top: 194px;
    width: 213px;
    height: 54px;
    min-height: 54px;
    padding: 12px;
    overflow: hidden;
    color: #fff;
    border-radius: 24px 24px 24px 8px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    white-space: nowrap;
  }

  .services-section .bubble.user {
    right: 39px;
    top: 270px;
    width: 350px;
    min-height: 78px;
    border-radius: 24px 24px 8px 24px;
    background: #ecedf1;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
  }

  .services-section .bubble.reply {
    display: block;
    left: 39px;
    top: 582px;
    width: 350px;
    min-height: 150px;
    color: #fff;
    border-radius: 24px 24px 24px 8px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    opacity: 1;
    transform: translate3d(0, -75px, 0);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card.is-hovered .bubble.reply,
  .services-section .service-card.is-hovered .bubble.reply {
    opacity: 1;
    transform: translate3d(0, -75px, 0);
  }

  .services-section .service-card.is-hovered .chat-input,
  .services-section .service-card.is-hovered .chat-input {
    opacity: 1;
    transform: none;
  }

  .services-section .chat-input {
    left: 29px;
    right: auto;
    top: 368px;
    width: 672px;
    height: 65px;
    padding: 0 10px 0 16px;
    background: #ecedf1;
    box-shadow:
      inset -3px -3px 6px #fafbff,
      inset 3px 3px 6px rgba(166, 171, 189, 0.5);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .chat-input strong {
    width: 45px;
    height: 45px;
    color: #6d7aff;
    background: transparent;
    box-shadow:
      -2px -2px 5px #fafbff,
      2px 2px 5px rgba(166, 171, 189, 0.25);
  }

  .services-section .chat-input strong svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
  }

  .services-section .email-visual {
    padding: 99px 0 0 165px;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .email-visual::before,
  .services-section .content-visual::before {
    position: absolute;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    content: "";
    z-index: 0;
  }

  .services-section .email-visual::before {
    left: 140px;
    top: 74px;
    width: 450px;
    height: 329px;
    border-radius: 25px;
  }

  .services-section .email-visual > * {
    position: relative;
    z-index: 1;
    width: 400px;
  }

  .services-section .email-visual .mini-avatar-row {
    position: absolute;
    left: 165px;
    top: 99px;
    width: 208px;
    height: 50px;
    margin: 0;
  }

  .services-section .email-visual .mini-avatar-row img,
  .services-section .email-visual .mini-avatar-row strong {
    width: 50px;
    height: 50px;
    margin-left: -20px;
  }

  .services-section .email-visual .mini-avatar-row strong {
    margin-left: -14px;
    background: #6d7aff;
    font-weight: 400;
  }

  .services-section .email-visual .mini-avatar-row img:first-child {
    margin-left: 0;
  }

  .services-section .email-visual .form-label {
    position: absolute;
    left: 165px;
    width: auto;
    margin: 0;
    font-size: 12px;
    line-height: 14.4px;
  }

  .services-section .email-visual > .form-label:nth-of-type(1) {
    top: 164px;
  }

  .services-section .email-visual > .form-label:nth-of-type(2) {
    top: 218px;
  }

  .services-section .email-visual .form-line.medium {
    position: absolute;
    left: 165px;
    top: 193px;
    width: 400px;
    height: 10px;
    margin: 0;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 77px,
        transparent 77px 82px,
        #d4d4d4 82px 159px,
        transparent 159px 164px,
        #d4d4d4 164px 318px,
        transparent 318px 100%);
    background-color: transparent;
  }

  .services-section .email-visual .form-text-lines {
    position: absolute;
    left: 165px;
    top: 247.4px;
    display: block;
    width: 396px;
    height: 65px;
    margin: 0;
  }

  .services-section .email-visual .form-text-lines span {
    position: absolute;
    left: 0;
    display: block;
    width: 400px;
    height: 10px;
    border-radius: 25px;
    background-color: transparent;
  }

  .services-section .email-visual .form-text-lines span:nth-child(1) {
    top: 0;
    background:
      linear-gradient(90deg, #d4d4d4 0 76px, transparent 76px 81px, #d4d4d4 81px 157px, transparent 157px 162px, #d4d4d4 162px 238px, transparent 238px 243px, #d4d4d4 243px 319px, transparent 319px 324px, #d4d4d4 324px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(2) {
    top: 20px;
    background:
      linear-gradient(90deg, #d4d4d4 0 69px, transparent 69px 74px, #d4d4d4 74px 143px, transparent 143px 148px, #d4d4d4 148px 217px, transparent 217px 222px, #d4d4d4 222px 326px, transparent 326px 331px, #d4d4d4 331px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(3) {
    top: 40px;
    background:
      linear-gradient(90deg, #d4d4d4 0 54px, transparent 54px 59px, #d4d4d4 59px 139px, transparent 139px 144px, #d4d4d4 144px 198px, transparent 198px 203px, #d4d4d4 203px 283px, transparent 283px 288px, #d4d4d4 288px 342px, transparent 342px 347px, #d4d4d4 347px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(4) {
    top: 60px;
    background:
      linear-gradient(90deg, #d4d4d4 0 69px, transparent 69px 74px, #d4d4d4 74px 178px, transparent 178px 183px, #d4d4d4 183px 252px, transparent 252px 257px, #d4d4d4 257px 326px, transparent 326px 331px, #d4d4d4 331px 400px);
  }

  .services-section .email-visual .form-text-lines span:nth-child(n + 5) {
    display: none;
  }

  .services-section .email-send {
    position: absolute;
    left: 500px;
    top: 332.4px;
    display: grid;
    place-items: center;
    width: 65px;
    height: 45px;
    border-radius: 15px;
    color: #fff;
    background: #6d7aff;
    z-index: 2;
  }

  .services-section .email-send svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: currentColor;
  }

  .services-section .content-visual {
    padding: 88px 0 0 177px;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-visual::before {
    left: 153px;
    top: 88px;
    width: 425px;
    height: 350px;
    border-radius: 25px 25px 0 0;
  }

  .services-section .content-visual::after {
    position: absolute;
    left: 289px;
    top: 171px;
    z-index: 1;
    width: 111px;
    height: 103px;
    border-radius: 12px;
    background: #d4d4d4;
    content: "";
  }

  .services-section .content-visual > * {
    position: relative;
    z-index: 2;
    width: 378px;
  }

  .services-section .content-visual .browser-frame {
    position: absolute;
    left: 24.5px;
    top: 25px;
    width: 375px;
    height: 11px;
    margin: 0;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-visual .browser-frame span {
    display: none;
  }

  .services-section .content-visual .content-layout {
    position: absolute;
    left: 25px;
    top: 50px;
    display: block;
    width: 375px;
    height: 112px;
  }

  .services-section .mini-avatar-row img,
  .services-section .mini-avatar-row strong,
  .services-section .content-layout > div:first-child {
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-layout > div:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 111px;
    height: 103px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child {
    position: absolute;
    left: 126px;
    top: 7px;
    display: block;
    width: 250px;
    height: 105px;
  }

  .services-section .content-layout > div:last-child span {
    position: absolute;
    height: 11px;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child span:nth-child(1) {
    left: 0;
    top: 0;
    width: 171px;
  }

  .services-section .content-layout > div:last-child span:nth-child(2) {
    left: 0;
    top: 26px;
    width: 200px;
  }

  .services-section .content-layout > div:last-child span:nth-child(3) {
    left: 1px;
    top: 52px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 102px,
      transparent 102px 109px,
      #d4d4d4 109px 215px,
      transparent 215px 223px,
      #d4d4d4 223px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-layout > div:last-child span:nth-child(4) {
    left: 1px;
    top: 78px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 54px,
      transparent 54px 61px,
      #d4d4d4 61px 100px,
      transparent 100px 109px,
      #d4d4d4 109px 204px,
      transparent 204px 209px,
      #d4d4d4 209px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines {
    position: absolute;
    left: 25px;
    top: 178px;
    display: block;
    width: 375px;
    height: 115px;
    margin: 0;
  }

  .services-section .content-lines span {
    position: absolute;
    height: 11px;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-lines::before {
    position: absolute;
    left: 0;
    top: 78px;
    width: 250px;
    height: 11px;
    border-radius: 25px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 54px,
      transparent 54px 61px,
      #d4d4d4 61px 100px,
      transparent 100px 109px,
      #d4d4d4 109px 204px,
      transparent 204px 209px,
      #d4d4d4 209px 248px,
      transparent 248px 100%
    );
    content: "";
  }

  .services-section .content-lines span:nth-child(1) {
    left: 0;
    top: 0;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 171px,
      transparent 171px 180px,
      #d4d4d4 180px 205px,
      transparent 205px 214px,
      #d4d4d4 214px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines span:nth-child(2) {
    left: 0;
    top: 26px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 200px,
      transparent 200px 209px,
      #d4d4d4 209px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines span:nth-child(3) {
    left: 0;
    top: 52px;
    width: 250px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 102px,
      transparent 102px 109px,
      #d4d4d4 109px 215px,
      transparent 215px 223px,
      #d4d4d4 223px 248px,
      transparent 248px 100%
    );
  }

  .services-section .content-lines span:nth-child(4) {
    left: 0;
    top: 111px;
    width: 375px;
  }

  .services-section .form-line,
  .services-section .form-text-lines span,
  .services-section .content-layout span,
  .services-section .content-lines span {
    transform-origin: left center;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card.is-hovered .email-visual,
  .services-section .service-card.is-hovered .email-visual {
    transform: none;
  }

  .services-section .service-card.is-hovered .mini-avatar-row img,
  .services-section .service-card.is-hovered .mini-avatar-row img,
  .services-section .service-card.is-hovered .mini-avatar-row strong,
  .services-section .service-card.is-hovered .mini-avatar-row strong {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-line,
  .services-section .service-card.is-hovered .form-line {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n),
  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n) {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n + 1),
  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n + 1) {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-visual,
  .services-section .service-card.is-hovered .content-visual {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-layout > div:first-child,
  .services-section .service-card.is-hovered .content-layout > div:first-child {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-layout span:nth-child(1),
  .services-section .service-card.is-hovered .content-layout span:nth-child(1),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n) {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-layout span:nth-child(2),
  .services-section .service-card.is-hovered .content-layout span:nth-child(2),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n + 1),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n + 1) {
    transform: none;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 353px);
    justify-content: center;
  }

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

  .benefit-grid {
    gap: 24px;
  }

  .benefit-grid article {
    width: 353px;
    min-height: 300px;
  }

  .about-section {
    min-height: 580px;
    padding-top: 94px;
  }

  .about-copy p {
    max-width: 730px;
    width: 700px;
    max-width: 700px;
    color: #4d4d4d;
    font-size: 23px;
    line-height: 38.25px;
    font-weight: 400;
  }

  .about-copy h2 {
    width: 730px;
    font-size: 45px;
    line-height: 63px;
    margin: 26px 0 38px;
  }

  .about-copy .button.secondary {
    color: #fff;
    background: linear-gradient(135deg, #aeb4ff, #818aff);
    border-color: transparent;
    box-shadow: 0 14px 35px rgba(127, 134, 255, 0.24);
  }

  .pricing-grid {
    width: 500px;
    max-width: 100%;
    margin-top: -30px;
    gap: 24px;
  }

  .pricing-card,
  .pricing-card.featured {
    height: 672px;
    width: 500px;
    min-height: 672px;
    padding: 32px 32px 32px;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow: var(--shadow);
    justify-self: center;
  }

  .pricing-card h3 {
    margin: 0;
  }

  .price {
    margin: 15px 0 16px;
  }

  .pricing-card .button {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-top: auto;
  }

  .testimonials-section {
    padding-top: 96px;
  }

  .testimonial-grid {
    gap: 24px;
  }

  .testimonial-grid figure {
    min-height: 230px;
    padding: 22px;
  }

  .testimonial-grid blockquote {
    line-height: 1.45;
  }

  .faq-list {
    width: 650px;
  }

  .faq-section {
    padding-top: 24px;
  }

  .contact-section {
    width: min(650px, calc(100% - 80px));
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .contact-section h2 {
    line-height: 1.2;
  }
}

.services-section .node-zap {
  border-radius: 15px;
}

@media (max-width: 809px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 28px;
  }

  .brand {
    font-size: 0;
  }

  .site-nav,
  .header-cta {
    display: flex;
    grid-column: 1 / -1;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      max-height 320ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 220ms ease,
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 320ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 320ms;
  }

  .header-cta {
    min-height: 0;
    height: 0;
  }

  .site-header.open .site-nav,
  .site-header.open .header-cta {
    max-height: 440px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition:
      max-height 320ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 220ms ease,
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 320ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 0s;
  }

  .site-header.open .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }

  .site-header.open .site-nav a {
    padding: 14px 6px;
  }

  .site-header.open .header-cta {
    width: 100%;
    height: 50px;
    min-height: 50px;
  }

  .site-header.open .header-cta::before {
    content: "Book a call";
  }

  .site-header.open .header-cta svg {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #596071;
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }

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

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

  .hero {
    min-height: 780px;
    padding-top: 96px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: clamp(38px, 10vw, 56px);
  }

  .process-step,
  .process-step.reverse,
  .about-section,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-step.reverse .process-visual {
    order: initial;
  }

  .benefits-section {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }

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

  .benefit-grid {
    grid-template-columns: minmax(0, 353px);
    justify-content: center;
  }

  .benefit-grid article {
    width: 100%;
    padding: 30px;
  }

  .service-large {
    grid-column: auto;
  }
}

@media (min-width: 641px) and (max-width: 809px) {
  .services-section {
    width: 100%;
  }

  .client-width-narrow .services-section {
    width: var(--client-width);
    margin-left: 0;
    margin-right: 0;
  }

  .services-section .section-heading,
  .services-grid {
    left: 0;
    width: calc(100vw - 55px);
    max-width: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: -45px;
    margin-left: 20px;
    margin-right: auto;
  }

  .services-section .service-card,
  .services-section .service-large,
  .services-section .service-card:nth-child(2) {
    width: 100%;
    height: 379px;
    min-height: 379px;
    padding: 0;
    border: 0;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow:
      -10px -10px 20px #fafbff,
      10px 10px 20px rgba(166, 171, 189, 0.25);
    overflow: hidden;
  }

  .services-section .service-copy,
  .services-section .service-card:nth-child(2) .service-copy,
  .services-section .service-card:nth-child(3) .service-copy,
  .services-section .service-card:nth-child(4) .service-copy {
    height: 104px;
    padding: 0 24px 24px;
    text-align: center;
  }

  .services-section .service-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.2;
  }

  .services-section .service-card p {
    width: 100%;
    line-height: 1.5;
  }

  .services-section .automation-visual,
  .services-section .chat-demo,
  .services-section .email-visual,
  .services-section .content-visual {
    position: relative;
    width: 300px;
    height: 260px;
    min-height: 260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 28px 28px;
    background: transparent;
    box-shadow: none;
  }

  .services-section .automation-visual::before,
  .services-section .automation-visual::after {
    top: 53.5%;
    width: 250px;
  }

  .services-section .workflow-pulse {
    top: calc(53.5% + var(--anchor-y));
  }

  .services-section .workflow-pulse.particle-1 {
    --anchor-x: -22px;
    --anchor-y: 6px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-2 {
    --anchor-x: -3px;
    --anchor-y: -13px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-3 {
    --anchor-x: -16px;
    --anchor-y: 10px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-4 {
    --anchor-x: -8px;
    --anchor-y: -9px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-5 {
    --anchor-x: -8px;
    --anchor-y: -13px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.particle-6 {
    --anchor-x: -3px;
    --anchor-y: 6px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.particle-7 {
    --anchor-x: -14px;
    --anchor-y: -9px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.particle-8 {
    --anchor-x: -16px;
    --anchor-y: 10px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.workflow-bar {
    --anchor-x: 0px;
  }

  .services-section .workflow-pulse.bar-1 {
    --anchor-x: 2px;
    --anchor-y: -4px;
  }

  .services-section .workflow-pulse.bar-2 {
    --anchor-x: -27px;
    --anchor-y: -4px;
  }

  .services-section .workflow-pulse.bar-3 {
    --anchor-x: 2px;
    --anchor-y: 3px;
  }

  .services-section .workflow-pulse.bar-4 {
    --anchor-x: -27px;
    --anchor-y: 3px;
  }

  .services-section .app-node,
  .services-section .openai-node {
    width: 50px;
    height: 50px;
    z-index: 2;
    border: 0;
    border-radius: 12px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .services-section .openai-node {
    left: 50%;
    top: 53.5%;
    z-index: 3;
    font-size: 28px;
    transform: translate(-50%, -50%);
    overflow: visible;
  }

  .services-section .openai-node::before {
    width: 250px;
  }

  .services-section .app-node .logo-svg,
  .services-section .openai-node .logo-svg {
    width: 30px;
    height: 30px;
  }

  .services-section .node-zap {
    left: 65px;
    top: 35px;
    border-radius: 15px;
  }

  .services-section .node-slack {
    left: 185px;
    right: auto;
    top: 35px;
  }

  .services-section .node-ms {
    left: 15px;
    top: 115px;
  }

  .services-section .node-gmail {
    left: 235px;
    right: auto;
    top: 115px;
  }

  .services-section .node-air {
    left: 65px;
    bottom: auto;
    top: 195px;
  }

  .services-section .node-notion {
    left: 185px;
    right: auto;
    bottom: auto;
    top: 195px;
  }

  .services-section .bubble {
    padding: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .services-section .bubble.bot {
    left: 15px;
    top: 74px;
    width: 161px;
    height: 42px;
    min-height: 42px;
    border-radius: 18px 18px 18px 6px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    font-size: 12px;
    line-height: 18px;
    overflow: hidden;
    white-space: nowrap;
  }

  .services-section .bubble.user {
    left: 85px;
    right: auto;
    top: 127px;
    width: 200px;
    height: 67px;
    min-height: 67px;
    border-radius: 18px 18px 6px 18px;
    background: #ecedf1;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    font-size: 12px;
    line-height: 14.4px;
    overflow: hidden;
  }

  .services-section .bubble.reply {
    display: block;
    left: 15px;
    top: 345px;
    width: 200px;
    height: 110.4px;
    min-height: 110.4px;
    border-radius: 18px 18px 18px 6px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    opacity: 1;
    transform: translate3d(0, -55.2188px, 0);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    font-size: 12px;
    line-height: 14.4px;
  }

  .services-section .service-card.is-hovered .bubble.reply,
  .services-section .service-card.is-hovered .bubble.reply {
    opacity: 1;
    transform: translate3d(0, -55.2188px, 0);
  }

  .services-section .chat-input {
    left: 5px;
    right: auto;
    top: 214px;
    bottom: auto;
    width: 290px;
    height: 41px;
    padding: 0 8px;
    border-radius: 50px;
    background: #ecedf1;
    box-shadow:
      inset -2px -2px 3px #fafbff,
      inset 2px 2px 3px rgba(166, 171, 189, 0.5);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .chat-input span {
    width: 212px;
    height: 8px;
    opacity: 1;
    background: #d4d6dc;
  }

  .services-section .chat-input strong {
    width: 32px;
    height: 32px;
    color: #6d7aff;
    background: transparent;
    box-shadow:
      -2px -2px 5px #fafbff,
      2px 2px 5px rgba(166, 171, 189, 0.25);
    font-size: 28px;
  }

  .services-section .chat-input strong svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .services-section .email-visual {
    padding: 54px 0 0 25px;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .email-visual::before,
  .services-section .content-visual::before {
    position: absolute;
    background: #ecedf1;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    content: "";
    z-index: 0;
  }

  .services-section .email-visual::before {
    left: 10px;
    top: 39px;
    width: 280px;
    height: 203px;
    border-radius: 20px;
  }

  .services-section .email-visual > * {
    position: relative;
    z-index: 1;
    width: 250px;
  }

  .services-section .email-visual .mini-avatar-row {
    position: absolute;
    left: 25px;
    top: 53px;
    width: 140px;
    height: 30px;
    margin: 0;
  }

  .services-section .mini-avatar-row img,
  .services-section .mini-avatar-row strong {
    width: 30px;
    height: 30px;
    margin-left: -10px;
    border-width: 1px;
  }

  .services-section .mini-avatar-row img:first-child {
    margin-left: 0;
  }

  .services-section .mini-avatar-row strong {
    background: #6d7aff;
    font-size: 12px;
  }

  .services-section .email-visual > .form-label {
    position: absolute;
    left: 25px;
    margin: 0;
    font-size: 12px;
    line-height: 14px;
  }

  .services-section .email-visual > .form-label:nth-of-type(1) {
    top: 90px;
  }

  .services-section .email-visual > .form-label:nth-of-type(2) {
    top: 130px;
  }

  .services-section .form-line.medium {
    position: absolute;
    left: 25px;
    top: 114px;
    width: 250px;
    height: 5px;
    margin: 0;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 47px,
        transparent 47px 52px,
        #d4d4d4 52px 99px,
        transparent 99px 104px,
        #d4d4d4 104px 198px,
        transparent 198px 100%);
    background-color: transparent;
  }

  .services-section .form-text-lines {
    position: absolute;
    left: 0;
    top: 95px;
    display: block;
    width: 250px;
    height: 45px;
    margin: 0;
  }

  .services-section .form-text-lines span {
    position: absolute;
    left: 0;
    display: block;
    width: 250px;
    height: 5px;
    border-radius: 25px;
    background-color: transparent;
  }

  .services-section .email-send {
    position: absolute;
    left: 240px;
    top: 200px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 25px;
    border-radius: 5px;
    color: #fff;
    background: #6d7aff;
    z-index: 2;
  }

  .services-section .email-send svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  .services-section .content-visual {
    padding: 34px 0 0 33px;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-visual::before {
    left: 12.5px;
    top: 33.5px;
    width: 275px;
    height: 226.5px;
    border-radius: 20px 20px 0 0;
  }

  .services-section .content-visual::after {
    position: absolute;
    left: 234px;
    top: 148px;
    z-index: 1;
    width: 60px;
    height: 56px;
    border-radius: 12px;
    background: #d4d4d4;
    content: "";
  }

  .services-section .content-visual > * {
    position: relative;
    z-index: 2;
    width: 245px;
  }

  .services-section .content-visual .browser-frame {
    position: absolute;
    left: 31px;
    top: 52px;
    width: 240px;
    height: 6px;
    margin: 0;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-visual .browser-frame span {
    display: none;
  }

  .services-section .content-layout {
    position: absolute;
    left: 32px;
    top: 68px;
    display: block;
    width: 245px;
    height: 112px;
  }

  .services-section .content-layout > div:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 56px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child {
    position: absolute;
    left: 73px;
    top: 3px;
    display: block;
    width: 166px;
    height: 95px;
  }

  .services-section .content-layout > div:last-child span,
  .services-section .content-lines span {
    position: absolute;
    height: 6px;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child span:nth-child(1) {
    left: 0;
    top: 0;
    width: 102px;
  }

  .services-section .content-layout > div:last-child span:nth-child(2) {
    left: 0;
    top: 17px;
    width: 120px;
  }

  .services-section .content-layout > div:last-child span:nth-child(3) {
    left: 0;
    top: 34px;
    width: 166px;
    background: linear-gradient(90deg, #d4d4d4 0 62px, transparent 62px 68px, #d4d4d4 68px 132px, transparent 132px 138px, #d4d4d4 138px 153px, transparent 153px 100%);
  }

  .services-section .content-layout > div:last-child span:nth-child(4) {
    left: 0;
    top: 50px;
    width: 166px;
    background: linear-gradient(90deg, #d4d4d4 0 32px, transparent 32px 37px, #d4d4d4 37px 60px, transparent 60px 66px, #d4d4d4 66px 122px, transparent 122px 126px, #d4d4d4 126px 150px, transparent 150px 100%);
  }

  .services-section .content-lines {
    position: absolute;
    left: 31px;
    top: 148px;
    display: block;
    width: 240px;
    height: 85px;
    margin: 0;
  }

  .services-section .content-lines::before {
    position: absolute;
    left: 0;
    top: 47px;
    width: 170px;
    height: 6px;
    border-radius: 25px;
    background: linear-gradient(90deg, #d4d4d4 0 43px, transparent 43px 50.5px, #d4d4d4 50.5px 70.5px, transparent 70.5px 75px, #d4d4d4 75px 122px, transparent 122px 130px, #d4d4d4 130px 170px);
    content: "";
  }

  .services-section .content-lines span:nth-child(1) {
    left: 0;
    top: 0;
    width: 170px;
    background: linear-gradient(90deg, #d4d4d4 0 101px, transparent 101px 106px, #d4d4d4 106px 131px, transparent 131px 135.5px, #d4d4d4 135.5px 170px);
  }

  .services-section .content-lines span:nth-child(2) {
    left: 0;
    top: 15px;
    width: 170px;
    background: linear-gradient(90deg, #d4d4d4 0 100px, transparent 100px 107.5px, #d4d4d4 107.5px 170px);
  }

  .services-section .content-lines span:nth-child(3) {
    left: 0;
    top: 31px;
    width: 170px;
    background: linear-gradient(90deg, #d4d4d4 0 25px, transparent 25px 35px, #d4d4d4 35px 134px, transparent 134px 144px, #d4d4d4 144px 170px);
  }

  .services-section .content-lines span:nth-child(4) {
    left: 0;
    top: 70px;
    width: 240px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0;
    grid-template-columns: auto auto;
    width: 100%;
    margin: 0 auto;
    padding: 8px 20px;
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(244, 245, 249, 0.92);
    box-shadow: 0 8px 24px rgba(91, 99, 134, 0.08);
  }

  .site-header.open {
    padding-bottom: 52px;
  }

  main {
    padding-top: 0;
  }

  section[id],
  .contact-section {
    scroll-margin-top: 82px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .site-header .brand {
    justify-self: start;
    width: 50px;
    min-width: 50px;
  }

  .site-header .brand-word {
    display: none;
  }

  .site-header .menu-button {
    justify-self: end;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .menu-button span {
    width: 30px;
    height: 3px;
    background: #30343d;
  }

  .hero {
    min-height: 918px;
    width: var(--client-width, 100%);
    padding: 190px 20px 24px;
  }

  .hero-inner {
    width: min(335px, calc(var(--client-width, 100vw) - 40px));
  }

  .hero h1 {
    width: min(100%, 335px);
    max-width: 100%;
    margin-top: 28px;
    font-size: 34px;
    line-height: 1.2;
    text-wrap: wrap;
  }

  .hero h1 span {
    display: inline;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section-heading h2 {
    width: min(100%, 350px);
    overflow-wrap: break-word;
  }

  .hero p {
    width: min(100%, 335px);
    margin: 24px 0 36px;
    font-size: 16px;
  }

  .client-proof {
    margin-top: 38px;
    flex-direction: column;
    gap: 14px;
  }

  .logo-reveal {
    margin-top: 74px;
  }

  .logo-strip {
    justify-content: flex-start;
    gap: 58px;
    font-size: 21px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 68px 0;
  }

  .services-section {
    width: calc(100vw - 40px);
    margin-left: 20px;
    margin-right: 0;
    margin-top: -29px;
  }

  .plans-section {
    width: 100%;
    padding: 150px 20px 50px;
  }

  .benefits-section {
    width: calc(100vw - 55px);
    margin-left: 20px;
    margin-right: 0;
  }

  .process-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: var(--client-width, 100%);
    padding: 100px 20px 50px;
  }

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

  .plans-section .section-heading {
    width: min(350px, 100%);
    margin-bottom: 42px;
  }

  .plans-section .section-heading h2 {
    width: min(350px, 100%);
    margin: 10px 0;
    font-size: 29px;
    line-height: 1.4;
  }

  .plans-section .section-heading p {
    width: 302px;
    line-height: 1.2;
  }

  .services-section .section-heading {
    position: relative;
    top: 19px;
    margin-bottom: 59px;
  }

  .services-section .section-chip {
    min-height: 39px;
    padding: 0 19px;
    font-weight: 400;
    transform: translateY(13px);
  }

  .section-heading h2,
  .about-copy h2,
  .contact-section h2 {
    font-size: 29px;
    line-height: 1.4;
  }

  .services-section .section-heading h2 {
    width: calc(100vw - 40px);
    margin-bottom: 10px;
    font-size: 29px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .services-section .section-heading p {
    width: 302px;
    line-height: 1.2;
  }

  .section-heading p,
  .about-copy p {
    width: min(100%, 320px);
    font-size: 16px;
  }

  .about-copy p {
    width: min(350px, 100%);
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
  }

  .process-list {
    width: min(335px, 100%);
    margin: 0 auto;
    gap: 40px;
  }

  .process-step {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 335px;
    min-height: 573.6px;
  }

  .process-step.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-visual,
  .audit-card,
  .build-card,
  .deploy-card {
    min-width: 0;
    width: 100%;
    height: 312px;
    min-height: 312px;
  }

  .process-section .section-heading {
    width: min(335px, 100%);
    margin: 0 auto;
    gap: 10px;
  }

  .process-section .section-chip {
    min-height: 39.2px;
  }

  .process-section .section-heading h2 {
    margin: 0;
    font-size: 29px;
    line-height: 1.4;
  }

  .process-section .section-heading p {
    width: 302px;
    line-height: 1.2;
  }

  .process-copy {
    display: grid;
    justify-items: center;
    width: 295px;
    margin: 0 auto;
    text-align: center;
  }

  .process-copy span {
    font-size: 40px;
    line-height: 1;
  }

  .process-copy h3 {
    margin: 0;
  }

  .process-copy p {
    width: 295px;
  }

  .lottie-target {
    right: 25px;
    top: 202px;
    width: 75px;
    height: 75px;
  }

  .lottie-pin {
    width: 50px;
    height: 50px;
  }

  .pin-primary {
    left: 36px;
    top: 34px;
  }

  .pin-secondary {
    left: 149px;
    top: 112px;
  }

  .pin-tertiary {
    left: 180px;
    top: 58px;
  }

  .process-step:first-child .lottie-target {
    left: 132px;
    right: auto;
    top: 50px;
  }

  .process-step:first-child .pin-primary {
    left: 36px;
    top: 80px;
  }

  .process-step:first-child .pin-secondary {
    left: 149px;
    top: 166px;
  }

  .process-step:first-child .pin-tertiary {
    display: none;
    opacity: 0;
  }

  .discovery-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .discovery-icon svg {
    width: 44px;
    height: 44px;
  }

  .icon-bar {
    transform: translate3d(134px, 89px, 0);
  }

  .icon-note {
    transform: translate3d(-134px, 89px, 0);
  }

  .icon-line {
    transform: translate3d(134px, -45px, 0);
  }

  .icon-pie {
    transform: translate3d(-134px, -45px, 0);
  }

  .launch-icon {
    left: 50%;
    top: 50%;
    width: 104px;
    height: 104px;
    transform: translate3d(-50%, -50%, 0);
  }

  .process-copy p,
  .service-card p,
  .benefit-grid p,
  .pricing-card p,
  .faq-list p,
  blockquote {
    font-size: 16px;
  }

  .services-grid,
  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 20px;
    margin-top: -2.8px;
  }

  .service-large {
    grid-column: auto;
  }

  .service-card,
  .benefit-grid article,
  .pricing-card,
  .testimonial-grid figure {
    padding: 24px;
  }

  .pricing-grid {
    width: min(350px, 100%);
    margin-top: 0;
    gap: 25px;
  }

  .pricing-card,
  .pricing-card.featured {
    width: 100%;
    height: 760px;
    min-height: 760px;
    padding: 24px;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow:
      -10px -10px 20px #fafbff,
      10px 10px 20px rgba(166, 171, 189, 0.25);
  }

  .pricing-card h3 {
    margin: 0;
  }

  .pricing-card .button {
    margin-top: auto;
  }

  .benefit-grid article {
    width: 100%;
    padding: 30px;
  }

  .benefit-grid h3 {
    font-size: 18px;
    line-height: 21.6px;
  }

  .service-card,
  .service-large {
    min-height: 386px;
  }

  .services-section .service-card,
  .services-section .service-large {
    height: 402.6px;
    min-height: 402.6px;
    padding: 0;
    border: 0;
    border-radius: 25px;
    background: #ecedf1;
    box-shadow:
      -10px -10px 20px #fafbff,
      10px 10px 20px rgba(166, 171, 189, 0.25);
    overflow: hidden;
  }

  .services-section .service-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
  }

  .services-section .service-card p {
    color: #5b5c63;
    line-height: 1.5;
  }

  .services-section .service-card h3,
  .services-section .service-card p {
    font-family: Poppins, "Poppins Placeholder", sans-serif;
  }

  .services-section .service-card:nth-child(1) .service-copy,
  .services-section .service-card:nth-child(3) .service-copy {
    transform: translateY(-8px);
  }

  .services-section .service-card:nth-child(2) {
    height: 402.6px;
    min-height: 402.6px;
  }

  .services-section .service-card:nth-child(4) {
    height: 426.6px;
    min-height: 426.6px;
  }

  .automation-visual,
  .chat-demo,
  .email-visual,
  .content-visual {
    min-height: 168px;
  }

  .services-section .chat-demo,
  .services-section .email-visual,
  .services-section .content-visual {
    position: relative;
    width: 300px;
    height: 260px;
    min-height: 260px;
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 28px 28px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .services-section .automation-visual {
    width: 300px;
    height: 260px;
    min-height: 260px;
    margin: 0 auto;
    overflow: hidden;
  }

  .services-section .service-copy {
    padding: 0 24px 24px;
    text-align: center;
  }

  .services-section .service-card:nth-child(2) .service-copy {
    height: 128px;
  }

  .automation-visual::before,
  .automation-visual::after {
    top: 53.5%;
    width: 250px;
  }

  .app-node,
  .openai-node {
    width: 50px;
    height: 50px;
    z-index: 2;
    border-radius: 12px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .openai-node {
    left: 50%;
    top: 53.5%;
    z-index: 3;
    width: 50px;
    height: 50px;
    font-size: 28px;
    transform: translate(-50%, -50%);
    overflow: visible;
  }

  .services-section .workflow-pulse {
    top: calc(53.5% + var(--anchor-y));
  }

  .services-section .workflow-pulse.particle-1 {
    --anchor-x: -22px;
    --anchor-y: 6px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-2 {
    --anchor-x: -3px;
    --anchor-y: -13px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-3 {
    --anchor-x: -16px;
    --anchor-y: 10px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-4 {
    --anchor-x: -8px;
    --anchor-y: -9px;
    --pulse-rotate: -55deg;
  }

  .services-section .workflow-pulse.particle-5 {
    --anchor-x: -8px;
    --anchor-y: -13px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.particle-6 {
    --anchor-x: -3px;
    --anchor-y: 6px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.particle-7 {
    --anchor-x: -14px;
    --anchor-y: -9px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.particle-8 {
    --anchor-x: -16px;
    --anchor-y: 10px;
    --pulse-rotate: 55deg;
  }

  .services-section .workflow-pulse.workflow-bar {
    --anchor-x: 0px;
    animation: none;
  }

  .services-section .workflow-pulse.bar-1 {
    --anchor-x: 2px;
    --anchor-y: -4px;
  }

  .services-section .workflow-pulse.bar-2 {
    --anchor-x: -27px;
    --anchor-y: -4px;
  }

  .services-section .workflow-pulse.bar-3 {
    --anchor-x: 2px;
    --anchor-y: 3px;
  }

  .services-section .workflow-pulse.bar-4 {
    --anchor-x: -27px;
    --anchor-y: 3px;
  }

  .services-section .workflow-pulse:not(.workflow-bar) {
    animation: none;
  }

  .services-section .openai-node::before {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    width: 250px;
    height: 8px;
    background: linear-gradient(
      to bottom,
      transparent 0 2px,
      rgba(176, 181, 198, 0.26) 2px 3.5px,
      transparent 3.5px 5px,
      rgba(176, 181, 198, 0.26) 5px 6.5px,
      transparent 6.5px 100%
    );
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-60deg);
    transform-origin: center;
    animation: none;
  }

  .app-node .logo-svg,
  .openai-node .logo-svg {
    width: 30px;
    height: 30px;
  }

  .node-zap {
    left: 65px;
    top: 36px;
    border-radius: 15px;
  }

  .node-slack {
    left: 185px;
    right: auto;
    top: 36px;
  }

  .node-ms {
    left: 15px;
    top: 116px;
  }

  .node-gmail {
    left: 235px;
    right: auto;
    top: 116px;
  }

  .node-air {
    left: 65px;
    bottom: auto;
    top: 196px;
  }

  .node-notion {
    left: 185px;
    right: auto;
    bottom: auto;
    top: 196px;
  }

  .services-section .service-card.is-hovered .app-node,
  .services-section .service-card.is-hovered .app-node {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-zap,
  .services-section .service-card.is-hovered .node-zap {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-slack,
  .services-section .service-card.is-hovered .node-slack {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-ms,
  .services-section .service-card.is-hovered .node-ms {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-gmail,
  .services-section .service-card.is-hovered .node-gmail {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-air,
  .services-section .service-card.is-hovered .node-air {
    transform: none;
  }

  .services-section .service-card.is-hovered .node-notion,
  .services-section .service-card.is-hovered .node-notion {
    transform: none;
  }

  .services-section .service-card.is-hovered .openai-node,
  .services-section .service-card.is-hovered .openai-node {
    transform: translate(-50%, -50%);
  }

  .services-section .service-card.is-hovered .automation-visual::before,
  .services-section .service-card.is-hovered .automation-visual::after,
  .services-section .service-card.is-hovered .automation-visual::before,
  .services-section .service-card.is-hovered .automation-visual::after,
  .services-section .service-card.is-hovered .openai-node::before,
  .services-section .service-card.is-hovered .openai-node::before {
    background: linear-gradient(
      to bottom,
      transparent 0 2px,
      rgba(176, 181, 198, 0.26) 2px 3.5px,
      transparent 3.5px 5px,
      rgba(176, 181, 198, 0.26) 5px 6.5px,
      transparent 6.5px 100%
    );
  }

  .bubble {
    padding: 10px 14px;
  }

  .services-section .bubble {
    padding: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .services-section .bubble.bot {
    left: 15px;
    top: 74px;
    width: 161px;
    height: 42px;
    min-height: 42px;
    padding: 12px;
    border-radius: 18px 18px 18px 6px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    font-size: 12px;
    line-height: 18px;
    overflow: hidden;
    white-space: nowrap;
  }

  .services-section .bubble.user {
    left: 85px;
    right: auto;
    top: 127px;
    width: 200px;
    height: 67px;
    min-height: 67px;
    border-radius: 18px 18px 6px 18px;
    background: #ecedf1;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    font-size: 12px;
    line-height: 14.4px;
    overflow: hidden;
  }

  .services-section .bubble.reply {
    display: block;
    left: 15px;
    top: 345px;
    width: 200px;
    height: 110.4px;
    min-height: 110.4px;
    border-radius: 18px 18px 18px 6px;
    background: #6d7aff;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    opacity: 1;
    transform: translate3d(0, -55.2188px, 0);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    font-size: 12px;
    line-height: 14.4px;
  }

  .services-section .service-card.is-hovered .bubble.reply,
  .services-section .service-card.is-hovered .bubble.reply {
    opacity: 1;
    transform: translate3d(0, -55.2188px, 0);
  }

  .services-section .service-card.is-hovered .chat-input,
  .services-section .service-card.is-hovered .chat-input {
    opacity: 1;
    transform: none;
  }

  .services-section .chat-input {
    left: 5px;
    right: auto;
    top: 214px;
    bottom: auto;
    width: 290px;
    height: 41px;
    padding: 0 8px;
    border-radius: 50px;
    background: #ecedf1;
    box-shadow:
      inset -2px -2px 3px #fafbff,
      inset 2px 2px 3px rgba(166, 171, 189, 0.5);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .chat-input span {
    width: 212px;
    height: 8px;
    opacity: 1;
    background: #d4d6dc;
  }

  .services-section .chat-input strong {
    width: 32px;
    height: 32px;
    color: #6d7aff;
    background: transparent;
    box-shadow:
      -2px -2px 5px #fafbff,
      2px 2px 5px rgba(166, 171, 189, 0.25);
    font-size: 28px;
  }

  .services-section .chat-input strong svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .email-visual,
  .content-visual {
    margin-top: 0;
    padding: 0;
  }

  .services-section .email-visual {
    padding: 54px 0 0 25px;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .email-visual::before,
  .services-section .content-visual::before {
    position: absolute;
    background: #ecedf1;
    box-shadow:
      -3px -3px 6px #fafbff,
      3px 3px 6px rgba(166, 171, 189, 0.25);
    content: "";
    z-index: 0;
  }

  .services-section .email-visual::before {
    left: 10px;
    top: 39px;
    width: 280px;
    height: 203px;
    border-radius: 20px;
  }

  .services-section .email-visual > * {
    position: relative;
    z-index: 1;
    width: 250px;
  }

  .services-section .email-visual .mini-avatar-row {
    position: absolute;
    left: 25px;
    top: 53px;
    width: 140px;
    height: 30px;
    margin: 0;
  }

  .mini-avatar-row {
    margin-bottom: 8px;
  }

  .mini-avatar-row img,
  .mini-avatar-row strong {
    width: 30px;
    height: 30px;
    margin-left: -10px;
    border-width: 1px;
  }

  .mini-avatar-row img:first-child {
    margin-left: 0;
  }

  .mini-avatar-row strong {
    background: #6d7aff;
    font-size: 12px;
  }

  .services-section .email-visual > .form-label {
    position: absolute;
    left: 25px;
    margin: 0;
    font-size: 12px;
    line-height: 14px;
  }

  .services-section .email-visual > .form-label:nth-of-type(1) {
    top: 90px;
  }

  .services-section .email-visual > .form-label:nth-of-type(2) {
    top: 130px;
  }

  .form-line.medium {
    position: absolute;
    left: 25px;
    top: 114px;
    width: 250px;
    height: 5px;
    margin: 0;
    background:
      linear-gradient(90deg,
        #d4d4d4 0 47px,
        transparent 47px 52px,
        #d4d4d4 52px 99px,
        transparent 99px 104px,
        #d4d4d4 104px 198px,
        transparent 198px 100%);
    background-color: transparent;
  }

  .form-text-lines {
    position: absolute;
    left: 0;
    top: 95px;
    display: block;
    width: 250px;
    height: 45px;
    margin: 0;
  }

  .form-text-lines span {
    position: absolute;
    left: 0;
    display: block;
    width: 250px;
    height: 5px;
    border-radius: 25px;
    background-color: transparent;
  }

  .form-text-lines span:nth-child(1) {
    top: 0;
    background:
      linear-gradient(90deg, #d4d4d4 0 46px, transparent 46px 51px, #d4d4d4 51px 97px, transparent 97px 102px, #d4d4d4 102px 148px, transparent 148px 153px, #d4d4d4 153px 199px, transparent 199px 204px, #d4d4d4 204px 250px);
  }

  .form-text-lines span:nth-child(2) {
    top: 13px;
    background:
      linear-gradient(90deg, #d4d4d4 0 42px, transparent 42px 47px, #d4d4d4 47px 89px, transparent 89px 94px, #d4d4d4 94px 136px, transparent 136px 141px, #d4d4d4 141px 204px, transparent 204px 209px, #d4d4d4 209px 250px);
  }

  .form-text-lines span:nth-child(3) {
    top: 26px;
    background:
      linear-gradient(90deg, #d4d4d4 0 32px, transparent 32px 37px, #d4d4d4 37px 85px, transparent 85px 90px, #d4d4d4 90px 122px, transparent 122px 127px, #d4d4d4 127px 175px, transparent 175px 180px, #d4d4d4 180px 212px, transparent 212px 217px, #d4d4d4 217px 250px);
  }

  .form-text-lines span:nth-child(4) {
    top: 39px;
    background:
      linear-gradient(90deg, #d4d4d4 0 42px, transparent 42px 47px, #d4d4d4 47px 110px, transparent 110px 115px, #d4d4d4 115px 157px, transparent 157px 162px, #d4d4d4 162px 204px, transparent 204px 209px, #d4d4d4 209px 250px);
  }

  .form-text-lines span:nth-child(n + 6) {
    display: none;
  }

  .services-section .email-send {
    position: absolute;
    left: 240px;
    top: 200px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 25px;
    border-radius: 5px;
    color: #fff;
    background: #6d7aff;
    z-index: 2;
  }

  .services-section .email-send svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  .services-section .content-visual {
    padding: 34px 0 0 33px;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-visual::before {
    left: 12.5px;
    top: 33.5px;
    width: 275px;
    height: 226.5px;
    border-radius: 20px 20px 0 0;
  }

  .services-section .content-visual::after {
    position: absolute;
    left: 234px;
    top: 148px;
    z-index: 1;
    width: 60px;
    height: 56px;
    border-radius: 12px;
    background: #d4d4d4;
    content: "";
  }

  .services-section .content-visual > * {
    position: relative;
    z-index: 2;
    width: 245px;
  }

  .services-section .content-visual .browser-frame {
    position: absolute;
    left: 31px;
    top: 52px;
    width: 240px;
    height: 6px;
    margin: 0;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-visual .browser-frame span {
    display: none;
  }

  .services-section .mini-avatar-row img,
  .services-section .mini-avatar-row strong,
  .services-section .content-layout > div:first-child {
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-layout {
    position: absolute;
    left: 32px;
    top: 68px;
    display: block;
    width: 245px;
    height: 112px;
  }

  .services-section .content-layout > div:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 56px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child {
    position: absolute;
    left: 73px;
    top: 3px;
    display: block;
    width: 166px;
    height: 95px;
  }

  .services-section .content-layout > div:last-child span {
    position: absolute;
    height: 6px;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-layout > div:last-child span:nth-child(1) {
    left: 0;
    top: 0;
    width: 102px;
  }

  .services-section .content-layout > div:last-child span:nth-child(2) {
    left: 0;
    top: 17px;
    width: 120px;
  }

  .services-section .content-layout > div:last-child span:nth-child(3) {
    left: 0;
    top: 34px;
    width: 166px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 62px,
      transparent 62px 68px,
      #d4d4d4 68px 132px,
      transparent 132px 138px,
      #d4d4d4 138px 153px,
      transparent 153px 100%
    );
  }

  .services-section .content-layout > div:last-child span:nth-child(4) {
    left: 0;
    top: 50px;
    width: 166px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 32px,
      transparent 32px 37px,
      #d4d4d4 37px 60px,
      transparent 60px 66px,
      #d4d4d4 66px 122px,
      transparent 122px 126px,
      #d4d4d4 126px 150px,
      transparent 150px 100%
    );
  }

  .services-section .content-lines {
    position: absolute;
    left: 31px;
    top: 148px;
    display: block;
    width: 240px;
    height: 85px;
    margin: 0;
  }

  .services-section .content-lines span {
    position: absolute;
    height: 6px;
    border-radius: 25px;
    background: #d4d4d4;
  }

  .services-section .content-lines::before {
    position: absolute;
    left: 0;
    top: 47px;
    width: 170px;
    height: 6px;
    border-radius: 25px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 43px,
      transparent 43px 50.5px,
      #d4d4d4 50.5px 70.5px,
      transparent 70.5px 75px,
      #d4d4d4 75px 122px,
      transparent 122px 130px,
      #d4d4d4 130px 170px
    );
    content: "";
  }

  .services-section .content-lines span:nth-child(1) {
    left: 0;
    top: 0;
    width: 170px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 101px,
      transparent 101px 106px,
      #d4d4d4 106px 131px,
      transparent 131px 135.5px,
      #d4d4d4 135.5px 170px
    );
  }

  .services-section .content-lines span:nth-child(2) {
    left: 0;
    top: 15px;
    width: 170px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 100px,
      transparent 100px 107.5px,
      #d4d4d4 107.5px 170px
    );
  }

  .services-section .content-lines span:nth-child(3) {
    left: 0;
    top: 31px;
    width: 170px;
    background: linear-gradient(
      90deg,
      #d4d4d4 0 25px,
      transparent 25px 35px,
      #d4d4d4 35px 134px,
      transparent 134px 144px,
      #d4d4d4 144px 170px
    );
  }

  .services-section .content-lines span:nth-child(4) {
    left: 0;
    top: 70px;
    width: 240px;
  }

  .services-section .form-line,
  .services-section .form-text-lines span,
  .services-section .content-layout span,
  .services-section .content-lines span {
    transform-origin: left center;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 720ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card.is-hovered .email-visual,
  .services-section .service-card.is-hovered .email-visual {
    transform: none;
  }

  .services-section .service-card.is-hovered .mini-avatar-row img,
  .services-section .service-card.is-hovered .mini-avatar-row img,
  .services-section .service-card.is-hovered .mini-avatar-row strong,
  .services-section .service-card.is-hovered .mini-avatar-row strong {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-line,
  .services-section .service-card.is-hovered .form-line {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n),
  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n) {
    transform: none;
  }

  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n + 1),
  .services-section .service-card.is-hovered .form-text-lines span:nth-child(2n + 1) {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-visual,
  .services-section .service-card.is-hovered .content-visual {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-layout > div:first-child,
  .services-section .service-card.is-hovered .content-layout > div:first-child {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-layout span:nth-child(1),
  .services-section .service-card.is-hovered .content-layout span:nth-child(1),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n) {
    transform: none;
  }

  .services-section .service-card.is-hovered .content-layout span:nth-child(2),
  .services-section .service-card.is-hovered .content-layout span:nth-child(2),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n + 1),
  .services-section .service-card.is-hovered .content-lines span:nth-child(2n + 1) {
    transform: none;
  }

  .browser-frame {
    gap: 7px;
    margin-bottom: 22px;
  }

  .browser-frame span {
    width: 10px;
    height: 10px;
  }

  .content-layout {
    grid-template-columns: 78px 1fr;
    gap: 14px;
  }

  .content-layout > div:first-child {
    height: 78px;
  }

  .content-layout > div:last-child,
  .content-lines {
    gap: 8px;
  }

  .content-layout span,
  .content-lines span {
    height: 8px;
  }

  .content-lines {
    margin-top: 14px;
  }

  .benefit-grid article {
    min-height: 288px;
  }

  .about-section {
    gap: 32px;
  }

  .about-visual {
    min-height: 360px;
  }

  .signal-card {
    left: 22px;
    top: 30px;
    width: calc(100% - 80px);
  }

  .signal-card.small {
    right: 22px;
    width: calc(100% - 110px);
  }

  .price {
    font-size: 38px;
  }

  .contact-section {
    width: min(100% - 28px, 1120px);
    padding: 66px 20px;
  }
}

/* Services fidelity: Framer renders outreach lines as separate rounded pills. */
.services-section .email-visual .form-line.medium,
.services-section .email-visual .form-text-lines span {
  background: transparent !important;
}

.services-section .email-visual .form-line.medium .seg,
.services-section .email-visual .form-text-lines .seg {
  position: absolute;
  display: block;
  height: 10px;
  border-radius: 25px;
  background: #d4d4d4;
  pointer-events: none;
}

.services-section .email-visual .form-line.medium .seg:nth-child(1) { left: 0; width: 77px; }
.services-section .email-visual .form-line.medium .seg:nth-child(2) { left: 82px; width: 77px; }
.services-section .email-visual .form-line.medium .seg:nth-child(3) { left: 164px; width: 154px; }
.services-section .email-visual .form-line.medium .seg:nth-child(4) { left: 323px; width: 77px; opacity: 0; }

.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(1),
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(2),
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(3),
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(4),
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(5) {
  width: 76px;
}

.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(1) { left: 0; }
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(2) { left: 81px; }
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(3) { left: 162px; }
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(4) { left: 243px; }
.services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(5) { left: 324px; }

.services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(1) { left: 0; width: 69.1px; }
.services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(2) { left: 74px; width: 69.1px; }
.services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(3) { left: 148.1px; width: 69.1px; }
.services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(4) { left: 222.2px; width: 103.6px; }
.services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(5) { left: 330.9px; width: 69.1px; }

.services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(1) { left: 0; width: 53.6px; }
.services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(2) { left: 58.5px; width: 80.4px; }
.services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(3) { left: 143.9px; width: 53.6px; }
.services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(4) { left: 202.4px; width: 80.4px; }
.services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(5) { left: 287.8px; width: 53.6px; }
.services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(6) { left: 346.4px; width: 53.6px; }

.services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(1) { left: 0; width: 69.1px; }
.services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(2) { left: 74px; width: 103.6px; }
.services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(3) { left: 182.7px; width: 69.1px; }
.services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(4) { left: 256.8px; width: 69.1px; }
.services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(5) { left: 330.9px; width: 69.1px; }

@media (max-width: 809px) {
  .services-section .email-visual .form-line.medium .seg,
  .services-section .email-visual .form-text-lines .seg {
    height: 5px;
  }

  .services-section .email-visual .form-line.medium .seg:nth-child(1) { left: 0; width: 47px; }
  .services-section .email-visual .form-line.medium .seg:nth-child(2) { left: 52px; width: 47px; }
  .services-section .email-visual .form-line.medium .seg:nth-child(3) { left: 104px; width: 94px; }
  .services-section .email-visual .form-line.medium .seg:nth-child(4) { left: 203px; width: 47px; }

  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(1),
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(2),
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(3),
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(4),
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(5) {
    width: 46px;
  }

  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(1) { left: 0; }
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(2) { left: 51px; }
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(3) { left: 102px; }
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(4) { left: 153px; }
  .services-section .email-visual .form-text-lines span:nth-child(1) .seg:nth-child(5) { left: 204px; }

  .services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(1) { left: 0; width: 41.8px; }
  .services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(2) { left: 46.8px; width: 41.8px; }
  .services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(3) { left: 93.6px; width: 41.8px; }
  .services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(4) { left: 140.5px; width: 62.7px; }
  .services-section .email-visual .form-text-lines span:nth-child(2) .seg:nth-child(5) { left: 208.2px; width: 41.8px; }

  .services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(1) { left: 0; width: 32.1px; }
  .services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(2) { left: 37.1px; width: 48.2px; }
  .services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(3) { left: 90.4px; width: 32.1px; }
  .services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(4) { left: 127.5px; width: 48.2px; }
  .services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(5) { left: 180.7px; width: 32.1px; }
  .services-section .email-visual .form-text-lines span:nth-child(3) .seg:nth-child(6) { left: 217.9px; width: 32.1px; }

  .services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(1) { left: 0; width: 41.8px; }
  .services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(2) { left: 46.8px; width: 62.7px; }
  .services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(3) { left: 114.5px; width: 41.8px; }
  .services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(4) { left: 161.4px; width: 41.8px; }
  .services-section .email-visual .form-text-lines span:nth-child(4) .seg:nth-child(5) { left: 208.2px; width: 41.8px; }
}

/* Services fidelity: content browser rows use separate rounded pills. */
.services-section .content-layout span,
.services-section .content-lines span {
  background: transparent !important;
}

.services-section .content-lines::before {
  display: none;
}

.services-section .content-layout .seg,
.services-section .content-lines .seg {
  position: absolute;
  display: block;
  height: 11px;
  border-radius: 25px;
  background: #d4d4d4;
  pointer-events: none;
}

.services-section .content-layout > div:last-child span:nth-child(1) .seg:nth-child(1) { left: 0; width: 171px; }
.services-section .content-layout > div:last-child span:nth-child(1) .seg:nth-child(2) { left: 180.5px; width: 25px; }
.services-section .content-layout > div:last-child span:nth-child(1) .seg:nth-child(3) { left: 214.5px; width: 34px; }

.services-section .content-layout > div:last-child span:nth-child(2) .seg:nth-child(1) { left: 0.5px; width: 200px; }
.services-section .content-layout > div:last-child span:nth-child(2) .seg:nth-child(2) { left: 209.5px; width: 39px; }

.services-section .content-layout > div:last-child span:nth-child(3) .seg:nth-child(1) { left: 0.5px; width: 102px; }
.services-section .content-layout > div:last-child span:nth-child(3) .seg:nth-child(2) { left: 109.5px; width: 106px; }
.services-section .content-layout > div:last-child span:nth-child(3) .seg:nth-child(3) { left: 223.5px; width: 25px; }

.services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(1) { left: 0.5px; width: 54px; }
.services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(2) { left: 61.5px; width: 39px; }
.services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(3) { left: 109.5px; width: 95px; }
.services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(4) { left: 209.5px; width: 39px; }

.services-section .content-lines span:nth-child(1) .seg:nth-child(1) { left: 0; width: 171px; }
.services-section .content-lines span:nth-child(1) .seg:nth-child(2) { left: 179.4px; width: 25px; }
.services-section .content-lines span:nth-child(1) .seg:nth-child(3) { left: 214px; width: 34px; }

.services-section .content-lines span:nth-child(2) .seg:nth-child(1) { left: 0; width: 200px; }
.services-section .content-lines span:nth-child(2) .seg:nth-child(2) { left: 209px; width: 39px; }

.services-section .content-lines span:nth-child(3) .seg:nth-child(1) { left: 0; width: 102px; }
.services-section .content-lines span:nth-child(3) .seg:nth-child(2) { left: 109px; width: 106px; }
.services-section .content-lines span:nth-child(3) .seg:nth-child(3) { left: 223px; width: 25px; }

.services-section .content-lines span:nth-child(4) {
  top: 78px;
  width: 250px;
}

.services-section .content-lines span:nth-child(4) .seg:nth-child(1) { left: 0; width: 54px; }
.services-section .content-lines span:nth-child(4) .seg:nth-child(2) { left: 61px; width: 39px; }
.services-section .content-lines span:nth-child(4) .seg:nth-child(3) { left: 109px; width: 95px; }
.services-section .content-lines span:nth-child(4) .seg:nth-child(4) { left: 209px; width: 39px; }

.services-section .content-lines span:nth-child(5) {
  position: absolute;
  left: 0;
  top: 111px;
  display: block;
  width: 375px;
  height: 11px;
}

.services-section .content-lines span:nth-child(5) .seg:nth-child(1) { left: 0; width: 375px; }

@media (max-width: 809px) {
  .services-section .content-hover-sheet,
  .services-section .service-card.is-hovered .content-hover-sheet,
  .services-section .service-card.is-hovered .content-hover-sheet {
    opacity: 0;
  }

  .services-section .content-layout .seg,
  .services-section .content-lines .seg {
    height: 6px;
  }

  .services-section .content-layout > div:last-child span:nth-child(1) .seg:nth-child(1) { left: 0; width: 101px; }
  .services-section .content-layout > div:last-child span:nth-child(1) .seg:nth-child(2) { left: 104px; width: 25px; }
  .services-section .content-layout > div:last-child span:nth-child(1) .seg:nth-child(3) { left: 132.5px; width: 34px; }

  .services-section .content-layout > div:last-child span:nth-child(2) .seg:nth-child(1) { left: 0.5px; width: 100px; }
  .services-section .content-layout > div:last-child span:nth-child(2) .seg:nth-child(2) { left: 106px; width: 61px; }

  .services-section .content-layout > div:last-child span:nth-child(3) .seg:nth-child(1) { left: 0; width: 25px; }
  .services-section .content-layout > div:last-child span:nth-child(3) .seg:nth-child(2) { left: 34px; width: 99px; }
  .services-section .content-layout > div:last-child span:nth-child(3) .seg:nth-child(3) { left: 142px; width: 25px; }

  .services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(1) { left: 0.5px; width: 43px; }
  .services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(2) { left: 47.5px; width: 20px; }
  .services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(3) { left: 74.5px; width: 47px; }
  .services-section .content-layout > div:last-child span:nth-child(4) .seg:nth-child(4) { left: 127.5px; width: 39px; }

  .services-section .content-lines span:nth-child(1) .seg:nth-child(1) { left: 0; width: 101px; }
  .services-section .content-lines span:nth-child(1) .seg:nth-child(2) { left: 106px; width: 25px; }
  .services-section .content-lines span:nth-child(1) .seg:nth-child(3) { left: 135.5px; width: 34px; }

  .services-section .content-lines span:nth-child(2) .seg:nth-child(1) { left: 0.5px; width: 100px; }
  .services-section .content-lines span:nth-child(2) .seg:nth-child(2) { left: 108px; width: 61px; }

  .services-section .content-lines span:nth-child(3) .seg:nth-child(1) { left: 0; width: 25px; }
  .services-section .content-lines span:nth-child(3) .seg:nth-child(2) { left: 35px; width: 99px; }
  .services-section .content-lines span:nth-child(3) .seg:nth-child(3) { left: 144px; width: 25px; }

  .services-section .content-lines span:nth-child(4) {
    top: 47px;
    width: 170px;
  }

  .services-section .content-lines span:nth-child(4) .seg:nth-child(1) { left: 0; width: 43px; }
  .services-section .content-lines span:nth-child(4) .seg:nth-child(2) { left: 50.5px; width: 20px; }
  .services-section .content-lines span:nth-child(4) .seg:nth-child(3) { left: 75px; width: 47px; }
  .services-section .content-lines span:nth-child(4) .seg:nth-child(4) { left: 130px; width: 39px; }

  .services-section .content-lines span:nth-child(5) {
    top: 70px;
    width: 240px;
    height: 6px;
  }

  .services-section .content-lines span:nth-child(5) .seg:nth-child(1) { left: 0.5px; width: 240px; }
}

/* Services fidelity: match the cropped Content hover preview from Framer. */
.services-section .content-visual::after,
.services-section .content-lines span:nth-child(5) {
  display: none;
  content: none;
}

/* Services fidelity: soften the Content front browser mockup to match Framer's visual weight. */
.services-section .content-visual .browser-frame,
.services-section .content-layout .seg,
.services-section .content-lines .seg {
  background: #d4d4d4;
}

.services-section .content-layout > div:first-child,
.services-section .content-visual::after {
  background: #d4d4d4;
}

@media (min-width: 810px) {
  .services-section .content-hover-icons {
    transition: transform 300ms cubic-bezier(0.44, 0, 0.56, 1.08);
  }

  .services-section .content-visual,
  .services-section .content-icon,
  .services-section .content-hover-sheet,
  .services-section .content-layout span,
  .services-section .content-lines span {
    transition:
      opacity 300ms cubic-bezier(0.44, 0, 0.56, 1.08),
      transform 300ms cubic-bezier(0.44, 0, 0.56, 1.08);
  }

  .services-section .content-hover-sheet.sheet-back,
  .services-section .content-hover-sheet.sheet-mid {
    transition:
      opacity 300ms cubic-bezier(0.44, 0, 0.56, 1.08),
      transform 300ms cubic-bezier(0.44, 0, 0.56, 1.08),
      border-radius 300ms cubic-bezier(0.44, 0, 0.56, 1.08);
  }

  .services-section .service-card.is-hovered .content-visual,
  .services-section .service-card.is-hovered .content-visual {
    animation: servicesContentFrontLift 260ms linear both;
  }

  .services-section .service-card.is-hovered .content-icon,
  .services-section .service-card.is-hovered .content-icon {
    animation: servicesContentIconLift 260ms linear both;
    animation-delay: 35ms;
  }

  .services-section .content-icon-linkedin {
    --icon-hidden-x: 198px;
    --icon-hidden-y: 273px;
    --icon-mid-x: 155px;
    --icon-mid-y: 190px;
    --icon-fast-x: 8px;
    --icon-fast-y: -145px;
    --icon-final-x: 2px;
    --icon-final-y: -152px;
    --icon-hidden-rotate: -10deg;
    --icon-final-rotate: -15deg;
    transform: translate3d(198px, 273px, 0) scale(0.98) rotate(-10deg);
  }

  .services-section .content-icon-video {
    --icon-hidden-x: 76px;
    --icon-hidden-y: 270px;
    --icon-mid-x: 55px;
    --icon-mid-y: 185px;
    --icon-fast-x: 1px;
    --icon-fast-y: -165px;
    --icon-final-x: 0px;
    --icon-final-y: -178px;
    --icon-hidden-rotate: -7deg;
    --icon-final-rotate: -10deg;
    transform: translate3d(76px, 270px, 0) scale(0.98) rotate(-7deg);
  }

  .services-section .content-icon-page {
    --icon-hidden-x: -64px;
    --icon-hidden-y: 271px;
    --icon-mid-x: -45px;
    --icon-mid-y: 185px;
    --icon-fast-x: 0px;
    --icon-fast-y: -165px;
    --icon-final-x: 0px;
    --icon-final-y: -178px;
    --icon-hidden-rotate: 8deg;
    --icon-final-rotate: 10deg;
    transform: translate3d(-64px, 271px, 0) scale(0.98) rotate(8deg);
  }

  .services-section .content-icon-twitter {
    --icon-hidden-x: -179px;
    --icon-hidden-y: 273px;
    --icon-mid-x: -135px;
    --icon-mid-y: 190px;
    --icon-fast-x: 4px;
    --icon-fast-y: -145px;
    --icon-final-x: 4px;
    --icon-final-y: -152px;
    --icon-hidden-rotate: 11deg;
    --icon-final-rotate: 15deg;
    transform: translate3d(-179px, 273px, 0) scale(0.98) rotate(11deg);
  }
}

@keyframes servicesContentFrontLift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  20% {
    transform: translate3d(0, -8px, 0);
  }

  40% {
    transform: translate3d(0, 35px, 0);
  }

  60% {
    transform: translate3d(0, 189px, 0);
  }

  78%,
  100% {
    transform: translate3d(0, 181px, 0);
  }
}

@keyframes servicesContentIconLift {
  0%,
  22% {
    opacity: 0;
    transform: translate3d(var(--icon-hidden-x), var(--icon-hidden-y), 0) scale(0.98) rotate(var(--icon-hidden-rotate));
  }

  40% {
    opacity: 0.22;
    transform: translate3d(var(--icon-mid-x), var(--icon-mid-y), 0) scale(0.99) rotate(var(--icon-hidden-rotate));
  }

  60% {
    opacity: 0.94;
    transform: translate3d(var(--icon-fast-x), var(--icon-fast-y), 0) scale(1) rotate(var(--icon-final-rotate));
  }

  78%,
  100% {
    opacity: 1;
    transform: translate3d(var(--icon-final-x), var(--icon-final-y), 0) scale(1) rotate(var(--icon-final-rotate));
  }
}

@media (max-width: 809px) {
  .services-section .content-visual::after {
    display: block;
    content: "";
    left: 213px;
    top: 148px;
    width: 60px;
    height: 56px;
    border-radius: 9px;
    background: rgba(212, 212, 212, 0.72);
  }

  .services-section .content-lines span:nth-child(5) {
    display: block;
  }
}

@media (min-width: 810px) and (max-width: 1349px) {
  .services-section .content-visual {
    overflow: visible;
    isolation: isolate;
  }

  .services-section .content-hover-icons {
    position: absolute;
    left: calc(50% + 5px);
    top: -6px;
    z-index: 5;
    display: block;
    width: 425px;
    height: 90px;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .services-section .content-icon {
    position: absolute;
    top: 0;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: #222;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    opacity: 0;
  }

  .services-section .content-icon svg {
    display: block;
    width: 40px;
    height: 40px;
    fill: currentColor;
    stroke: none;
  }

  .services-section .content-icon-linkedin {
    left: -25px;
    transform: translate3d(102px, 44px, 0) scale(0.98) rotate(-10deg);
  }

  .services-section .content-icon-video {
    left: 95px;
    transform: translate3d(0, 44px, 0) scale(0.98) rotate(-7deg);
  }

  .services-section .content-icon-twitter {
    left: 353px;
    transform: translate3d(-102px, 44px, 0) scale(0.98) rotate(11deg);
  }

  .services-section .service-card.is-hovered .content-hover-icons,
  .services-section .service-card.is-hovered .content-hover-icons {
    transform: translate(-50%, -27px);
  }

  .services-section .service-card.is-hovered .content-icon,
  .services-section .service-card.is-hovered .content-icon {
    opacity: 1;
  }

  .services-section .service-card.is-hovered .content-icon-linkedin,
  .services-section .service-card.is-hovered .content-icon-linkedin {
    transform: translate3d(2px, -64px, 0) scale(1) rotate(-15deg);
  }

  .services-section .service-card.is-hovered .content-icon-video,
  .services-section .service-card.is-hovered .content-icon-video {
    transform: translate3d(0, -89px, 0) scale(1) rotate(-10deg);
  }

  .services-section .service-card.is-hovered .content-icon-twitter,
  .services-section .service-card.is-hovered .content-icon-twitter {
    transform: translate3d(4px, -64px, 0) scale(1) rotate(15deg);
  }

  .services-section .content-visual > .content-hover-sheet {
    position: absolute;
    display: block;
    z-index: -1;
    border-radius: 25px 25px 0 0;
    background: #ecedf1;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 300ms cubic-bezier(0.3, 0.05, 0.6, 1.1),
      transform 300ms cubic-bezier(0.3, 0.05, 0.6, 1.1);
  }

  .services-section .content-hover-sheet.sheet-back {
    left: 183px;
    top: 88px;
    width: 364.3px;
    height: 300px;
    box-shadow:
      -5px -5px 10px rgba(250, 251, 255, 0.74),
      5px 5px 10px rgba(166, 171, 189, 0.14);
  }

  .services-section .content-hover-sheet.sheet-mid {
    left: 169px;
    top: 88px;
    width: 392.3px;
    height: 323.1px;
    box-shadow:
      -5px -5px 10px rgba(250, 251, 255, 0.82),
      5px 5px 10px rgba(166, 171, 189, 0.16);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back {
    opacity: 1;
    transform: translate3d(0, -55px, 0);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid {
    opacity: 1;
    transform: translate3d(0, -27px, 0);
  }

  .services-section .service-card.is-hovered .content-visual,
  .services-section .service-card.is-hovered .content-visual {
    transform: translate3d(0, 180px, 0);
  }
}

@media (min-width: 810px) {
  .services-section .content-icon-page {
    display: flex;
  }

  .services-section .content-visual::after {
    display: block;
    content: "";
    background: rgba(212, 212, 212, 0.5);
    transition: opacity 260ms cubic-bezier(0.3, 0.05, 0.6, 1.1);
  }

  .services-section .content-lines span:nth-child(5) {
    display: block;
  }

  .services-section .content-visual {
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .services-section .content-hover-sheet.sheet-back {
    opacity: 0;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back {
    opacity: 1;
  }

  .services-section .content-hover-sheet.sheet-mid {
    opacity: 0;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid {
    opacity: 1;
  }

  .services-section .content-lines .seg {
    background: rgba(212, 212, 212, 0.48);
  }

  .services-section .service-card.is-hovered .content-lines,
  .services-section .service-card.is-hovered .content-lines,
  .services-section .service-card.is-hovered .content-visual::after,
  .services-section .service-card.is-hovered .content-visual::after {
    opacity: 0;
  }

  .services-section .content-hover-sheet.sheet-back,
  .services-section .content-hover-sheet.sheet-mid {
    left: 0;
    top: 0;
    width: 425px;
    height: 350px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.000833333, 0, 0, 0, 1);
    transition: all 300ms cubic-bezier(0.3, 0.05, 0.6, 1.1);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back {
    border-radius: 5.88235% 5.88235% 0 0 / 7.14286% 7.14286% 0 0;
    transform: translate3d(0, -55px, 0);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid {
    border-radius: 5.88235% 5.88235% 0 0 / 7.14286% 7.14286% 0 0;
    transform: translate3d(0, -27px, 0);
  }
}

@media (min-width: 810px) and (max-width: 1349px) {
  .services-section .content-hover-icons {
    transform: translateX(calc(-50% - 4px));
  }

  .services-section .service-card.is-hovered .content-hover-icons,
  .services-section .service-card.is-hovered .content-hover-icons {
    transform: translate(calc(-50% - 4px), -27px);
  }

  .services-section .content-hover-sheet.sheet-back {
    left: 183px;
    top: 88px;
    width: 364.3px;
    height: 300px;
  }

  .services-section .content-hover-sheet.sheet-mid {
    left: 169px;
    top: 88px;
    width: 392.3px;
    height: 323.1px;
  }

  .services-section .content-icon-page {
    left: 236px;
    transform: translate3d(0, 44px, 0) scale(0.98) rotate(8deg);
  }

  .services-section .service-card.is-hovered .content-icon-page,
  .services-section .service-card.is-hovered .content-icon-page {
    transform: translate3d(0, -89px, 0) scale(1) rotate(10deg);
  }
}

/* Services fidelity: Workflow connectors use Framer's muted grey rails. */
.services-section .automation-visual::before,
.services-section .automation-visual::after,
.services-section .openai-node::before {
  width: 300px;
  height: 9px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(194, 194, 194) 50.45%, rgba(171, 171, 171, 0) 100%) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(194, 194, 194) 50.45%, rgba(171, 171, 171, 0) 100%) 0 7px / 100% 2px no-repeat !important;
}

.services-section .automation-visual::before,
.services-section .automation-visual::after {
  z-index: 0;
}

.services-section .automation-visual .app-node,
.services-section .automation-visual .openai-node {
  z-index: 4;
  background: #ecedf1;
  isolation: isolate;
  overflow: visible;
}

.services-section .automation-visual .openai-node {
  z-index: 5;
}

.services-section .automation-visual .app-node > *,
.services-section .automation-visual .openai-node > * {
  position: relative;
  z-index: 2;
}

.services-section .automation-visual::before {
  transform: translateX(-50%) translateY(-4.5px) rotate(0deg);
}

.services-section .automation-visual::after {
  transform: translateX(-50%) translateY(-4.5px) rotate(55deg);
}

.services-section .openai-node::before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-55deg);
  transform-origin: center;
}

.services-section .app-node {
  z-index: 4;
  background: #ecedf1;
  isolation: isolate;
  overflow: visible;
}

.services-section .openai-node {
  z-index: 5;
  background: #ecedf1;
}

.services-section .app-node::after,
.services-section .openai-node::after {
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 16px;
  background: #ecedf1;
  content: "";
  pointer-events: none;
}

.services-section .node-slack::after,
.services-section .node-air::after {
  inset: -11px;
  border-radius: 20px;
}

.services-section .workflow-pulse {
  display: block;
  z-index: 1;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgba(109, 122, 255, var(--pulse-bg, 0.62));
  opacity: 0;
  animation: none;
  transform: rotate(var(--pulse-rotate));
  transition: opacity 260ms ease;
}

.services-section .workflow-pulse::after {
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 100%;
  height: 2px;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.services-section .workflow-pulse.particle-1 { --anchor-x: -20px; --anchor-y: -38px; --pulse-rotate: 56deg; --pulse-bg: 0.78; }
.services-section .workflow-pulse.particle-2 { --anchor-x: -9px; --anchor-y: -38px; --pulse-rotate: -56deg; --pulse-bg: 0.78; }
.services-section .workflow-pulse.particle-3 { --anchor-x: -61px; --anchor-y: -4px; --pulse-rotate: 0deg; --pulse-bg: 0.9; }
.services-section .workflow-pulse.particle-4 { --anchor-x: 36px; --anchor-y: -4px; --pulse-rotate: 0deg; --pulse-bg: 0.9; }
.services-section .workflow-pulse.particle-5 { --anchor-x: -22px; --anchor-y: 36px; --pulse-rotate: -56deg; --pulse-bg: 0.76; }
.services-section .workflow-pulse.particle-6 { --anchor-x: -4px; --anchor-y: 36px; --pulse-rotate: 56deg; --pulse-bg: 0.76; }
.services-section .workflow-pulse.particle-1,
.services-section .workflow-pulse.particle-5 {
  --pulse-near: 32px;
  --pulse-far: -104px;
  --pulse-delay: -230ms;
  animation-name: workflowDiagonalDashTravel;
  animation-duration: 780ms;
  animation-timing-function: linear;
}

.services-section .workflow-pulse.particle-2,
.services-section .workflow-pulse.particle-6 {
  --pulse-near: -32px;
  --pulse-far: 104px;
  --pulse-delay: -230ms;
  animation-name: workflowDiagonalDashTravel;
  animation-duration: 780ms;
  animation-timing-function: linear;
}

.services-section .workflow-pulse.particle-3 {
  --anchor-x: -12px;
  --pulse-delay: -480ms;
  --pulse-travel: -86px;
  width: 12px;
  animation-name: workflowHorizontalDashTravel;
  animation-duration: 780ms;
  animation-timing-function: linear;
}

.services-section .workflow-pulse.particle-4 {
  --anchor-x: -12px;
  --pulse-delay: -480ms;
  --pulse-travel: 86px;
  width: 12px;
  animation-name: workflowHorizontalDashTravel;
  animation-duration: 780ms;
  animation-timing-function: linear;
}

.services-section .workflow-pulse {
  animation: none;
}

@media (max-width: 809px) {
  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-5 {
    --pulse-near: 10px;
    --pulse-far: -42px;
    --pulse-bg: 0.42;
  }

  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-6 {
    --pulse-near: -10px;
    --pulse-far: 42px;
    --pulse-bg: 0.42;
  }

  .services-section .workflow-pulse.particle-3 {
    --pulse-travel: -34px;
    --pulse-bg: 0.74;
  }

  .services-section .workflow-pulse.particle-4 {
    --pulse-travel: 34px;
    --pulse-bg: 0.74;
  }
}

.services-section .workflow-pulse.particle-7,
.services-section .workflow-pulse.particle-8,
.services-section .workflow-pulse.workflow-bar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .services-section .workflow-pulse {
    opacity: 0 !important;
    animation: none !important;
  }
}

@media (max-width: 809px) and (prefers-reduced-motion: no-preference) {
  .services-section .workflow-pulse:not(.workflow-bar) {
    opacity: 1;
    animation: none !important;
  }
}

@keyframes workflowDashTravel {
  0%,
  10% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-start, 86px), 0, 0);
  }

  22%,
  54% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-end, 8px), 0, 0);
  }

  66% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-end, 8px), 0, 0);
  }

  78%,
  88% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-start, 86px), 0, 0);
  }

  100% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-start, 86px), 0, 0);
  }
}

@keyframes workflowHorizontalDashTravel {
  0% {
    opacity: 0;
    transform: translate3d(var(--pulse-travel), 0, 0);
  }

  22% {
    opacity: 0.18;
  }

  44%,
  56% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes workflowDiagonalDashTravel {
  0% {
    opacity: 0;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-far), 0, 0);
  }

  22% {
    opacity: 0.18;
  }

  44%,
  56% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-near), 0, 0);
  }

  100% {
    opacity: 0;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-near), 0, 0);
  }
}

/* Services fidelity: Framer chatbot input is an empty pill with only the send icon. */
.services-section .chat-input span {
  opacity: 0;
}

.services-section .content-visual::before {
  box-sizing: border-box;
  border: 1px solid rgba(85, 88, 96, 0.15);
  border-bottom: 0;
  transition: height 260ms cubic-bezier(0.3, 0.05, 0.6, 1.1);
}

@media (max-width: 809px) {
  section.services-section {
    width: 100%;
    margin-top: -29px;
    padding-bottom: 50px;
    scroll-margin-top: 0;
  }

  html.client-width-narrow .services-section {
    width: var(--client-width) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .services-section .section-heading {
    width: 350px;
    max-width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-3px);
  }

  .services-grid {
    position: relative;
    left: 0;
    width: 350px;
    max-width: calc(var(--client-width, 100vw) - 35px);
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .services-section .section-heading h2 {
    width: 350px;
    max-width: 100%;
  }

  .services-section .section-heading p {
    width: 315px;
  }

  .services-section .section-chip {
    padding: 0 19px;
    font-weight: 400;
    transform: translateY(16px);
  }

  .services-section .service-card,
  .services-section .service-large,
    .services-section .service-card:nth-child(1),
    .services-section .service-card:nth-child(3),
    .services-section .service-card:nth-child(4) {
    width: 100%;
    max-width: 100%;
    height: 426.6px;
    min-height: 426.6px;
  }

  .services-section .service-card:nth-child(2) {
    height: 402.6px;
    min-height: 402.6px;
  }

  .services-section .content-visual::before {
    border-color: rgba(85, 88, 96, 0.22);
  }
}

@media (min-width: 390px) and (max-width: 809px) {
  .services-section .service-card:nth-child(1),
  .services-section .service-card:nth-child(3) {
    height: 402.6px;
    min-height: 402.6px;
  }

  .services-section .service-card:nth-child(1) .service-copy,
  .services-section .service-card:nth-child(3) .service-copy {
    transform: none;
  }

  .client-width-narrow .services-section .service-card:nth-child(1),
  .client-width-narrow .services-section .service-card:nth-child(3) {
    height: 426.6px;
    min-height: 426.6px;
  }

  .client-width-narrow .services-section .service-card:nth-child(1) .service-copy,
  .client-width-narrow .services-section .service-card:nth-child(3) .service-copy {
    transform: none !important;
  }
}

@media (min-width: 391px) and (max-width: 809px) {
  .services-section .section-heading {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-bottom: 96px;
  }

  .services-section .section-chip {
    transform: translateY(30px);
  }

  .services-section .section-heading h2 {
    width: 100%;
    font-size: 29px;
    line-height: 1.4;
    transform: translateY(18px);
  }

  .services-section .section-heading p {
    width: calc(100vw - 102px);
    font-size: 16px;
    line-height: 1.2;
    transform: translateY(14px);
  }

  .services-grid {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .services-section .service-card,
  .services-section .service-large,
  .services-section .service-card:nth-child(1),
  .services-section .service-card:nth-child(2),
  .services-section .service-card:nth-child(3),
  .services-section .service-card:nth-child(4) {
    height: 378.6px;
    min-height: 378.6px;
  }
}

.services-section .service-card p {
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
}

/* Services mobile fidelity: keep Workflow rails subtle and inside the icon cluster. */
@media (max-width: 809px) {
  .services-section {
    margin-left: 0 !important;
  }

  .services-section .automation-visual::before,
  .services-section .automation-visual::after,
  .services-section .openai-node::before {
    width: 220px !important;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(194, 194, 194) 50.45%, rgba(171, 171, 171, 0) 100%) 0 0 / 100% 2px no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(194, 194, 194) 50.45%, rgba(171, 171, 171, 0) 100%) 0 7px / 100% 2px no-repeat !important;
  }
}

.services-section .service-card .bubble {
  font-family: Poppins, "Poppins Placeholder", sans-serif;
}

.services-section .service-card:hover,
.services-section .service-card.is-hovered {
  transform: none;
}

.services-section .service-card .service-copy {
  position: relative;
  z-index: 3;
}

@media (min-width: 810px) {
  .services-section .service-card:nth-child(4) {
    position: relative;
    overflow: hidden;
  }

  .services-section .service-card:nth-child(4)::after {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 427px;
    z-index: 2;
    height: 112px;
    background: #ecedf1;
    opacity: 0;
    pointer-events: none;
    content: "";
    transition: opacity 180ms ease;
  }

  .services-section .service-card:nth-child(4):hover::after,
  .services-section .service-card:nth-child(4).is-hovered::after {
    opacity: 1;
  }
}

@media (max-width: 389px) {
  .services-section .service-card:nth-child(1) .service-copy,
  .services-section .service-card:nth-child(3) .service-copy {
    transform: none !important;
  }
}

@media (max-width: 809px) {
  .services-section .service-copy p {
    color: #4d4d4d;
  }

  .services-section .bubble.bot,
  .services-section .bubble.reply {
    color: #fff;
  }

  .services-section .chat-input {
    padding: 5px 5px 5px 3px;
  }

  .services-section .chat-input strong {
    width: 31px;
    height: 31px;
  }

  .services-section .content-hover-icons {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
    pointer-events: none;
  }

  .services-section .content-icon {
    position: absolute;
    left: 150px;
    top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  .services-section .content-icon svg {
    display: block;
    width: 20px;
    height: 20px;
  }

  .services-section .content-icon-page {
    display: none;
  }
}

@media (min-width: 810px) {
  .services-section .service-card:nth-child(2) {
    position: relative;
  }

  .services-section .service-card:nth-child(2)::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 420px;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    background: #ecedf1;
    content: "";
  }

  .services-section .service-card:nth-child(2) .service-copy {
    z-index: 5;
  }

  .services-section .service-card:nth-child(2) .chat-input {
    z-index: 4;
  }

  .services-section .service-card:nth-child(2) .bubble.reply {
    z-index: 2;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    width: min(1360px, calc(100% - 80px));
    min-height: 72px;
    padding: 8px 10px;
    background: rgba(244, 245, 249, 0.9);
  }

  .brand {
    justify-self: start;
    gap: 10px;
    min-width: 0;
    font-size: 28px;
    line-height: 1;
  }

  .brand-word {
    display: inline;
  }

  .site-footer .footer-brand {
    font-size: 24px;
  }

  .site-nav {
    justify-self: center;
  }

  .header-cta {
    justify-self: end;
    width: 150px;
    min-width: 150px;
    min-height: 52px;
    padding: 0 26px;
    font-size: 16px;
  }

  .header-cta::before {
    content: "Book a call";
  }

  .header-cta svg {
    display: none;
  }

  .services-section .bubble.bot,
  .services-section .bubble.user {
    transition:
      opacity 160ms cubic-bezier(0.33, 0, 0.67, 1),
      transform 160ms cubic-bezier(0.33, 0, 0.67, 1);
  }

  .services-section .bubble.user {
    transition:
      opacity 160ms cubic-bezier(0.33, 0, 0.67, 1),
      transform 160ms cubic-bezier(0.33, 0, 0.67, 1);
  }

  .services-section .bubble.reply,
  .services-section .content-visual,
  .services-section .content-icon,
  .services-section .content-hover-sheet,
  .services-section .content-layout span,
  .services-section .content-lines span {
    transition:
      opacity 300ms cubic-bezier(0.3, 0.05, 0.6, 1.1),
      transform 300ms cubic-bezier(0.3, 0.05, 0.6, 1.1);
  }

  .services-section .bubble.reply {
    opacity: 1;
    transition:
      opacity 1ms linear,
      transform 160ms cubic-bezier(0.33, 0, 0.67, 1);
  }

  .services-section .service-card.is-hovered .bubble.bot,
  .services-section .service-card.is-hovered .bubble.bot {
    opacity: 1;
    transition-delay: 0ms;
    transform: translate3d(0, -260px, 0);
  }

  .services-section .service-card.is-hovered .bubble.user,
  .services-section .service-card.is-hovered .bubble.user {
    transition-delay: 0ms;
    transform: translate3d(0, -160px, 0);
  }

  .services-section .service-card.is-hovered .bubble.reply,
  .services-section .service-card.is-hovered .bubble.reply {
    opacity: 1;
    transition-delay: 0ms, 0ms;
    transform: translate3d(0, -369px, 0);
  }
}

@media (min-width: 810px) {
  .services-section .content-visual,
  .services-section .content-icon,
  .services-section .content-hover-sheet,
  .services-section .content-layout span,
  .services-section .content-lines span {
    transition:
      opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-hover-sheet.sheet-back,
  .services-section .content-hover-sheet.sheet-mid {
    transition:
      opacity 110ms linear 70ms,
      transform 110ms cubic-bezier(0.33, 0, 0.67, 1) 70ms,
      border-radius 110ms cubic-bezier(0.33, 0, 0.67, 1) 70ms;
  }
}

@media (min-width: 1350px) {
  .services-section .content-visual {
    overflow: visible;
    isolation: isolate;
  }

  .services-section .content-hover-icons {
    position: absolute;
    left: calc(50% + 5px);
    top: -6px;
    z-index: 5;
    display: block;
    width: 500px;
    height: 115px;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .services-section .content-icon {
    position: absolute;
    top: 0;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: #222;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
    opacity: 0;
    transition:
      opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-icon svg {
    display: block;
    width: 40px;
    height: 40px;
    fill: currentColor;
    stroke: none;
  }

  .services-section .content-icon-page svg {
    width: 50px;
    height: 50px;
  }

  .services-section .content-icon-linkedin {
    left: 8px;
    transform: translate3d(152px, 44px, 0) scale(0.98) rotate(-10deg);
  }

  .services-section .content-icon-video {
    left: 130px;
    transform: translate3d(32px, 44px, 0) scale(0.98) rotate(-7deg);
  }

  .services-section .content-icon-page {
    left: 270px;
    transform: translate3d(-108px, 44px, 0) scale(0.98) rotate(8deg);
  }

  .services-section .content-icon-twitter {
    left: 386px;
    transform: translate3d(-228px, 44px, 0) scale(0.98) rotate(11deg);
  }

  .services-section .service-card.is-hovered .content-icon,
  .services-section .service-card.is-hovered .content-icon {
    opacity: 1;
    transition-delay: 0ms;
  }

  .services-section .service-card.is-hovered .content-icon-linkedin,
  .services-section .service-card.is-hovered .content-icon-linkedin {
    transform: translate3d(0, -64px, 0) scale(1) rotate(-15deg);
  }

  .services-section .service-card.is-hovered .content-icon-video,
  .services-section .service-card.is-hovered .content-icon-video {
    transform: translate3d(0, -88px, 0) scale(1) rotate(-10deg);
  }

  .services-section .service-card.is-hovered .content-icon-page,
  .services-section .service-card.is-hovered .content-icon-page {
    transform: translate3d(0, -88px, 0) scale(1) rotate(10deg);
  }

  .services-section .service-card.is-hovered .content-icon-twitter,
  .services-section .service-card.is-hovered .content-icon-twitter {
    transform: translate3d(0, -64px, 0) scale(1) rotate(15deg);
  }

  .services-section .content-visual > .content-hover-sheet {
    position: absolute;
    display: block;
    z-index: -1;
    border-radius: 25px 25px 0 0;
    background: #ecedf1;
    pointer-events: none;
    opacity: 0;
    transition:
      opacity 110ms linear 70ms,
      transform 110ms cubic-bezier(0.33, 0, 0.67, 1) 70ms,
      border-radius 110ms cubic-bezier(0.33, 0, 0.67, 1) 70ms;
  }

  .services-section .content-hover-sheet.sheet-back {
    left: 30.3px;
    top: 0;
    width: 364.3px;
    height: 300px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.000833333, 0, 0, 0, 1);
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .services-section .content-hover-sheet.sheet-mid {
    left: 16.3px;
    top: 0;
    width: 392.3px;
    height: 323.1px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.000833333, 0, 0, 0, 1);
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.25);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-back {
    opacity: 1;
    border-radius: 5.88235% 5.88235% 0 0 / 7.14286% 7.14286% 0 0;
    transition-delay: 70ms;
    transform: translate3d(0, -55px, 0);
  }

  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid,
  .services-section .service-card.is-hovered .content-hover-sheet.sheet-mid {
    opacity: 1;
    border-radius: 5.88235% 5.88235% 0 0 / 7.14286% 7.14286% 0 0;
    transition-delay: 70ms;
    transform: translate3d(0, -27px, 0);
  }

  .services-section .service-card.is-hovered .content-visual,
  .services-section .service-card.is-hovered .content-visual {
    transition-delay: 0ms;
    transform: translate3d(0, 180px, 0);
  }

  .services-section .service-card.is-hovered .content-lines,
  .services-section .service-card.is-hovered .content-lines,
  .services-section .service-card.is-hovered .content-visual::after,
  .services-section .service-card.is-hovered .content-visual::after {
    opacity: 0;
  }
}

@media (max-width: 809px) and (prefers-reduced-motion: no-preference) {
  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4,
  .services-section .workflow-pulse.particle-5,
  .services-section .workflow-pulse.particle-6 {
    display: block;
    --pulse-bg: 0.24;
    opacity: 0.82;
  }

  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-5,
  .services-section .workflow-pulse.particle-6 {
    width: 24px;
  }

  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4 {
    width: 25px;
  }

  .services-section .workflow-pulse.particle-1 { --pulse-delay: -80ms; }
  .services-section .workflow-pulse.particle-2 { --pulse-delay: -520ms; }
  .services-section .workflow-pulse.particle-3 { --pulse-delay: -320ms; }
  .services-section .workflow-pulse.particle-4 { --pulse-delay: -760ms; }
  .services-section .workflow-pulse.particle-5 { --pulse-delay: -620ms; }
  .services-section .workflow-pulse.particle-6 { --pulse-delay: -200ms; }

  .services-section .workflow-pulse.particle-1 { --anchor-x: -36px; --anchor-y: -38px; --pulse-rotate: 56deg; }
  .services-section .workflow-pulse.particle-2 { --anchor-x: 11px; --anchor-y: -38px; --pulse-rotate: -56deg; }
  .services-section .workflow-pulse.particle-3 { --anchor-x: -53px; --anchor-y: -4px; --pulse-rotate: 0deg; }
  .services-section .workflow-pulse.particle-4 { --anchor-x: 28px; --anchor-y: -4px; --pulse-rotate: 0deg; }
  .services-section .workflow-pulse.particle-5 { --anchor-x: -38px; --anchor-y: 36px; --pulse-rotate: -56deg; }
  .services-section .workflow-pulse.particle-6 { --anchor-x: 16px; --anchor-y: 36px; --pulse-rotate: 56deg; }

  .services-section .workflow-pulse.particle-7,
  .services-section .workflow-pulse.particle-8,
  .services-section .workflow-pulse.workflow-bar {
    display: none;
  }

  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-5,
  .services-section .workflow-pulse.particle-6 {
    animation: none !important;
  }

  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4 {
    animation: none !important;
  }
}

@keyframes workflowMobileHorizontalDashTravel {
  0%,
  100% {
    opacity: 0.76;
    transform: translate3d(var(--pulse-travel), 0, 0);
  }

  44%,
  68% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes workflowMobileDiagonalDashTravel {
  0%,
  100% {
    opacity: 0.76;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-far), 0, 0);
  }

  44%,
  68% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-near), 0, 0);
  }
}

@media (min-width: 810px) and (prefers-reduced-motion: no-preference) {
  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-5,
  .services-section .workflow-pulse.particle-6 {
    width: 24px;
    --pulse-bg: 0.22;
    opacity: 1;
  }

  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4 {
    width: 25px;
    --pulse-bg: 0.22;
    opacity: 1;
  }

  .services-section .workflow-pulse.particle-1 { --pulse-near: 0px; --pulse-far: -105px; --pulse-delay: 0ms; }
  .services-section .workflow-pulse.particle-2 { --pulse-near: 0px; --pulse-far: 105px; --pulse-delay: 0ms; }
  .services-section .workflow-pulse.particle-3 { --pulse-near: 0px; --pulse-far: -128px; --pulse-delay: 0ms; }
  .services-section .workflow-pulse.particle-4 { --pulse-near: 0px; --pulse-far: 128px; --pulse-delay: 0ms; }
  .services-section .workflow-pulse.particle-5 { --pulse-near: 0px; --pulse-far: -105px; --pulse-delay: 0ms; }
  .services-section .workflow-pulse.particle-6 { --pulse-near: 0px; --pulse-far: 105px; --pulse-delay: 0ms; }

  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-5,
  .services-section .workflow-pulse.particle-6 {
    animation: workflowDiagonalDashTravelBright 960ms linear var(--pulse-delay, 0ms) infinite both;
  }

  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-5 {
    --pulse-hover-travel: var(--pulse-far);
  }

  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-6 {
    --pulse-hover-travel: var(--pulse-far);
  }

  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4 {
    animation: workflowHorizontalDashTravelBright 960ms linear var(--pulse-delay, 0ms) infinite both;
  }

  .services-section .workflow-pulse.particle-3 {
    --pulse-hover-travel: var(--pulse-far);
  }

  .services-section .workflow-pulse.particle-4 {
    --pulse-hover-travel: var(--pulse-far);
  }

  .services-section .service-card.is-hovered .workflow-pulse.particle-1,
  .services-section .service-card.is-hovered .workflow-pulse.particle-2,
  .services-section .service-card.is-hovered .workflow-pulse.particle-5,
  .services-section .service-card.is-hovered .workflow-pulse.particle-6,
  .services-section .service-card.is-hovered .workflow-pulse.particle-1,
  .services-section .service-card.is-hovered .workflow-pulse.particle-2,
  .services-section .service-card.is-hovered .workflow-pulse.particle-5,
  .services-section .service-card.is-hovered .workflow-pulse.particle-6 {
    --pulse-bg: 0.22;
    animation: workflowDiagonalDashTravelBright 960ms linear var(--pulse-delay, 0ms) infinite both;
  }

  .services-section .service-card.is-hovered .workflow-pulse.particle-1,
  .services-section .service-card.is-hovered .workflow-pulse.particle-5,
  .services-section .service-card.is-hovered .workflow-pulse.particle-1,
  .services-section .service-card.is-hovered .workflow-pulse.particle-5 {
    --pulse-hover-travel: var(--pulse-far);
  }

  .services-section .service-card.is-hovered .workflow-pulse.particle-2,
  .services-section .service-card.is-hovered .workflow-pulse.particle-6,
  .services-section .service-card.is-hovered .workflow-pulse.particle-2,
  .services-section .service-card.is-hovered .workflow-pulse.particle-6 {
    --pulse-hover-travel: var(--pulse-far);
  }

  .services-section .service-card.is-hovered .workflow-pulse.particle-3,
  .services-section .service-card.is-hovered .workflow-pulse.particle-4,
  .services-section .service-card.is-hovered .workflow-pulse.particle-3,
  .services-section .service-card.is-hovered .workflow-pulse.particle-4 {
    --pulse-bg: 0.22;
    animation: workflowHorizontalDashTravelBright 960ms linear var(--pulse-delay, 0ms) infinite both;
  }

  .services-section .service-card.is-hovered .workflow-pulse.particle-3,
  .services-section .service-card.is-hovered .workflow-pulse.particle-3 {
    --pulse-hover-travel: var(--pulse-far);
  }

  .services-section .service-card.is-hovered .workflow-pulse.particle-4,
  .services-section .service-card.is-hovered .workflow-pulse.particle-4 {
    --pulse-hover-travel: var(--pulse-far);
  }
}

@keyframes workflowHorizontalDashTravelBright {
  0% {
    opacity: 1;
    transform: translate3d(var(--pulse-near, 4px), 0, 0);
  }

  99.8% {
    opacity: 1;
    transform: translate3d(var(--pulse-far, 132px), 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--pulse-near, 4px), 0, 0);
  }
}

@keyframes workflowDiagonalDashTravelBright {
  0% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-near, 4px), 0, 0);
  }

  99.8% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-far, 110px), 0, 0);
  }

  100% {
    opacity: 1;
    transform: rotate(var(--pulse-rotate)) translate3d(var(--pulse-near, 4px), 0, 0);
  }
}

@media (min-width: 810px) and (prefers-reduced-motion: no-preference) {
  .services-section .bubble.bot {
    transition-duration: 300ms;
  }

  .services-section .bubble.user {
    transition-duration: 300ms;
  }

  .services-section .bubble.reply {
    transition-duration: 100ms, 260ms;
  }
}

/* Workflow automation parity: Framer keeps connector dashes moving on hover. */
@media (min-width: 810px) and (prefers-reduced-motion: no-preference) {
  .services-section .service-card.is-hovered .workflow-pulse {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-5,
  .services-section .workflow-pulse.particle-6 {
    width: 24px;
  }

  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4 {
    width: 25px;
  }
}

@media (min-width: 810px) and (prefers-reduced-motion: reduce) {
  .services-section .workflow-pulse.particle-1 { --anchor-x: -36px; --anchor-y: -38px; --pulse-rotate: 56deg; --pulse-bg: 0.22; }
  .services-section .workflow-pulse.particle-2 { --anchor-x: 11px; --anchor-y: -38px; --pulse-rotate: -56deg; --pulse-bg: 0.22; }
  .services-section .workflow-pulse.particle-3 { --anchor-x: -62px; --anchor-y: -4px; --pulse-rotate: 0deg; --pulse-bg: 0.22; }
  .services-section .workflow-pulse.particle-4 { --anchor-x: 46px; --anchor-y: -4px; --pulse-rotate: 0deg; --pulse-bg: 0.22; }
  .services-section .workflow-pulse.particle-5 { --anchor-x: -38px; --anchor-y: 36px; --pulse-rotate: -56deg; --pulse-bg: 0.22; }
  .services-section .workflow-pulse.particle-6 { --anchor-x: 16px; --anchor-y: 36px; --pulse-rotate: 56deg; --pulse-bg: 0.22; }
}

@media (max-width: 809px) and (prefers-reduced-motion: reduce) {
  .services-section .workflow-pulse.particle-1 { --anchor-x: -36px; --anchor-y: -38px; --pulse-rotate: 56deg; --pulse-bg: 0.24; }
  .services-section .workflow-pulse.particle-2 { --anchor-x: 11px; --anchor-y: -38px; --pulse-rotate: -56deg; --pulse-bg: 0.24; }
  .services-section .workflow-pulse.particle-3 { --anchor-x: -53px; --anchor-y: -4px; --pulse-rotate: 0deg; --pulse-bg: 0.24; }
  .services-section .workflow-pulse.particle-4 { --anchor-x: 28px; --anchor-y: -4px; --pulse-rotate: 0deg; --pulse-bg: 0.24; }
  .services-section .workflow-pulse.particle-5 { --anchor-x: -38px; --anchor-y: 36px; --pulse-rotate: -56deg; --pulse-bg: 0.24; }
  .services-section .workflow-pulse.particle-6 { --anchor-x: 16px; --anchor-y: 36px; --pulse-rotate: 56deg; --pulse-bg: 0.24; }
}

/* Workflow automation parity: Framer renders twelve clipped dash wrappers, two per connector rail. */
@media (min-width: 810px) {
  .services-section .automation-visual::before,
  .services-section .automation-visual::after {
    top: 50%;
  }
}

.services-section .workflow-pulse,
.services-section .workflow-pulse.workflow-bar {
  display: block;
  left: 50%;
  top: 50%;
  width: var(--pulse-width, 24px);
  height: 2px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(109, 122, 255, var(--pulse-bg, 1)) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--pulse-rotate)) translate3d(var(--pulse-near, 0px), var(--rail-offset, 0px), 0);
}

.services-section .workflow-pulse.particle-7,
.services-section .workflow-pulse.particle-8,
.services-section .workflow-pulse.workflow-bar {
  display: block;
}

.services-section .workflow-pulse::after {
  content: none;
}

.services-section .workflow-pulse::before {
  content: none;
}

.services-section .workflow-pulse.particle-7::before,
.services-section .workflow-pulse.particle-8::before,
.services-section .workflow-pulse.bar-1::before,
.services-section .workflow-pulse.bar-2::before,
.services-section .workflow-pulse.bar-3::before,
.services-section .workflow-pulse.bar-4::before {
  content: none;
}

.services-section .workflow-pulse.particle-7,
.services-section .workflow-pulse.particle-8,
.services-section .workflow-pulse.particle-3,
.services-section .workflow-pulse.particle-4,
.services-section .workflow-pulse.bar-2,
.services-section .workflow-pulse.bar-4 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(109, 122, 255, var(--pulse-bg, 1)) 100%);
}

.services-section .workflow-pulse.particle-1,
.services-section .workflow-pulse.particle-2,
.services-section .workflow-pulse.particle-5,
.services-section .workflow-pulse.particle-6,
.services-section .workflow-pulse.particle-7,
.services-section .workflow-pulse.particle-8,
.services-section .workflow-pulse.bar-2,
.services-section .workflow-pulse.bar-4 {
  --pulse-width: 25px;
  --pulse-far-distance: 107px;
  width: var(--pulse-width);
}

.services-section .workflow-pulse.particle-3,
.services-section .workflow-pulse.particle-4,
.services-section .workflow-pulse.bar-1,
.services-section .workflow-pulse.bar-3 {
  --pulse-width: 25px;
  --pulse-far-distance: 132px;
}

.services-section .workflow-pulse.particle-1 { --pulse-rotate: 55deg; --rail-offset: -3.5px; --pulse-far: calc(var(--pulse-far-distance) * -1); }
.services-section .workflow-pulse.particle-2 { --pulse-rotate: 55deg; --rail-offset: 3.5px; --pulse-far: calc(var(--pulse-far-distance) * -1); }
.services-section .workflow-pulse.particle-7 { --pulse-rotate: -55deg; --rail-offset: -3.5px; --pulse-far: var(--pulse-far-distance); }
.services-section .workflow-pulse.particle-8 { --pulse-rotate: -55deg; --rail-offset: 3.5px; --pulse-far: var(--pulse-far-distance); }
.services-section .workflow-pulse.particle-3 { --pulse-rotate: 0deg; --rail-offset: -3.5px; --pulse-far: calc(var(--pulse-far-distance) * -1); }
.services-section .workflow-pulse.particle-4 { --pulse-rotate: 0deg; --rail-offset: 3.5px; --pulse-far: calc(var(--pulse-far-distance) * -1); }
.services-section .workflow-pulse.bar-1 { --pulse-rotate: 0deg; --rail-offset: -3.5px; --pulse-far: var(--pulse-far-distance); }
.services-section .workflow-pulse.bar-3 { --pulse-rotate: 0deg; --rail-offset: 3.5px; --pulse-far: var(--pulse-far-distance); }
.services-section .workflow-pulse.particle-5 { --pulse-rotate: -55deg; --rail-offset: -3.5px; --pulse-far: calc(var(--pulse-far-distance) * -1); }
.services-section .workflow-pulse.particle-6 { --pulse-rotate: -55deg; --rail-offset: 3.5px; --pulse-far: calc(var(--pulse-far-distance) * -1); }
.services-section .workflow-pulse.bar-2 { --pulse-rotate: 55deg; --rail-offset: -3.5px; --pulse-far: var(--pulse-far-distance); }
.services-section .workflow-pulse.bar-4 { --pulse-rotate: 55deg; --rail-offset: 3.5px; --pulse-far: var(--pulse-far-distance); }

.services-section .workflow-pulse.particle-1,
.services-section .workflow-pulse.particle-2,
.services-section .workflow-pulse.particle-3,
.services-section .workflow-pulse.particle-4,
.services-section .workflow-pulse.particle-5,
.services-section .workflow-pulse.particle-6,
.services-section .workflow-pulse.particle-7,
.services-section .workflow-pulse.particle-8,
.services-section .workflow-pulse.workflow-bar {
  --pulse-bg: 1;
}

@media (min-width: 810px) and (prefers-reduced-motion: no-preference) {
  .services-section .workflow-pulse {
    --pulse-bg: 1;
    --pulse-near: 0px;
    animation: none !important;
  }

  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4,
  .services-section .workflow-pulse.bar-1,
  .services-section .workflow-pulse.bar-3 {
    animation: none !important;
  }

  .services-section .service-card.is-hovered .workflow-pulse {
    --pulse-bg: 1;
  }
}

@media (max-width: 809px) {
  .services-section .workflow-pulse,
  .services-section .workflow-pulse.workflow-bar {
    --pulse-bg: 1;
    --pulse-near: 0px;
    top: 53.5%;
    opacity: 1;
    animation: none !important;
  }

  .services-section .workflow-pulse.particle-1,
  .services-section .workflow-pulse.particle-2,
  .services-section .workflow-pulse.particle-3,
  .services-section .workflow-pulse.particle-4,
  .services-section .workflow-pulse.particle-5,
  .services-section .workflow-pulse.particle-6,
  .services-section .workflow-pulse.particle-7,
  .services-section .workflow-pulse.particle-8,
  .services-section .workflow-pulse.workflow-bar {
    --pulse-bg: 1;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-section .workflow-pulse {
    animation: none !important;
  }
}

/* Services interaction: Personalized cold outreach */
.services-section .service-card:nth-child(3) .email-visual,
.services-section .service-card:nth-child(3) .mini-avatar-row img,
.services-section .service-card:nth-child(3) .mini-avatar-row strong,
.services-section .service-card:nth-child(3) .email-send,
.services-section .service-card:nth-child(3) .email-send svg,
.services-section .service-card:nth-child(3) .form-line.medium .seg,
.services-section .service-card:nth-child(3) .form-text-lines .seg {
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.services-section .service-card:nth-child(3) .form-line.medium .seg,
.services-section .service-card:nth-child(3) .form-text-lines .seg {
  transform-origin: left center;
}

.services-section .service-card:nth-child(3).is-hovered .email-visual,
.services-section .service-card:nth-child(3):hover .email-visual {
  transform: translate3d(0, -8px, 0);
}

.services-section .service-card:nth-child(3).is-hovered .mini-avatar-row img:nth-child(1),
.services-section .service-card:nth-child(3):hover .mini-avatar-row img:nth-child(1) {
  transform: translate3d(-2px, -5px, 0);
}

.services-section .service-card:nth-child(3).is-hovered .mini-avatar-row img:nth-child(2),
.services-section .service-card:nth-child(3):hover .mini-avatar-row img:nth-child(2) {
  transform: translate3d(-1px, -8px, 0);
}

.services-section .service-card:nth-child(3).is-hovered .mini-avatar-row img:nth-child(3),
.services-section .service-card:nth-child(3):hover .mini-avatar-row img:nth-child(3) {
  transform: translate3d(1px, -6px, 0);
}

.services-section .service-card:nth-child(3).is-hovered .mini-avatar-row img:nth-child(4),
.services-section .service-card:nth-child(3):hover .mini-avatar-row img:nth-child(4) {
  transform: translate3d(3px, -9px, 0);
}

.services-section .service-card:nth-child(3).is-hovered .mini-avatar-row strong,
.services-section .service-card:nth-child(3):hover .mini-avatar-row strong {
  transform: translate3d(5px, -7px, 0) scale(1.04);
}

.services-section .service-card:nth-child(3).is-hovered .email-send,
.services-section .service-card:nth-child(3):hover .email-send {
  transform: translate3d(0, -4px, 0) scale(1.03);
}

.services-section .service-card:nth-child(3).is-hovered .email-send svg,
.services-section .service-card:nth-child(3):hover .email-send svg {
  transform: translate3d(2px, 0, 0);
}

.services-section .service-card:nth-child(3).is-hovered .form-line.medium .seg:nth-child(1),
.services-section .service-card:nth-child(3):hover .form-line.medium .seg:nth-child(1) {
  transform: scaleX(0.76);
}

.services-section .service-card:nth-child(3).is-hovered .form-line.medium .seg:nth-child(2),
.services-section .service-card:nth-child(3):hover .form-line.medium .seg:nth-child(2) {
  transform: translate3d(7px, 0, 0) scaleX(1.12);
}

.services-section .service-card:nth-child(3).is-hovered .form-line.medium .seg:nth-child(3),
.services-section .service-card:nth-child(3):hover .form-line.medium .seg:nth-child(3) {
  transform: translate3d(-4px, 0, 0) scaleX(0.88);
}

.services-section .service-card:nth-child(3).is-hovered .form-text-lines span:nth-child(odd) .seg:nth-child(2n),
.services-section .service-card:nth-child(3):hover .form-text-lines span:nth-child(odd) .seg:nth-child(2n) {
  transform: translate3d(8px, 0, 0) scaleX(0.84);
}

.services-section .service-card:nth-child(3).is-hovered .form-text-lines span:nth-child(even) .seg:nth-child(2n + 1),
.services-section .service-card:nth-child(3):hover .form-text-lines span:nth-child(even) .seg:nth-child(2n + 1) {
  transform: translate3d(-5px, 0, 0) scaleX(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .services-section .service-card:nth-child(3) .email-visual,
  .services-section .service-card:nth-child(3) .mini-avatar-row img,
  .services-section .service-card:nth-child(3) .mini-avatar-row strong,
  .services-section .service-card:nth-child(3) .email-send,
  .services-section .service-card:nth-child(3) .email-send svg,
  .services-section .service-card:nth-child(3) .form-line.medium .seg,
  .services-section .service-card:nth-child(3) .form-text-lines .seg {
    transition: none !important;
    transform: none !important;
  }
}

.services-section .bubble.user {
  color: #1c1c1c;
}

/* Services fidelity: match Framer's content mockup neumorphic shadow. */
.services-section .content-visual {
  box-shadow:
    -5px -5px 10px #fafbff,
    5px 5px 10px rgba(166, 171, 189, 0.25);
}

.services-section .service-card.is-hovered .content-visual,
.services-section .service-card.is-hovered .content-visual {
  box-shadow:
    -5px -5px 10px #fafbff,
    5px 5px 10px rgba(166, 171, 189, 0.25);
}

.services-section .service-card:nth-child(4) .content-visual,
.services-section .service-card:nth-child(4):hover .content-visual,
.services-section .service-card:nth-child(4).is-hovered .content-visual {
  box-shadow: none;
}

@media (min-width: 810px) {
  .services-section .service-card:nth-child(4) .content-visual::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border: 1px solid rgba(85, 88, 96, 0.2);
    border-bottom: 0;
    border-color: rgba(85, 88, 96, 0.2);
    border-radius: 25px 25px 0 0;
    pointer-events: none;
    content: "";
  }
}

@media (max-width: 809px) {
  .services-section .service-card:nth-child(4) .content-visual::before {
    border: 1px solid rgba(85, 88, 96, 0.2);
    border-bottom: 0;
    box-shadow: none;
  }
}

.services-section .service-card:nth-child(4) .content-visual .browser-frame,
.services-section .service-card:nth-child(4) .content-visual .content-layout,
.services-section .service-card:nth-child(4) .content-visual .content-lines,
.services-section .service-card:nth-child(4) .content-visual::after {
  opacity: 0.86;
}

.services-section .service-card:nth-child(4).is-hovered .content-visual .browser-frame,
.services-section .service-card:nth-child(4).is-hovered .content-visual .content-layout,
.services-section .service-card:nth-child(4).is-hovered .content-visual .content-lines,
.services-section .service-card:nth-child(4).is-hovered .content-visual::after {
  opacity: 0.86;
}

@media (min-width: 810px) {
  .services-section .service-card.is-hovered .openai-node {
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 810px) {
  .services-section .service-card:nth-child(4) .content-visual {
    transition:
      opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 180ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .services-section .service-card:nth-child(4).is-hovered .content-visual {
    transform: translate3d(0, 180px, 0);
  }
}

/* Services tablet parity: Framer keeps the content browser as a centered
   425x350 front mockup, with sheets positioned behind it. */
@media (min-width: 810px) and (max-width: 1349px) {
  .services-section .service-card:nth-child(4) .content-visual {
    width: 425px !important;
    height: 350px !important;
    min-height: 350px !important;
    margin: 88px auto 0 !important;
    background: #ecedf1;
    overflow: visible;
    isolation: isolate;
  }

  .services-section .service-card:nth-child(4) .content-hover-icons {
    left: calc(50% + 5px);
    top: -6px;
    width: 425px;
    height: 90px;
  }

  .services-section .service-card:nth-child(4) .content-hover-sheet.sheet-back {
    left: 30.3px !important;
    top: 0 !important;
    width: 364.3px !important;
    height: 300px !important;
  }

  .services-section .service-card:nth-child(4) .content-hover-sheet.sheet-mid {
    left: 16.3px !important;
    top: 0 !important;
    width: 392.3px !important;
    height: 323.1px !important;
  }
}

/* Framer parity: the final CTA is part of the FAQ section, not a separate block. */
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.faq-section .section-heading {
  gap: 10px;
  margin-bottom: 0;
}

.faq-section .section-heading h2 span {
  color: var(--text);
}

.faq-section .section-heading h2,
.faq-section .section-heading p,
.faq-section .contact-section h2,
.faq-section .contact-section p {
  margin: 0;
}

.faq-section .contact-section,
.faq-list {
  flex: 0 0 auto;
  margin: 0 auto;
}

.faq-section .contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.faq-section .contact-section > span {
  margin-top: -8px;
}

.site-footer {
  margin-top: 0;
}

@media (min-width: 1440px) {
  .testimonials-section {
    height: 1028px;
    min-height: 1028px;
    margin-top: 30.2px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .faq-section {
    width: 100%;
    max-width: none;
    min-height: 1170.2px;
    margin-top: 0;
    padding: 100px 40px;
  }

  .faq-section .section-heading {
    width: min(1360px, 100%);
    margin: 0 auto;
  }

  .faq-list {
    width: 1000px;
    gap: 15px;
  }

  .faq-list details {
    height: 75px;
    min-height: 75px;
    padding: 23px 24px;
  }

  .faq-list summary {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }

  .faq-section .contact-section {
    width: 1000px;
    min-height: 311.4px;
    padding: 60px;
  }

  .site-footer {
    width: min(1360px, calc(100vw - 65px));
  }

  .about-copy.reveal {
    opacity: 1;
    transform: none;
  }

  .testimonial-grid figure.reveal {
    opacity: 1;
    transform: none;
  }

  .testimonial-grid figure.reveal:hover {
    transform: translateY(-4px);
  }

  .testimonials-section .section-heading h2 {
    width: 1360px;
    max-width: 100%;
  }

  .faq-list details.reveal {
    opacity: 1;
    transform: none;
  }

  .faq-list details.reveal:hover {
    transform: translateY(-2px);
  }

  .about-copy h2 {
    margin: 13px 0 40px;
  }
}

@media (min-width: 810px) and (max-width: 1439px) {
  .faq-section {
    width: 810px;
    max-width: calc(100vw - 80px);
    min-height: 1140.4px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 20px;
  }

  .faq-section .section-heading,
  .faq-list,
  .faq-section .contact-section {
    width: 770px;
    max-width: 100%;
  }

  .faq-list {
    gap: 15px;
  }

  .faq-list details {
    height: 75px;
    min-height: 75px;
    padding: 23px 24px;
  }

  .faq-list details:nth-child(4):not([open]) {
    height: 102px;
  }

  .faq-list summary {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }

  .faq-section .contact-section {
    min-height: 354.6px;
    padding: 60px 20px;
  }

  .site-footer {
    width: 100%;
    height: 275.6px;
    min-height: 275.6px;
    padding: 20px 0 0;
  }
}

@media (max-width: 640px) {
  .benefits-section {
    width: var(--client-width, 100%);
    max-width: none;
    height: 2234.4px;
    min-height: 2234.4px;
    margin-top: 28.9px;
    margin-left: 0;
    margin-right: 0;
    padding: 100px 20px 50px;
  }

  .benefits-section .section-heading {
    margin-bottom: 60px;
  }

  .benefits-section .section-heading h2 {
    margin: 13px 0 10px;
  }

  .benefits-section .section-heading p {
    width: 315px;
    line-height: 19.2px;
  }

  .about-section {
    width: var(--client-width, 100%);
    max-width: none;
    height: 551px;
    min-height: 551px;
    padding: 100px 20px 50px;
  }

  .plans-section {
    height: 1939.1px;
    min-height: 1939.1px;
    padding-top: 100px;
  }

  .testimonials-section {
    width: var(--client-width, 100%);
    max-width: none;
    height: 1713.6px;
    min-height: 1713.6px;
    margin-top: 0;
    padding: 100px 20px 50px;
  }

  .faq-section {
    width: var(--client-width, 100%);
    max-width: none;
    height: 1346.6px;
    min-height: 1346.6px;
    padding: 100px 20px 50px;
  }

  .faq-section .section-heading,
  .faq-list,
  .faq-section .contact-section {
    width: min(350px, 100%);
    max-width: 100%;
  }

  .faq-list {
    gap: 15px;
  }

  .faq-list details {
    padding: 23px 24px;
  }

  .faq-list details:nth-child(4):not([open]) {
    height: 129px;
  }

  .faq-list summary {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }

  .faq-section .contact-section {
    min-height: 286.8px;
    padding: 30px;
  }

  .faq-section .contact-section h2 {
    width: 275px;
    font-size: 24px;
    line-height: 28.8px;
  }

  .faq-section .contact-section p {
    width: 275px;
    font-size: 16px;
    line-height: 24px;
  }

  .faq-section .contact-section .button {
    width: 209.2px;
    min-height: 51.2px;
    white-space: nowrap;
  }

  .faq-section .contact-section > span {
    font-weight: 400;
    line-height: 24px;
  }

  .site-footer {
    width: var(--client-width, 100%);
    max-width: none;
    height: 594.8px;
    min-height: 594.8px;
    padding: 20px 20px 0;
  }

  .site-footer .footer-brand {
    width: auto;
    min-width: 0;
    height: 50px;
    gap: 10px;
    font-size: 24px;
    line-height: 1;
  }

  .site-footer .footer-brand .brand-mark {
    width: 50px;
    height: 50px;
  }

  .site-footer nav {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 26px;
  }

  .site-footer .footer-credit {
    margin-top: -16px;
  }

  .site-footer .social-links {
    flex-wrap: nowrap;
    width: 335px;
    margin-top: -18px;
    gap: 12px;
  }

  .site-footer .social-links a {
    width: 62px;
    height: 62px;
  }
}

/* Section rail parity outside Services. Framer uses full desktop section boxes with constrained inner content. */
@media (min-width: 1440px) {
  .hero {
    min-height: 972.2px;
  }

  .hero-inner {
    transform: translateX(-116px);
  }

  .hero .logo-reveal {
    width: min(1200px, calc(100vw - 225px));
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero p,
  .hero .client-proof,
  .hero .logo-reveal {
    transform: translateX(6px);
  }

  .hero .logo-strip {
    margin-left: -60px;
  }

  .process-section {
    min-height: 1903.8px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .process-section,
  .benefits-section,
  .about-section,
  .plans-section,
  .testimonials-section {
    width: 100%;
    max-width: none;
  }

  .benefits-section {
    height: 981.4px;
    min-height: 981.4px;
  }

  .about-section {
    height: 578.4px;
    min-height: 578.4px;
  }

  .plans-section {
    height: 1056.2px;
    min-height: 1056.2px;
  }

  .testimonials-section {
    margin-top: 0;
  }

  .process-list {
    width: 1060px;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-step {
    min-height: 480px;
  }

  .process-step:first-child .lottie-target {
    left: 185px;
    right: auto;
    top: 50px;
  }

  .process-step:first-child .pin-primary {
    left: 50px;
    top: 95px;
  }

  .process-step:first-child .pin-secondary {
    left: 211px;
    top: 176px;
  }

  .process-step:first-child .pin-tertiary {
    display: none;
    left: 386px;
    top: 86px;
    width: 75px;
    height: 75px;
    opacity: 0;
  }

  .process-section .section-heading {
    margin-bottom: 16px;
  }

  .benefit-grid,
  .about-copy,
  .testimonial-grid {
    width: min(1345px, calc(100vw - 80px));
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-grid {
    height: 577.6px;
    align-content: start;
  }

  .benefit-grid article {
    min-height: 276.8px;
    padding: 30px;
    gap: 24px;
  }

  .benefit-icon {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 810px) and (max-width: 1439px) {
  .hero p {
    width: min(730px, 100%);
  }

  .hero .logo-reveal {
    width: min(730px, calc(100vw - 80px));
  }

  .process-step:first-child .lottie-target {
    left: 185px;
    right: auto;
    top: 50px;
  }

  .process-step:first-child .pin-primary {
    left: 50px;
    top: 95px;
  }

  .process-step:first-child .pin-secondary {
    left: 211px;
    top: 176px;
  }

  .process-step:first-child .pin-tertiary {
    display: none;
    opacity: 0;
  }

  .site-header {
    top: 15px;
    grid-template-columns: 50px 1fr 50px;
    gap: 20px;
    width: 759.3px;
    max-width: calc(100vw - 80px);
    height: 70px;
    min-height: 70px;
    padding: 10px;
    border: 0;
    border-radius: 50px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 5px #fafbff inset,
      5px 5px 5px rgba(166, 171, 189, 0.25) inset;
    backdrop-filter: none;
  }

  .site-header .brand {
    width: 50px;
    min-width: 50px;
    height: 50px;
    gap: 0;
    font-size: 0;
  }

  .site-header .brand-word {
    display: none;
  }

  .site-header .brand-mark {
    width: 50px;
    height: 50px;
  }

  .site-header .site-nav {
    gap: 0;
  }

  .site-header .header-cta {
    width: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 0;
    font-size: 0;
  }

  .site-header .header-cta::before {
    content: "";
  }

  .site-header .header-cta svg {
    display: block;
  }

  .benefits-section,
  .about-section,
  .testimonials-section {
    width: 810px;
    max-width: calc(100vw - 80px);
  }

  .benefits-section {
    height: 1348.8px;
    min-height: 1348.8px;
    margin-top: -22px;
  }

  .benefits-section .section-heading h2 {
    margin: 41px 0 10px;
    width: 730px;
    font-size: 45px;
    line-height: 63px;
  }

  .benefits-section .section-heading p {
    width: 730px;
    max-width: 730px;
    line-height: 21.6px;
  }

  .benefit-grid article {
    min-height: 299px;
    padding: 30px;
    gap: 24px;
  }

  .benefit-grid h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .benefit-grid p {
    font-size: 16px;
    line-height: 24px;
  }

  .about-section {
    height: 596.4px;
    min-height: 596.4px;
  }

  .plans-section {
    height: 1683.6px;
    min-height: 1683.6px;
  }

  .testimonials-section {
    height: 982px;
    min-height: 982px;
    margin-top: 0;
    padding-top: 50px;
  }

  .testimonials-section .section-heading h2,
  .faq-section .section-heading h2 {
    width: 770px;
    max-width: 100%;
    font-size: 45px;
    line-height: 63px;
  }

  .plans-section .section-heading h2 {
    width: 1200px;
    max-width: calc(100vw - 80px);
    font-size: 45px;
    line-height: 63px;
  }

  .plans-section .section-heading.reveal:not(.visible) {
    transform: translate3d(0, 65.6px, 0);
  }

  .plans-section {
    width: 100%;
    max-width: none;
  }

  .faq-section .contact-section {
    transform: translateY(8.6px);
  }
}

@media (min-width: 1440px) {
  .site-header {
    top: 15px;
    grid-template-columns: 242px 1fr 150.3px;
    gap: 20px;
    width: min(1360px, calc(100vw - 80px));
    height: 71.2px;
    min-height: 71.2px;
    padding: 10px;
    border: 0;
    border-radius: 50px;
    background: #ecedf1;
    box-shadow:
      -5px -5px 5px #fafbff inset,
      5px 5px 5px rgba(166, 171, 189, 0.25) inset;
    backdrop-filter: none;
  }

  .site-header .brand {
    width: 242px;
    min-width: 242px;
    height: 50px;
    justify-content: flex-start;
    gap: 10px;
    font-size: 24px;
    line-height: 28.8px;
  }

  .site-header .brand-word {
    display: block;
  }

  .site-header .brand-mark {
    width: 50px;
    height: 50px;
  }

  .site-header .site-nav {
    gap: 5px;
  }

  .site-header .site-nav a {
    min-height: 43.2px;
    padding: 12px 24px;
    border: 0;
    color: #1c1c1c;
    font-weight: 400;
    line-height: 19.2px;
  }

  .site-header .header-cta {
    width: 150.3px;
    min-width: 150.3px;
    min-height: 51.2px;
    padding: 16px 32px;
    background: #6d7aff;
    box-shadow:
      -5px -5px 10px #fafbff,
      5px 5px 10px rgba(166, 171, 189, 0.5);
    font-size: 16px;
    line-height: 19.2px;
  }
}

@media (max-width: 640px) {
  .faq-section .contact-section {
    transform: translateY(-8.4px);
  }
}

/* Workflow automation: restore the Framer-style tiles around Slack and Airtable. */
.services-section .automation-visual .node-slack,
.services-section .automation-visual .node-air {
  width: 76px !important;
  height: 76px !important;
  border-radius: 16px !important;
  background: #ecedf1 !important;
  box-shadow:
    -5px -5px 10px #fafbff,
    5px 5px 10px rgba(166, 171, 189, 0.25) !important;
  overflow: visible !important;
}

.services-section .automation-visual .node-slack::after,
.services-section .automation-visual .node-air::after {
  position: absolute;
  inset: -6px !important;
  z-index: -1;
  border-radius: 16px !important;
  background: #ecedf1 !important;
  box-shadow: none !important;
  content: "";
  pointer-events: none;
}

.services-section .automation-visual .node-slack > *,
.services-section .automation-visual .node-air > * {
  position: relative;
  z-index: 2;
}

/* iPhone XR QA fixes: keep the mobile header, carousel, and app-icon visuals aligned. */
.button.primary,
.header-cta {
  background: linear-gradient(135deg, #8f98ff, #5865f2);
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-inline: 20px;
  }

  .site-header .brand {
    width: 50px;
    min-width: 50px;
  }

  .site-header .menu-button {
    justify-self: end;
  }

  .hero .logo-reveal {
    position: relative;
    left: auto;
    justify-content: flex-start;
    justify-self: center;
    width: var(--client-width, 100vw);
    margin-left: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
  }

  .hero .logo-strip {
    width: max-content;
    min-width: max-content;
    gap: 64px;
    animation-duration: 24s;
    animation-timing-function: linear;
    will-change: transform;
  }

  .process-step:nth-child(3) .launch-icon {
    left: 50%;
    top: 50%;
    width: 104px;
    height: 104px;
    margin: -52px 0 0 -52px;
    transform: translate3d(0, 0, 0);
  }

  .services-section .automation-visual .node-slack,
  .services-section .automation-visual .node-air {
    width: 64px !important;
    height: 64px !important;
    border-radius: 18px !important;
  }

  .services-section .automation-visual .node-slack::after,
  .services-section .automation-visual .node-air::after {
    display: none;
  }

  .services-section .automation-visual .node-slack .logo-svg,
  .services-section .automation-visual .node-air .logo-svg {
    width: 38px;
    height: 38px;
  }
}

/* Mobile polish pass: compact header, centered visuals, cleaner service cards. */
@media (max-width: 640px) {
  .site-header {
    top: 0;
    min-height: 66px;
    height: 66px;
    align-content: center;
    row-gap: 0;
    column-gap: 16px;
    grid-template-columns: 58px 44px;
    padding: 6px 24px;
  }

  .site-header.open {
    height: auto;
    min-height: 66px;
    padding-bottom: 24px;
  }

  .site-header .brand,
  .site-header .brand-mark,
  .site-header .brand-logo {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .site-header .brand-logo {
    border-radius: 17px;
  }

  .site-header .menu-button {
    width: 42px;
    height: 42px;
    background: transparent;
    box-shadow: none;
  }

  .site-header .menu-button span {
    width: 24px;
    height: 2.5px;
  }

  .hero {
    padding-top: 168px;
  }
}

@media (max-width: 809px) {
  .process-step:nth-child(3) .deploy-card {
    overflow: hidden;
  }

  .process-step:nth-child(3) .launch-icon {
    left: 50%;
    top: 50%;
    width: 104px;
    height: 104px;
    margin: -52px 0 0 -52px;
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .process-step:nth-child(3):hover .launch-icon,
  .process-step:nth-child(3).is-hovered .launch-icon {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .process-step:nth-child(3) .deploy-rail {
    animation-duration: 0.92s;
  }

  .process-step:nth-child(3) .deploy-rail span {
    background: rgba(88, 101, 242, 0.72);
    box-shadow: 44px 44px 0 rgba(88, 101, 242, 0.14);
  }

  section.services-section {
    padding: 82px 20px 58px;
  }

  .services-section .section-heading {
    margin-bottom: 58px;
  }

  .services-section .section-heading h2,
  .services-section .section-heading p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .services-grid {
    width: min(350px, calc(var(--client-width, 100vw) - 40px));
    max-width: min(350px, calc(var(--client-width, 100vw) - 40px));
    gap: 18px;
  }

  .services-section .service-card,
  .services-section .service-large,
  .services-section .service-card:nth-child(1),
  .services-section .service-card:nth-child(2),
  .services-section .service-card:nth-child(3),
  .services-section .service-card:nth-child(4) {
    width: 100%;
    height: auto;
    min-height: 444px;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
  }

  .services-section .service-card:nth-child(2),
  .services-section .service-card:nth-child(4) {
    min-height: 466px;
  }

  .services-section .service-copy {
    position: relative;
    z-index: 8;
    padding: 0 24px 26px;
    text-align: center;
    background: #ecedf1;
  }

  .services-section .service-copy h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.18;
  }

  .services-section .service-copy p {
    margin: 0 auto;
    max-width: 286px;
    font-size: 15px;
    line-height: 1.5;
  }

  .services-section .automation-visual,
  .services-section .chat-demo,
  .services-section .email-visual,
  .services-section .content-visual {
    margin-left: auto;
    margin-right: auto;
  }

  .services-section .automation-visual {
    width: 304px;
    min-height: 250px;
    margin-top: 30px;
    margin-bottom: 18px;
    overflow: hidden;
  }

  .services-section .automation-visual::before,
  .services-section .automation-visual::after,
  .services-section .openai-node::before {
    width: 196px !important;
    opacity: 0.42;
  }

  .services-section .automation-visual .node-slack,
  .services-section .automation-visual .node-air {
    z-index: 9;
    width: 62px !important;
    height: 62px !important;
    border-radius: 18px !important;
    overflow: visible !important;
    isolation: isolate;
  }

  .services-section .automation-visual .node-slack::after,
  .services-section .automation-visual .node-air::after {
    display: block;
    inset: -9px !important;
    z-index: 1;
    border-radius: 23px !important;
    background: #ecedf1 !important;
    box-shadow:
      -5px -5px 10px rgba(250, 251, 255, 0.86),
      5px 5px 14px rgba(166, 171, 189, 0.16);
  }

  .services-section .automation-visual .node-slack > *,
  .services-section .automation-visual .node-air > * {
    position: relative;
    z-index: 2;
  }

  .services-section .automation-visual .node-slack .logo-svg,
  .services-section .automation-visual .node-air .logo-svg {
    width: 34px;
    height: 34px;
  }

  .services-section .workflow-pulse,
  .services-section .workflow-pulse.workflow-bar {
    opacity: 0.72;
  }

  .services-section .chat-demo {
    width: 308px;
    min-height: 304px;
    margin-top: 34px;
    margin-bottom: 22px;
  }

  .services-section .bubble.bot,
  .services-section .bubble.user,
  .services-section .bubble.reply {
    transition:
      opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .bubble.bot {
    left: 7px;
    top: 40px;
    width: 178px;
  }

  .services-section .bubble.user {
    right: 7px;
    top: 118px;
    width: 244px;
  }

  .services-section .bubble.reply {
    left: 7px;
    top: 270px;
    width: 274px;
    min-height: 132px;
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  .services-section .chat-input {
    left: 7px;
    right: 7px;
    top: 222px;
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.bot {
    transform: translate3d(0, -26px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.user {
    transform: translate3d(0, -42px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.reply {
    opacity: 1;
    transform: translate3d(0, -88px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .chat-input {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  .services-section .content-visual {
    width: 300px;
    min-height: 292px;
    margin-top: 58px;
    margin-bottom: 28px;
    overflow: visible;
  }

  .services-section .content-hover-icons {
    left: 0;
    top: 0;
    width: 300px;
    height: 92px;
    transform: none;
  }

  .services-section .content-icon {
    top: 42px;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #222;
    background: #ecedf1;
    box-shadow:
      -5px -5px 10px rgba(250, 251, 255, 0.88),
      5px 5px 14px rgba(166, 171, 189, 0.18);
    opacity: 0;
    transition:
      opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .content-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .services-section .content-icon-linkedin {
    left: 28px;
    transform: translate3d(52px, 28px, 0) rotate(-8deg) scale(0.96);
  }

  .services-section .content-icon-video {
    left: 122px;
    transform: translate3d(0, 28px, 0) rotate(-4deg) scale(0.96);
  }

  .services-section .content-icon-twitter {
    left: 216px;
    transform: translate3d(-52px, 28px, 0) rotate(8deg) scale(0.96);
  }

  .services-section .service-card:nth-child(4).is-hovered .content-icon {
    opacity: 1;
  }

  .services-section .service-card:nth-child(4).is-hovered .content-icon-linkedin {
    transform: translate3d(-8px, -58px, 0) rotate(-14deg) scale(1);
  }

  .services-section .service-card:nth-child(4).is-hovered .content-icon-video {
    transform: translate3d(0, -76px, 0) rotate(-8deg) scale(1);
  }

  .services-section .service-card:nth-child(4).is-hovered .content-icon-twitter {
    transform: translate3d(8px, -58px, 0) rotate(14deg) scale(1);
  }

  .services-section .service-card:nth-child(4).is-hovered .content-hover-sheet.sheet-back {
    opacity: 0.72;
    transform: translate3d(0, -34px, 0);
  }

  .services-section .service-card:nth-child(4).is-hovered .content-hover-sheet.sheet-mid {
    opacity: 0.84;
    transform: translate3d(0, -18px, 0);
  }

  .services-section .service-card:nth-child(4).is-hovered .content-lines,
  .services-section .service-card:nth-child(4).is-hovered .content-visual::after {
    opacity: 0;
  }
}

/* Mobile screenshot QA: real iPhone widths need stricter centering and cleaner card motion. */
@media (max-width: 809px) {
  .hero-inner {
    justify-items: center;
    grid-template-columns: minmax(0, 1fr);
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1,
  .hero p,
  .hero .button,
  .client-proof {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: 0;
    right: 0;
  }

  .hero h1,
  .hero p {
    text-align: center;
  }

  .client-proof {
    width: min(335px, calc(var(--client-width, 100vw) - 40px));
  }

  .services-section .automation-visual {
    width: min(304px, calc(100% - 34px));
    min-height: 270px;
    margin-top: 28px;
    margin-bottom: 10px;
  }

  .services-section .automation-visual .app-node,
  .services-section .automation-visual .openai-node {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    box-shadow:
      -5px -5px 10px rgba(250, 251, 255, 0.9),
      5px 5px 14px rgba(166, 171, 189, 0.18) !important;
  }

  .services-section .automation-visual .openai-node {
    width: 58px !important;
    height: 58px !important;
  }

  .services-section .automation-visual .node-zap {
    left: 83px;
    top: 44px;
  }

  .services-section .automation-visual .node-slack {
    left: 184px;
    top: 44px;
  }

  .services-section .automation-visual .node-ms {
    left: 38px;
    top: 123px;
  }

  .services-section .automation-visual .node-gmail {
    left: 229px;
    top: 123px;
  }

  .services-section .automation-visual .node-air {
    left: 83px;
    top: 202px;
  }

  .services-section .automation-visual .node-notion {
    left: 184px;
    top: 202px;
  }

  .services-section .automation-visual .node-slack::after,
  .services-section .automation-visual .node-air::after,
  .services-section .automation-visual .app-node::after,
  .services-section .automation-visual .openai-node::after {
    inset: -6px !important;
    border-radius: 22px !important;
  }

  .services-section .automation-visual .logo-svg {
    width: 32px;
    height: 32px;
  }

  .services-section .service-card:nth-child(2) {
    min-height: 506px;
  }

  .services-section .chat-demo {
    position: relative;
    width: min(304px, calc(100% - 34px));
    min-height: 342px;
    margin-top: 36px;
    margin-bottom: 20px;
    overflow: visible;
  }

  .services-section .service-card:nth-child(2) .bubble {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.18;
  }

  .services-section .service-card:nth-child(2) .bubble.bot {
    left: 0;
    top: 34px;
    width: 188px;
    height: 44px;
    min-height: 44px;
    transform: none;
  }

  .services-section .service-card:nth-child(2) .bubble.user {
    left: 64px;
    right: auto;
    top: 122px;
    width: 240px;
    min-height: 72px;
    transform: none;
  }

  .services-section .service-card:nth-child(2) .bubble.reply {
    left: 0;
    right: auto;
    top: 230px;
    width: 304px !important;
    max-width: none;
    min-height: 122px;
    border-radius: 22px 22px 22px 8px;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  .services-section .service-card:nth-child(2) .chat-input {
    left: 0;
    right: auto;
    top: 268px;
    width: 304px;
    opacity: 1;
    transform: none;
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.bot {
    transform: translate3d(0, -16px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.user {
    transform: translate3d(0, -22px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.reply {
    opacity: 1;
    transform: translate3d(0, -10px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .chat-input {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
}

/* Mobile services QA: balanced workflow nodes and clean support-chat tap state. */
@media (max-width: 809px) {
  .services-section .service-card:nth-child(1) {
    min-height: 462px;
  }

  .services-section .service-card:nth-child(1) .automation-visual {
    width: min(316px, calc(100% - 20px));
    min-height: 292px;
    margin-top: 26px;
    margin-bottom: 4px;
    overflow: hidden;
  }

  .services-section .service-card:nth-child(1) .automation-visual::before,
  .services-section .service-card:nth-child(1) .automation-visual::after {
    top: 50% !important;
    width: 228px !important;
    opacity: 0.34;
  }

  .services-section .service-card:nth-child(1) .automation-visual .app-node {
    width: 56px !important;
    height: 56px !important;
    border-radius: 17px !important;
    background: #ecedf1 !important;
    box-shadow: 0 15px 34px rgba(91, 99, 134, 0.15) !important;
  }

  .services-section .service-card:nth-child(1) .automation-visual .openai-node {
    left: 50% !important;
    top: 50% !important;
    width: 58px !important;
    height: 58px !important;
    transform: translate(-50%, -50%) !important;
  }

  .services-section .service-card:nth-child(1) .automation-visual .node-zap {
    left: 74px;
    top: 38px;
  }

  .services-section .service-card:nth-child(1) .automation-visual .node-slack {
    left: auto;
    right: 74px;
    top: 38px;
  }

  .services-section .service-card:nth-child(1) .automation-visual .node-ms {
    left: 30px;
    top: 118px;
  }

  .services-section .service-card:nth-child(1) .automation-visual .node-gmail {
    left: auto;
    right: 30px;
    top: 118px;
  }

  .services-section .service-card:nth-child(1) .automation-visual .node-air {
    left: 74px;
    top: 198px;
  }

  .services-section .service-card:nth-child(1) .automation-visual .node-notion {
    left: auto;
    right: 74px;
    top: 198px;
  }

  .services-section .service-card:nth-child(1) .automation-visual .node-slack::after,
  .services-section .service-card:nth-child(1) .automation-visual .node-air::after,
  .services-section .service-card:nth-child(1) .automation-visual .app-node::after,
  .services-section .service-card:nth-child(1) .automation-visual .openai-node::after {
    inset: -5px !important;
    border-radius: 21px !important;
    background: #ecedf1 !important;
    box-shadow: none !important;
  }

  .services-section .service-card:nth-child(1) .automation-visual .logo-svg {
    width: 31px;
    height: 31px;
  }

  .services-section .service-card:nth-child(2) {
    min-height: 570px;
  }

  .services-section .service-card:nth-child(2) .chat-demo {
    width: min(306px, calc(100% - 24px));
    min-height: 392px;
    margin-top: 28px;
    margin-bottom: 16px;
    overflow: hidden;
  }

  .services-section .service-card:nth-child(2) .bubble {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.2;
    transition:
      opacity 240ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card:nth-child(2) .bubble.bot {
    left: 0;
    top: 24px;
    width: 192px;
    height: 46px;
    min-height: 46px;
    transform: none;
  }

  .services-section .service-card:nth-child(2) .bubble.user {
    left: auto;
    right: 0;
    top: 106px;
    width: 238px;
    min-height: 64px;
    transform: none;
  }

  .services-section .service-card:nth-child(2) .bubble.reply {
    left: 0;
    right: auto;
    top: 218px;
    width: 306px !important;
    max-width: none;
    min-height: 126px;
    padding: 14px 16px;
    border-radius: 22px 22px 22px 8px;
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  .services-section .service-card:nth-child(2) .chat-input {
    left: 0;
    right: auto;
    top: 248px;
    width: 306px;
    height: 44px;
    opacity: 1;
    transform: none;
    transition:
      opacity 140ms ease,
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-section .service-card:nth-child(2) .chat-input strong {
    width: 34px;
    height: 34px;
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.bot {
    transform: translate3d(0, -8px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.user {
    transform: translate3d(0, -10px, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .bubble.reply {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .services-section .service-card:nth-child(2).is-hovered .chat-input {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
  }
}
