.book-call-page-root {
  background: #F8F7F7;
  --book-call-v-line-color: rgba(207, 85, 65, 0.12);
  --book-call-dual-line-gap: var(--grid-gutter, 12px);
}

.book-call-main {
  min-height: 100vh;
  padding: calc(max(24px, env(safe-area-inset-top)) + 96px) var(--grid-margin, 24px) 72px;
  position: relative;
  z-index: 2;
}

.book-call-col-grid {
  --book-call-col-width: calc((100% - (2 * var(--grid-margin, 24px)) - (11 * var(--grid-gutter, 12px))) / 12);
  --book-call-span-width: calc((var(--book-call-col-width) * 3) + (var(--grid-gutter, 12px) * 2));
  --book-call-span-step: calc(var(--book-call-span-width) + var(--grid-gutter, 12px));
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.book-call-col-span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--book-call-span-width);
  border-left: 1px solid var(--book-call-v-line-color);
  border-right: 1px solid var(--book-call-v-line-color);
}

.book-call-col-span--1 {
  left: var(--grid-margin, 24px);
}

.book-call-col-span--2 {
  left: calc(var(--grid-margin, 24px) + var(--book-call-span-step));
}

.book-call-col-span--3 {
  left: calc(var(--grid-margin, 24px) + (var(--book-call-span-step) * 2));
}

.book-call-col-span--4 {
  left: calc(var(--grid-margin, 24px) + (var(--book-call-span-step) * 3));
}

.book-call-section {
  max-width: 980px;
  margin: 0 auto;
}

.book-call-top-lines {
  margin-top: 64px;
  margin-bottom: 0;
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.book-call-top-line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(207, 85, 65, 0.24);
}

.book-call-top-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(207, 85, 65, 0.18);
  mix-blend-mode: screen;
  pointer-events: none;
}

.book-call-top-line + .book-call-top-line {
  margin-top: var(--book-call-dual-line-gap);
}

.book-call-feature-card {
  --book-call-step-offset: 80px;
  position: relative;
  z-index: 6;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #EAE6E5;
  border-radius: 32px;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  color: #0F1513;
  overflow: hidden;
}

.book-call-progress-track {
  width: 100%;
  height: 2.5px;
  background: rgba(15, 21, 19, 0.35);
  position: relative;
  overflow: hidden;
}

.book-call-progress-runner {
  position: absolute;
  left: 0;
  top: 0;
  height: 2.5px;
  width: 0;
  background: #0F1513;
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-call-feature-content {
  position: relative;
  z-index: 1;
  margin-top: var(--book-call-step-offset);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.book-call-feature-card.is-step-active .book-call-feature-content {
  position: absolute;
  top: calc(64px + 2.5px + var(--book-call-step-offset));
  left: 40px;
  right: 40px;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

.book-call-step-panel {
  margin-top: var(--book-call-step-offset);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.34s ease;
}

.book-call-step-panel.is-text-step {
  max-width: 620px;
}

.book-call-step-panel.is-form-step {
  max-width: 420px;
}

.book-call-feature-card.is-step-active .book-call-step-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.book-call-step-heading {
  margin: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 500;
  color: #0F1513;
}

.book-call-step-note {
  margin: 32px 0 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(15, 21, 19, 0.58);
  text-align: center;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), margin-top 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-call-step-error {
  margin: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: #A44333;
  text-align: center;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), margin-top 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-call-step-note.is-visible {
  max-height: 72px;
  opacity: 1;
  transform: translateY(0);
}

.book-call-step-error.is-visible {
  margin-top: 12px;
  max-height: 48px;
  opacity: 1;
  transform: translateY(0);
}

.book-call-step-panel.is-step-transitioning .book-call-step-heading,
.book-call-step-panel.is-step-transitioning .book-call-step-options,
.book-call-step-panel.is-step-transitioning .book-call-step-next {
  animation: book-call-step-rise 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-call-step-panel.is-step-transitioning .book-call-step-options {
  animation-delay: 0.03s;
  animation-fill-mode: both;
}

.book-call-step-panel.is-step-transitioning .book-call-step-next {
  animation-delay: 0.06s;
  animation-fill-mode: both;
}

@keyframes book-call-step-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-call-step-options {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 28px 24px;
  background: #F8F7F7;
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(15, 21, 19, 0.18);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-call-step-panel.is-text-step .book-call-step-heading {
  width: 100%;
  text-align: left;
}

.book-call-step-panel.is-form-step .book-call-step-heading {
  width: 100%;
  text-align: left;
}

.book-call-step-panel.is-text-step .book-call-step-options {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.book-call-step-panel.is-form-step .book-call-step-options {
  padding: 18px 14px;
  background: #CF5541;
  box-shadow: inset 0 0 0 2px rgba(15, 21, 19, 0.2);
  border-radius: 22px;
  gap: 12px;
}

.book-call-step-indicator {
  position: absolute;
  top: 0;
  right: 40px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #CF5541;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.18, 0.9, 0.2, 1), opacity 0.18s ease, background-color 0.2s ease;
}

.book-call-step-options.has-indicator-hover .book-call-step-indicator,
.book-call-step-options.has-indicator-selected .book-call-step-indicator {
  opacity: 1;
}

.book-call-step-options.has-indicator-selected .book-call-step-indicator {
  background: #F8F7F7;
}

.book-call-step-pill {
  width: 100%;
  min-height: 52px;
  padding: 12px 48px 12px 16px;
  border: 0;
  box-shadow: inset 0 0 0 2px #0F1513;
  border-radius: 999px;
  background: #EAE6E5;
  color: rgba(15, 21, 19, 0.8);
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.book-call-step-pill:hover {
  background: #F3E6E2;
  color: #0F1513;
  box-shadow: inset 0 0 0 2px #0F1513;
}

.book-call-step-pill:focus-visible {
  outline: none;
  background: #F3E6E2;
  color: #0F1513;
  box-shadow: inset 0 0 0 2px #0F1513;
}

.book-call-step-pill[aria-selected="true"] {
  background: #CF5541;
  color: #F8F7F7;
  box-shadow: inset 0 0 0 2px #8E3F32;
}

.book-call-step-pill[aria-selected="true"]:hover,
.book-call-step-pill[aria-selected="true"]:focus-visible {
  background: #CF5541;
  color: #F8F7F7;
  box-shadow: inset 0 0 0 2px #8E3F32;
}

.book-call-step-textarea {
  width: 100%;
  min-height: 260px;
  resize: none;
  padding: 16px;
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(15, 21, 19, 0.24);
  border-radius: 24px;
  background: #F8F7F7;
  color: #0F1513;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  outline: none;
  transition: box-shadow 0.24s ease, background-color 0.24s ease;
}

.book-call-step-textarea::placeholder {
  color: rgba(15, 21, 19, 0.42);
}

.book-call-step-textarea:hover,
.book-call-step-textarea:focus {
  background: #FBFAFA;
  box-shadow: inset 0 0 0 2px rgba(15, 21, 19, 0.38);
}

.book-call-step-input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 2px solid rgba(15, 21, 19, 0.6);
  border-radius: 999px;
  box-sizing: border-box;
  background: #EAE6E5;
  background-clip: padding-box;
  color: #0F1513;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  outline: none;
  caret-color: #0F1513;
  transition: background-color 0.24s ease, border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.24s ease;
}

.book-call-step-input::placeholder {
  color: rgba(15, 21, 19, 0.42);
}

.book-call-step-input:hover {
  background: #F3EDEB;
  border-color: rgba(15, 21, 19, 0.78);
}

.book-call-step-input:focus,
.book-call-step-input:focus-visible {
  background: #F8F1EE;
  border-color: #0F1513;
  box-shadow: 0 0 0 2px rgba(15, 21, 19, 0.16);
}

.book-call-step-input.is-invalid {
  background: #F6E3DE;
  border-color: #CF5541;
  color: #0F1513;
  box-shadow: 0 0 0 2px rgba(207, 85, 65, 0.14);
}

.book-call-step-input.is-invalid::placeholder {
  color: rgba(164, 67, 51, 0.72);
}

.book-call-step-next {
  margin-top: 24px;
}

.portfolio-page-master-btn.book-call-step-next {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0F1513;
  border: 0;
  border-radius: 100px;
  padding: 3.5px 4px;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  margin: 24px auto 0;
}

.portfolio-page-master-btn.book-call-step-next .portfolio-page-master-btn-arrow {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.portfolio-page-master-btn.book-call-step-next .portfolio-page-master-btn-text {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #EAE6E5;
  padding-right: 20px;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 0;
  display: inline-block;
}

.portfolio-page-master-btn.book-call-step-next:hover .portfolio-page-master-btn-text {
  animation: rgb-split 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-page-master-btn.book-call-step-next:hover .portfolio-page-master-btn-text::before {
  animation: channel-split-dark 0.5s steps(4, end), slice-dark 0.5s steps(8, end);
  opacity: 0.8;
}

.portfolio-page-master-btn.book-call-step-next:hover .portfolio-page-master-btn-text::after {
  animation: channel-split-green 0.5s steps(4, end), slice-green 0.5s steps(8, end);
  opacity: 0.9;
}

.book-call-feature-heading {
  margin: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 500;
  color: #0F1513;
}

.book-call-feature-subtitle {
  margin: 14px 0 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #0F1513;
}

.book-call-feature-content .pricing-card-btn {
  margin-top: 24px;
}

.book-call-feature-time {
  margin: 24px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #0F1513;
}

.book-call-feature-time img {
  filter: brightness(0) saturate(100%);
}

.book-call-title {
  margin: 0;
  text-align: center;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  color: #0F1513;
}

@media (max-width: 1024px) {
  .book-call-main {
    padding-top: calc(max(24px, env(safe-area-inset-top)) + 88px);
    padding-bottom: 72px;
  }

  .book-call-section {
    max-width: 100%;
  }

  .book-call-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .book-call-main {
    padding-top: calc(max(24px, env(safe-area-inset-top)) + 80px);
    padding-bottom: 52px;
  }

  .book-call-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
