:root {
  --navy: #0f1d3e;
  --navy-soft: #30405f;
  --yellow: #ffc71f;
  --yellow-deep: #f5b900;
  --yellow-pale: #fff9df;
  --blue: #3c8df5;
  --blue-pale: #eef7ff;
  --mint: #22c78b;
  --paper: #ffffff;
  --line: #e7eaf0;
  --muted: #667089;
  --shadow: 0 18px 50px rgba(35, 47, 76, 0.09);
  --shadow-soft: 0 8px 28px rgba(35, 47, 76, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.75;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
.button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(15, 29, 62, 0.06);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(31, 40, 64, 0.08);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-image {
  display: block;
  width: clamp(140px, 13vw, 170px);
  height: auto;
}

.site-footer .brand-image {
  width: 160px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-link {
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  padding: 0 26px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 9px 22px rgba(255, 193, 7, 0.2);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: #ffd44f;
  box-shadow: 0 12px 28px rgba(255, 193, 7, 0.3);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 44px;
  padding-inline: 25px;
  border-radius: 11px;
  font-size: 13px;
}

.button-large {
  min-width: 205px;
  min-height: 62px;
  padding-inline: 32px;
  font-size: 16px;
}

.button-primary {
  background: linear-gradient(135deg, #ffd237, #ffbd16);
}

.button-outline {
  border: 2px solid #6d778e;
  background: #fff;
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 10px;
  background: #f4f6fa;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 92px 0 54px;
  overflow: hidden;
  border-bottom: 1px solid #f1f1f1;
  background: linear-gradient(106deg, #fff 0%, #fffdf5 50%, #fff9e9 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: radial-gradient(rgba(255, 196, 22, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 65%, transparent);
}

.hero-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  opacity: 0.36;
  filter: blur(3px);
}

.hero-glow-left {
  top: -210px;
  left: 8%;
  background: radial-gradient(circle, #fff4b9, transparent 68%);
}

.hero-glow-right {
  right: -80px;
  bottom: -190px;
  background: radial-gradient(circle, #ddecff, transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 30px;
}

.eyebrow {
  margin: 0 0 15px;
  color: #5c6680;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow span {
  margin-right: 5px;
  color: var(--yellow-deep);
  font-size: 17px;
}

.eyebrow.centered {
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 3.35vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.36;
}

.hero-lead {
  margin: 25px 0 0;
  color: var(--navy-soft);
  font-size: 15px;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--yellow);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-chat-scene {
  min-height: 515px;
}

.chat-app {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: -12%;
  width: 112%;
  height: 462px;
  overflow: hidden;
  border: 1px solid #dfe4ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(27, 40, 68, 0.16), 0 3px 8px rgba(27, 40, 68, 0.08);
  text-align: left;
  transform: rotate(0.35deg);
}

.chat-app-bar {
  display: grid;
  height: 40px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 13px;
  color: #eae5ee;
  background: #38113e;
  font-size: 10px;
  font-weight: 800;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb5f56;
}

.window-dots i:nth-child(2) {
  background: #f9bd2e;
}

.window-dots i:nth-child(3) {
  background: #2ac840;
}

.chat-search {
  justify-self: end;
  min-width: 85px;
  padding: 3px 9px;
  border-radius: 5px;
  color: #cfc3d2;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.chat-app-body {
  display: grid;
  height: calc(100% - 40px);
  grid-template-columns: 31% 69%;
}

.chat-sidebar {
  display: flex;
  min-width: 0;
  padding: 14px 10px 12px;
  flex-direction: column;
  color: #e4dce6;
  background: #431448;
  font-size: 10px;
}

.workspace-name {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 15px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.workspace-name span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 6px;
  color: #38113e;
  background: #ffc71f;
  font-size: 9px;
}

.chat-sidebar nav {
  display: grid;
  gap: 2px;
}

.chat-sidebar nav span,
.chat-sidebar nav b,
.chat-sidebar nav small {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  padding: 6px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-sidebar nav small {
  margin-top: 7px;
  padding-bottom: 2px;
  color: #bcaebe;
  font-size: 8px;
  text-transform: uppercase;
}

.chat-sidebar nav b {
  color: #fff;
  background: #1264a3;
}

.online-user {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: auto 7px 0;
}

.online-user i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bac76;
}

.chat-channel {
  position: relative;
  min-width: 0;
  background: #fff;
}

.channel-header {
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid #e7e8eb;
}

.channel-header div {
  display: grid;
}

.channel-header strong {
  font-size: 12px;
}

.channel-header small {
  color: #777d8d;
  font-size: 8px;
}

.channel-header > span {
  color: #7a7f8d;
  font-size: 12px;
}

.message-list {
  padding: 12px 14px 65px;
}

.chat-message {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 8px;
  padding: 7px 0;
}

.chat-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  overflow: hidden;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.avatar-user {
  background: linear-gradient(145deg, #526fc7, #334b99);
}

.avatar-ai {
  background: #fff4c8;
}

.avatar-ai img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-message p {
  margin: 0;
  color: #272b35;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.48;
}

.message-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px !important;
}

.message-meta b {
  color: #171a21;
  font-size: 10px;
  font-weight: 900;
}

.message-meta time {
  color: #9397a1;
  font-size: 7px;
}

.app-badge {
  padding: 1px 4px;
  border-radius: 3px;
  color: #fff;
  background: #1264a3;
  font-size: 6px;
  font-weight: 900;
}

.tool-created {
  display: grid;
  width: 100%;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  padding: 8px;
  border: 1px solid #dfe5ed;
  border-left: 3px solid var(--yellow);
  border-radius: 7px;
  background: #fbfcfe;
  box-shadow: 0 4px 10px rgba(34, 48, 76, 0.05);
}

.tool-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--yellow);
  font-size: 13px;
}

.tool-created div {
  display: grid;
  min-width: 0;
}

.tool-created b {
  overflow: hidden;
  font-size: 8.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-created small {
  color: #6c7485;
  font-size: 7px;
}

.done-badge {
  padding: 3px 6px;
  border-radius: 999px;
  color: #087a53;
  background: #dff7ee;
  font-size: 7px;
  font-weight: 900;
}

.chat-input {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  height: 46px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid #9ba0a9;
  border-radius: 8px;
  color: #747986;
  background: #fff;
  font-size: 8px;
}

.chat-input p {
  margin: 0;
  color: #9a9da5;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(60, 141, 245, 0.13);
  border-radius: 50%;
}

.orbit-a {
  top: 25px;
  right: 13px;
  width: 430px;
  height: 430px;
}

.orbit-b {
  right: 67px;
  bottom: 25px;
  width: 360px;
  height: 360px;
  border-color: rgba(255, 199, 31, 0.25);
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.4;
}

.steps-title span {
  display: block;
  white-space: nowrap;
}

.section-heading p:not(.eyebrow) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.steps-section {
  background: #fff;
}

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

.step-card {
  position: relative;
  min-height: 390px;
  padding: 23px 22px 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 17px;
  font-weight: 900;
}

.step-visual {
  height: 205px;
  margin: 0 -2px 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f9fcff, #eef7ff);
}

.step-image-visual {
  overflow: hidden;
}

.step-image-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mascot-mini {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fffaf0, #fff4c6);
}

.mascot-mini img {
  width: 72%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 13px rgba(65, 49, 18, 0.12));
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.step-card p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 600;
}

.work-section {
  background: linear-gradient(180deg, #fffaf0, #fffdf8);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #f0eee7;
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow);
}

.work-card {
  display: flex;
  min-width: 0;
  padding: 35px;
  flex-direction: column;
}

.work-card-human {
  border-right: 1px solid #eceff3;
  background: linear-gradient(145deg, #f9fcff, #edf7ff);
}

.work-card-ai {
  background: linear-gradient(145deg, #fff, #fffaf0);
}

.work-copy {
  min-width: 0;
}

.work-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 10px;
  flex-direction: column;
  font-weight: 900;
}

.work-label span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.work-label strong {
  font-size: 22px;
  line-height: 1.4;
}

.work-card-ai .work-label span {
  color: var(--navy);
  background: var(--yellow);
}

.work-card h3 {
  margin: 0 0 5px;
  font-size: 22px;
}

.work-card p:not(.work-label) {
  margin: 0;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 600;
}

.message-pills {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.message-pills span {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px 9px 45px;
  border: 1px solid rgba(66, 94, 135, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 18px rgba(38, 65, 98, 0.06);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.message-pills span::before {
  position: absolute;
  left: 11px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  content: "?";
  font-size: 11px;
  font-weight: 900;
}

.work-card-ai .message-pills span {
  border-color: rgba(229, 171, 0, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.work-card-ai .message-pills span::before {
  color: var(--navy);
  background: var(--yellow);
  content: "✓";
}

.work-illustration {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 26px;
  border-radius: 16px;
  filter: drop-shadow(0 18px 20px rgba(23, 41, 72, 0.13));
}

.integrations-section {
  background: #fff;
}

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

.integration-card {
  display: flex;
  min-height: 275px;
  align-items: center;
  padding: 28px 18px 18px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.integration-card:hover {
  transform: translateY(-5px);
}

.integration-card h3 {
  margin: 15px 0 21px;
  font-size: 17px;
}

.integration-card .button {
  width: 100%;
  margin-top: auto;
  font-size: 13px;
}

.integration-card .button-coming {
  border: 1px solid #dce2eb;
  color: #7d8798;
  background: #eef1f5;
  box-shadow: none;
  cursor: not-allowed;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.demo-slack-section {
  background: linear-gradient(145deg, #fffaf0, #f6f9ff 55%, #f3fbff);
}

.demo-slack-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid #dfe5ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(31, 45, 77, 0.14);
}

.demo-slack-copy {
  display: flex;
  padding: clamp(34px, 4vw, 54px);
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(150deg, #fff 10%, #fffaf0);
}

.demo-slack-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #58637a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.demo-slack-brand img {
  width: 44px;
  height: 44px;
}

.demo-slack-copy h3 {
  margin: 22px 0 24px;
  font-size: clamp(23px, 2.2vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.5;
}

.demo-slack-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-slack-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 800;
}

.demo-slack-points span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
}

.button-slack {
  position: relative;
  width: min(100%, 380px);
  min-height: 54px;
  justify-content: center;
  border: 1px solid var(--yellow-deep);
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 12px 25px rgba(245, 185, 0, 0.24);
}

.demo-slack-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.button-slack:hover {
  background: #ffd44f;
  box-shadow: 0 15px 30px rgba(245, 185, 0, 0.3);
  transform: translateY(-2px);
}

.button-slack img {
  width: 24px;
  height: 24px;
  padding: 3px;
  border-radius: 5px;
  background: #fff;
}

.button-slack span {
  position: absolute;
  right: 20px;
  font-size: 22px;
  line-height: 1;
}

.demo-slack-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.demo-slack-window {
  display: grid;
  min-width: 0;
  min-height: 520px;
  grid-template-columns: 160px minmax(0, 1fr);
  border-left: 1px solid #e5e8ef;
  background: #fff;
}

.demo-slack-window .customize-sidebar {
  border-radius: 0;
}

.demo-slack-window .customize-thread {
  gap: 18px;
  padding: 26px 24px;
}

.demo-slack-window .customize-message > div {
  padding: 14px 16px;
}

.demo-result-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.demo-result-list > span {
  display: grid;
  padding: 10px 12px;
  grid-template-columns: 54px 1fr;
  gap: 1px 8px;
  border: 1px solid #e7e2f5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.demo-result-list b {
  display: grid;
  width: 48px;
  min-height: 21px;
  grid-row: 1 / span 2;
  place-items: center;
  align-self: center;
  border-radius: 999px;
  color: #166b50;
  background: #dff8ed;
  font-size: 9px;
}

.demo-result-list strong {
  margin: 0;
  font-size: 11px;
}

.demo-result-list small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
}

.demo-complete {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-left: 53px;
  padding: 11px 13px;
  border-radius: 10px;
  color: #197154;
  background: #edfbf6;
  font-size: 9px;
  font-weight: 800;
}

.demo-complete span {
  color: #11a977;
}

.pricing-section {
  background: linear-gradient(180deg, #fbfcff, #fff);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 405px;
  padding: 31px 22px 20px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border: 2px solid var(--yellow);
  background: linear-gradient(180deg, #fffdf4, #fff);
  box-shadow: 0 18px 48px rgba(255, 193, 7, 0.16);
  transform: translateY(-7px);
}

.recommended {
  position: absolute;
  top: -17px;
  left: 50%;
  min-width: 115px;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%);
}

.plan-name {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.price {
  margin: 8px 0 20px;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
}

.price strong {
  font-size: 45px;
  letter-spacing: -0.06em;
}

.price-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 750;
}

.price-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--yellow);
  content: "✓";
  font-size: 10px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
  padding-inline: 12px;
  font-size: 13px;
}

.pricing-note {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.faq-section {
  padding-top: 70px;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-pale);
  content: "+";
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -5px 0 24px;
  padding-right: 50px;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  background: linear-gradient(145deg, #f5f9ff, #fffdf5);
}

.contact-layout {
  display: block;
}

.contact-copy {
  margin-bottom: clamp(28px, 4vw, 42px);
  text-align: center;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.45;
}

.contact-section-form {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid #dfe5ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.contact-section-form .contact-privacy {
  margin: 11px 0 0 !important;
  color: var(--muted);
  font-size: 10px !important;
  text-align: center;
}

.final-cta {
  padding-top: 40px;
}

.cta-panel {
  position: relative;
  display: grid;
  min-height: 345px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 55px 58px;
  overflow: hidden;
  border: 1px solid #f4edd4;
  border-radius: 24px;
  background: linear-gradient(110deg, #fff9e7, #fff 55%, #fff6d8);
  box-shadow: var(--shadow);
}

.cta-panel::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 193, 7, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(29px, 3.4vw, 44px);
  letter-spacing: -0.05em;
}

.cta-copy > p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--navy-soft);
  font-size: 15px;
  font-weight: 700;
}

.cta-visual {
  position: absolute;
  right: 1%;
  bottom: -71px;
  width: 38%;
}

.cta-visual img {
  width: 100%;
  filter: drop-shadow(0 18px 24px rgba(73, 49, 18, 0.14));
  transform: rotate(-3deg);
}

.cta-visual span {
  position: absolute;
  z-index: 3;
  top: -12px;
  left: -4%;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  transform: rotate(-8deg);
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  min-height: 130px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.footer-inner p {
  color: var(--muted);
  font-size: 10px;
}

.contact-dialog {
  width: min(calc(100% - 30px), 520px);
  max-height: calc(100dvh - 30px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(14, 27, 57, 0.28);
}

.contact-dialog::backdrop {
  background: rgba(11, 22, 47, 0.62);
  backdrop-filter: blur(6px);
}

.contact-form {
  position: relative;
  padding: 42px;
}

.contact-form h2 {
  margin: 0;
  font-size: 30px;
}

.contact-form > p:not(.eyebrow):not(.form-status) {
  margin: 8px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 800;
}

.contact-form label > span {
  margin-left: 7px;
  padding: 2px 6px;
  border-radius: 5px;
  color: #9d2d45;
  background: #fff0f3;
  font-size: 9px;
  vertical-align: 2px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #dce1ea;
  border-radius: 11px;
  padding: 13px 15px;
  outline: none;
  background: #fbfcff;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding-block: 0;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(60, 141, 245, 0.1);
}

.contact-form .contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .button {
  width: 100%;
  margin-top: 24px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f1f3f7;
  cursor: pointer;
  font-size: 24px;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: #168561;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: #b4233f;
}

.jobs-section {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.job-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.job-card-visual {
  overflow: hidden;
  padding: 0 24px 24px;
}

.job-image-frame {
  position: relative;
  width: calc(100% + 48px);
  aspect-ratio: 3 / 2;
  margin: 0 -24px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f6f8fc;
}

.job-image-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-mini-ui {
  --accent: #6d63db;
  --tint: #f2efff;
  position: absolute;
  inset: 0;
  display: flex;
  padding: 18px;
  flex-direction: column;
  background: linear-gradient(145deg, #f9fbff, var(--tint));
  color: var(--navy);
}

.job-ui-customer {
  --accent: #29ad7d;
  --tint: #edfbf6;
}

.job-ui-sales {
  --accent: #258cf0;
  --tint: #edf7ff;
}

.job-ui-invoice {
  --accent: #e8a900;
  --tint: #fff9e8;
}

.job-ui-reminder {
  --accent: #ef5a67;
  --tint: #fff1f3;
}

.job-ui-meeting {
  --accent: #8c5be8;
  --tint: #f6f1ff;
}

.job-ui-head {
  display: grid;
  min-height: 46px;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 10px;
}

.job-nappy {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 13px;
  background: #fff4c8;
  box-shadow: 0 5px 14px rgba(44, 52, 80, 0.1);
}

.job-nappy img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.job-ui-head strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.job-ui-head > i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.job-ui-list {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.job-ui-list > span {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(67, 81, 116, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 5px 12px rgba(34, 47, 78, 0.05);
  font-size: 11px;
  font-weight: 800;
}

.job-ui-list > span > b {
  min-width: 46px;
  padding: 4px 6px;
  border-radius: 6px;
  color: var(--accent);
  background: var(--tint);
  font-size: 8px;
  text-align: center;
}

.job-ui-list em {
  overflow: hidden;
  font-style: normal;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-ui-list small {
  margin-left: auto;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}

.job-people > span > b {
  display: grid;
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
}

.job-bars {
  display: grid;
  gap: 13px;
  margin-top: 23px;
}

.job-bars > span {
  display: grid;
  grid-template-columns: 36px 1fr 48px;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}

.job-bars b,
.job-bars em {
  font-style: normal;
  font-weight: 900;
}

.job-bars em {
  color: var(--accent);
  font-size: 9px;
  text-align: right;
}

.job-bars i {
  position: relative;
  display: block;
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
}

.job-bars i::after {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #69baff, var(--accent));
  content: "";
}

.job-docs > span > b {
  display: grid;
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  color: var(--accent);
  background: #fff4cf;
  font-size: 16px;
}

.job-tasks > span:last-child small {
  color: #d93c50;
}

.job-tasks > span > b {
  min-width: auto;
  padding: 0;
  color: var(--accent);
  background: transparent;
}

.job-summary {
  display: grid;
  margin-top: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.job-summary > span {
  display: grid;
  min-height: 61px;
  align-content: center;
  padding: 9px 11px;
  border: 1px solid rgba(67, 81, 116, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
}

.job-summary small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 900;
}

.job-summary b {
  margin-top: 2px;
  font-size: 11px;
}

.job-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #4a75e8);
  box-shadow: 0 9px 18px rgba(60, 141, 245, 0.2);
  font-size: 17px;
  font-weight: 900;
}

.job-card:nth-child(2n) .job-icon {
  color: var(--navy);
  background: linear-gradient(145deg, #ffd957, var(--yellow));
  box-shadow: 0 9px 18px rgba(255, 190, 19, 0.2);
}

.job-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.job-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.customize-section {
  background: linear-gradient(145deg, #f7f5ff, #f5fbff 55%, #fffdf5);
}

.customize-grid {
  display: block;
}

.customize-copy {
  margin-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
}

.customize-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.customize-chat {
  display: grid;
  width: min(100%, 1020px);
  margin-inline: auto;
  overflow: hidden;
  grid-template-columns: 184px minmax(0, 1fr);
  border: 1px solid #dfe6f1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(45, 56, 88, 0.14);
}

.customize-sidebar {
  display: flex;
  min-width: 0;
  padding: 18px 12px 14px;
  flex-direction: column;
  color: #f9f1fb;
  background: linear-gradient(180deg, #401244, #301034);
}

.customize-workspace {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 5px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.customize-workspace > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: #31203b;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}

.customize-workspace strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customize-workspace b {
  font-size: 11px;
}

.customize-sidebar-links {
  display: grid;
  gap: 5px;
  margin-top: 15px;
}

.customize-sidebar-links span {
  padding: 8px 10px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.customize-sidebar-links small {
  margin: 12px 10px 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
}

.customize-sidebar-links .active {
  color: #fff;
  background: #1264a3;
}

.customize-sidebar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 7px 2px;
  font-size: 11px;
  font-weight: 800;
}

.customize-sidebar-user i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd28f;
}

.customize-main {
  min-width: 0;
  background: #fff;
}

.customize-chat-header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid #e8edf4;
  background: #fbfcff;
}

.customize-chat-header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customize-chat-header > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c988;
  box-shadow: 0 0 0 4px rgba(34, 201, 136, 0.12);
}

.customize-thread {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.customize-message {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 11px;
}

.customize-message > div {
  min-width: 0;
  padding: 13px 15px;
  border-radius: 6px 16px 16px;
  background: #eff7ff;
}

.customize-message.ai-message > div {
  background: #f5f1ff;
}

.customize-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
}

.user-avatar {
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #556fe0);
}

.nappy-avatar {
  background: #fff4c8;
}

.nappy-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customize-message strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.customize-message p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.customize-result {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.customize-result span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #14714f;
  background: #ddf8ed;
  font-size: 10px;
  font-weight: 800;
}

.customize-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 22px 22px 75px;
  padding: 11px 13px;
  border: 1px solid #dfe6f1;
  border-radius: 11px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
}

.customize-input p {
  margin: 0;
}

.customize-input span:last-child {
  color: var(--blue);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 30px rgba(31, 40, 64, 0.1);
    transition: max-height 0.28s ease;
  }

  .mobile-nav.is-open {
    max-height: 400px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 13px 0;
    border-bottom: 1px solid #f1f2f5;
    font-size: 13px;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 730px);
    min-height: 590px;
    margin-inline: auto;
  }

  .chat-app {
    right: 2%;
    width: 96%;
  }

  .step-grid,
  .jobs-grid,
  .integration-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .customize-grid {
    grid-template-columns: 1fr;
  }

  .customize-copy {
    max-width: 760px;
  }

  .customize-chat {
    width: min(100%, 900px);
    margin-inline: auto;
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .demo-slack-panel {
    grid-template-columns: 1fr;
  }

  .demo-slack-window {
    min-height: 500px;
    border-top: 1px solid #e5e8ef;
    border-left: 0;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
}

@media (min-width: 761px) and (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 14px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(34px, 4vw, 42px);
  }

  .hero-visual {
    width: 100%;
    min-height: 515px;
    margin: 0;
  }

  .chat-app {
    top: 38px;
    right: -7%;
    width: 108%;
  }

}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand-image {
    width: 128px;
  }

  .desktop-only,
  .header-actions .button-small {
    display: none;
  }

  .hero {
    padding: 58px 0 34px;
  }

  .hero h1 {
    font-size: clamp(29px, 9vw, 41px);
    line-height: 1.38;
  }

  .hero h1 br:nth-child(2) {
    display: none;
  }

  .hero-lead br {
    display: none;
  }

  .button-large {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .trust-list {
    gap: 10px 16px;
  }

  .hero-visual {
    min-height: 450px;
    margin-top: 20px;
  }

  .hero-chat-scene {
    min-height: 405px;
  }

  .chat-app {
    top: 5px;
    right: auto;
    left: 0;
    width: 100%;
    height: 370px;
    transform: none;
  }

  .chat-app-bar {
    grid-template-columns: auto 1fr;
    font-size: 8px;
  }

  .chat-app-bar > span:first-of-type {
    justify-self: center;
  }

  .chat-search,
  .chat-sidebar {
    display: none;
  }

  .chat-app-body {
    grid-template-columns: 1fr;
  }

  .channel-header {
    height: 53px;
  }

  .message-list {
    padding: 8px 12px 58px;
  }

  .chat-message {
    grid-template-columns: 27px 1fr;
    gap: 7px;
    padding: 5px 0;
  }

  .chat-avatar {
    width: 27px;
    height: 27px;
    font-size: 8px;
  }

  .chat-message p {
    font-size: 8.5px;
  }

  .chat-input {
    height: 40px;
  }

  .visual-orbit {
    display: none;
  }

  .section {
    padding: 75px 0;
  }

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

  .section-heading h2 {
    font-size: 27px;
  }

  .section-heading .steps-title {
    font-size: clamp(20px, 6vw, 27px);
  }

  .step-grid,
  .jobs-grid,
  .integration-grid,
  .pricing-grid,
  .work-grid,
  .faq-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 350px;
  }

  .job-card {
    min-height: 0;
  }

  .customize-copy h2 {
    font-size: 29px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-section-form {
    padding: 25px 20px;
  }

  .customize-chat {
    display: block;
  }

  .demo-slack-window {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .demo-slack-copy {
    padding: 30px 24px;
  }

  .demo-slack-copy h3 {
    margin: 18px 0 20px;
    font-size: 23px;
  }

  .demo-slack-window .customize-thread {
    padding: 18px 14px;
  }

  .demo-slack-window .customize-message > div {
    padding: 11px 12px;
  }

  .demo-result-list > span {
    grid-template-columns: 48px 1fr;
    padding: 9px;
  }

  .demo-result-list b {
    width: 43px;
  }

  .demo-complete {
    margin-left: 45px;
  }

  .customize-sidebar {
    display: none;
  }

  .customize-chat-header > span {
    display: none;
  }

  .customize-thread {
    gap: 13px;
    padding: 16px;
  }

  .customize-message {
    grid-template-columns: 36px 1fr;
    gap: 9px;
  }

  .customize-avatar {
    width: 36px;
    height: 36px;
  }

  .customize-message > div {
    padding: 11px 12px;
  }

  .customize-input {
    margin: 0 16px 16px 61px;
    font-size: 10px;
  }

  .work-card {
    padding: 27px 22px;
  }

  .work-card-human {
    border-right: 0;
    border-bottom: 1px solid #eceff3;
  }

  .work-label span {
    min-height: 25px;
    padding: 4px 9px;
    font-size: 11px;
  }

  .work-label strong {
    font-size: 19px;
  }

  .message-pills {
    gap: 5px;
  }

  .message-pills span {
    min-height: 40px;
    padding: 8px 10px 8px 42px;
    font-size: 10px;
  }

  .work-illustration {
    width: 100%;
    margin-top: 22px;
  }

  .integration-card {
    min-height: 245px;
  }

  .price-card {
    min-height: 365px;
  }

  .faq-layout {
    gap: 10px;
  }

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

  .cta-panel {
    min-height: 620px;
    padding: 37px 24px;
    align-items: start;
  }

  .cta-visual {
    right: -3%;
    bottom: -64px;
    width: 76%;
  }

  .cta-visual span {
    left: -17%;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .contact-form {
    padding: 38px 23px 25px;
  }
}
