.hero-section {
  position: relative;
  display: flex;
  min-height: min(850px, calc(100vh - 112px));
  align-items: center;
  padding-block: clamp(5rem, 8vw, 8rem);
  overflow: hidden;
  background: var(--wbt-white);
}

.hero-section--dark {
  background: var(--wbt-navy);
}

.hero-section--dark h1 {
  color: var(--wbt-white);
}

.hero-section--dark .hero-section__copy > p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-section--dark .button--outline {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  color: var(--wbt-white);
}

.hero-section__inner {
  display: grid;
  grid-template-columns: minmax(580px, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.hero-section__copy {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.7rem, 5.1vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-section__copy > p {
  max-width: 610px;
  margin-bottom: 2.5rem;
  color: #3f465e;
  font-size: 22px;
  line-height: 1.55;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-section__actions .button {
  min-width: 238px;
}

.hero-section__media {
  position: relative;
  z-index: 1;
  width: min(760px, 56vw);
  margin-right: min(-4vw, -1rem);
}

.hero-section__media::before {
  position: absolute;
  z-index: -1;
  inset: 12% 4% 0 4%;
  border-radius: 50%;
  background: rgba(50, 55, 230, 0.08);
  filter: blur(60px);
  content: "";
}

.hero-section__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.hero-fallback {
  overflow: hidden;
  border: 1px solid var(--wbt-border);
  border-radius: 14px;
  background: var(--wbt-white);
  box-shadow: var(--wbt-shadow);
}

.hero-fallback__browserbar,
.code-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding-inline: 20px;
  background: var(--wbt-navy);
}

.hero-fallback__browserbar i,
.code-window__bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6961;
}

.hero-fallback__browserbar i:nth-child(2),
.code-window__bar i:nth-child(2) {
  background: #f8ce52;
}

.hero-fallback__browserbar i:nth-child(3),
.code-window__bar i:nth-child(3) {
  background: #57c86d;
}

.hero-fallback__nav {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem;
  font-size: 12px;
}

.hero-fallback__content {
  display: grid;
  min-height: 310px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(145deg, #fbfbff, #eff0ff);
}

.hero-fallback__content > div:first-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-fallback__content strong {
  font-size: 32px;
  line-height: 1.05;
}

.hero-fallback__content b {
  padding: 0.6rem 0.9rem;
  border-radius: 5px;
  background: var(--wbt-blue);
  color: var(--wbt-white);
  font-size: 12px;
}

.hero-fallback__shape {
  position: relative;
  height: 210px;
}

.hero-fallback__shape i {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #8d87ff, #eff0ff);
  box-shadow: 0 20px 35px rgba(50, 55, 230, 0.2);
}

.hero-fallback__shape i:first-child { width: 160px; height: 160px; right: 0; top: 0; }
.hero-fallback__shape i:nth-child(2) { width: 110px; height: 110px; left: 0; bottom: 0; }
.hero-fallback__shape i:nth-child(3) { width: 74px; height: 74px; right: 35%; bottom: 5%; }

.hero-fallback__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.hero-fallback__rail span {
  height: 60px;
  border-radius: 8px;
  background: #f5f5f8;
}

.services-section {
  background: var(--wbt-white);
}

.services-rail {
  border-top: 1px solid var(--wbt-border);
}

.service-row {
  display: grid;
  min-height: 138px;
  grid-template-columns: 112px minmax(0, 1fr) minmax(210px, 0.34fr) minmax(150px, auto);
  align-items: center;
  gap: 1.8rem;
  border-bottom: 1px solid var(--wbt-border);
}

.service-row__icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--wbt-violet-soft);
  color: var(--wbt-blue);
}

.service-row__icon .icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.6;
}

.service-row__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row__content h3 {
  margin-bottom: 0.15rem;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.service-row__content p {
  margin: 0;
  color: var(--wbt-muted);
  font-size: 17px;
}

.service-row__value {
  grid-column: 3;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
  margin: 1.5rem 0;
  border-left: 1px solid var(--wbt-border);
  font-size: 15px;
  font-weight: 750;
}

.service-row__link {
  grid-column: 4;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--wbt-blue);
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
}

.service-row__link .icon {
  transition: transform 180ms ease;
}

.service-row__link:hover .icon {
  transform: translateX(4px);
}

.value-band {
  position: relative;
  overflow: hidden;
  background: var(--wbt-gradient);
  color: var(--wbt-white);
}

.value-band::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 130%, rgba(101, 87, 242, 0.9), transparent 52%), linear-gradient(90deg, rgba(6, 8, 29, 0.92), rgba(6, 8, 29, 0.08));
  content: "";
}

.value-band__inner {
  position: relative;
  display: flex;
  min-height: 196px;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.value-band h2 {
  max-width: 930px;
  margin: 0;
  color: var(--wbt-white);
  font-size: clamp(2.25rem, 3.4vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.process-section {
  background: var(--wbt-white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-step:nth-child(3n) .process-step__connector {
  display: none;
}

.process-step {
  position: relative;
}

.process-step__number {
  display: block;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #c2beff, var(--wbt-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.process-step__connector {
  position: absolute;
  top: 2.9rem;
  left: 8.5rem;
  width: calc(100% - 6.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(101, 87, 242, 0.45), var(--wbt-blue));
}

.process-step__connector i {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wbt-blue);
  transform: translateY(-50%);
}

.process-step:last-child .process-step__connector {
  display: none;
}

.process-step h3 {
  margin-bottom: 0.5rem;
  font-size: 21px;
  line-height: 1.3;
}

.process-step p {
  max-width: 290px;
  margin: 0;
  color: var(--wbt-muted);
  font-size: 17px;
  line-height: 1.55;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--wbt-navy);
  color: var(--wbt-white);
}

.about-section::before {
  position: absolute;
  right: -18%;
  bottom: -320px;
  width: 900px;
  height: 780px;
  border-radius: 50%;
  background: rgba(50, 55, 230, 0.3);
  filter: blur(100px);
  content: "";
}

.about-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
}

.about-section__logo {
  margin-bottom: 1rem;
}

.about-section h2 {
  max-width: 650px;
  margin-bottom: 1.5rem;
  color: var(--wbt-white);
  font-size: clamp(2.75rem, 4.2vw, 3.375rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.about-section__body {
  max-width: 660px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.about-section__body p:last-child {
  margin-bottom: 0;
}

.code-window {
  overflow: hidden;
  border: 2px solid rgba(166, 169, 255, 0.34);
  border-radius: 20px;
  background: rgba(8, 12, 55, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.code-window__bar {
  background: rgba(255, 255, 255, 0.07);
}

.code-window__bar span {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: center;
}

.code-window pre {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: auto;
  color: #f1f2ff;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: clamp(12px, 1.25vw, 17px);
  line-height: 1.75;
  tab-size: 2;
}

.code-window code span {
  color: #7fc9ff;
}

.code-window code b {
  color: #e393f2;
  font-weight: 500;
}

.contact-section {
  background: var(--wbt-white);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.contact-section__logo {
  margin-bottom: 2rem;
}

.contact-section h2 {
  max-width: 610px;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 4.6vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.contact-section__copy > p {
  max-width: 590px;
  color: var(--wbt-muted);
  font-size: 18px;
}

.contact-placeholder,
.contact-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.6rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--wbt-violet-soft), #f8f8ff);
}

.contact-placeholder {
  max-width: 490px;
  margin-top: 2.4rem;
}

.contact-placeholder > span,
.contact-list__icon {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  place-items: center;
  border: 1px solid var(--wbt-blue);
  border-radius: 50%;
  color: var(--wbt-blue);
}

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

.contact-list {
  display: grid;
  gap: 0.8rem;
  max-width: 520px;
  padding: 0;
  margin: 2.4rem 0 0;
  list-style: none;
}

.contact-list li {
  padding-block: 1rem;
}

.contact-list strong,
.contact-list a,
.contact-list div > span {
  display: block;
}

.contact-list strong {
  font-size: 14px;
}

.contact-list a,
.contact-list div > span {
  color: var(--wbt-muted);
}

.wbt-contact-form,
.contact-section__form form {
  display: grid;
  gap: 1rem;
}

.wbt-contact-form-wrap,
.wbt-contact-form-wrap p {
  margin-top: 0;
}

.wbt-contact-form .wbt-form-field,
.wbt-contact-form .wbt-form-consent,
.wbt-contact-form .wbt-form-help {
  margin: 0;
}

.wbt-form-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.wbt-form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--wbt-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.wbt-contact-form label,
.contact-section__form form > label {
  display: block;
}

.wbt-contact-form input:not([type="checkbox"]):not([type="hidden"]),
.wbt-contact-form textarea,
.contact-section__form input:not([type="checkbox"]):not([type="hidden"]),
.contact-section__form textarea {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 0.85rem 1.25rem;
  border: 1px solid #cfd4e3;
  border-radius: 8px;
  outline: none;
  background: var(--wbt-white);
  color: var(--wbt-ink);
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.wbt-contact-form textarea,
.contact-section__form textarea {
  min-height: 146px;
  resize: vertical;
}

.wbt-contact-form input:focus,
.wbt-contact-form textarea:focus,
.contact-section__form input:focus,
.contact-section__form textarea:focus {
  border-color: var(--wbt-blue);
  box-shadow: var(--wbt-focus);
}

.wbt-contact-form__consent,
.contact-section__form .wbt-contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--wbt-muted);
  font-size: 13px;
  line-height: 1.5;
}

.wbt-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--wbt-muted);
  font-size: 13px;
  line-height: 1.5;
}

.wbt-form-consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  accent-color: var(--wbt-blue);
}

.wbt-form-help {
  display: block;
  color: var(--wbt-muted);
  font-size: 13px;
  line-height: 1.45;
}

.wbt-contact-submit {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.9rem;
  border: 0;
  border-radius: 9px;
  background: var(--wbt-gradient);
  box-shadow: 0 10px 22px rgba(50, 55, 230, 0.2);
  color: var(--wbt-white);
  cursor: pointer;
  font-family: var(--wbt-font);
  font-size: 16px;
  font-weight: 700;
}

.wbt-contact-form__consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  accent-color: var(--wbt-blue);
}

.wbt-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.wbt-form-message,
.wbt-contact-form__message,
.wbt-form-notice {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 14px;
}

.is-success.wbt-form-message,
.wbt-contact-form__message--success,
.wbt-form-notice--success {
  background: rgba(21, 127, 86, 0.1);
  color: var(--wbt-success);
}

.is-error.wbt-form-message,
.wbt-contact-form__message--error,
.wbt-form-notice--error {
  background: rgba(180, 35, 58, 0.1);
  color: var(--wbt-error);
}

@media (max-width: 1100px) {
  .hero-section {
    min-height: auto;
  }

  .hero-section__inner {
    grid-template-columns: minmax(460px, 0.95fr) minmax(0, 1.05fr);
  }

  .hero-section h1 {
    font-size: clamp(3.25rem, 5.7vw, 4rem);
  }

  .service-row {
    grid-template-columns: 98px minmax(0, 1fr) minmax(170px, 0.3fr) auto;
    gap: 1.25rem;
  }

  .about-section__inner,
  .contact-section__inner {
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding-top: 4.5rem;
  }

  .hero-section__inner,
  .about-section__inner,
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .hero-section__media {
    width: 100%;
    margin: 1rem auto 0;
  }

  .service-row {
    grid-template-columns: 92px minmax(0, 1fr) auto;
    padding-block: 1.25rem;
  }

  .service-row__value {
    grid-column: 2;
    align-self: auto;
    padding: 0;
    margin: -0.5rem 0 0;
    border: 0;
  }

  .service-row__link {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .about-section__copy,
  .contact-section__copy {
    max-width: 690px;
  }

  .contact-section__form {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .hero-section {
    min-height: auto;
  }

  .process-list {
    gap: 2rem;
  }

  .process-step__connector {
    display: none;
  }

  .value-band__inner {
    min-height: 240px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding-block: 3.2rem 4rem;
  }

  .hero-section__inner {
    gap: 2rem;
  }

  .hero-section h1 {
    font-size: clamp(2.625rem, 12vw, 3.625rem);
    line-height: 1.02;
  }

  .hero-section__copy > p {
    margin-bottom: 2rem;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-section__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-section__actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-section__actions .button--outline {
    min-height: 48px;
    border-color: transparent;
    background: transparent;
  }

  .hero-section__media {
    margin-top: 0;
  }

  .hero-section__media img {
    aspect-ratio: 3 / 2;
  }

  .hero-fallback__nav {
    padding-inline: 1rem;
  }

  .hero-fallback__nav span {
    display: none;
  }

  .hero-fallback__content {
    min-height: 220px;
    padding: 1.25rem;
  }

  .hero-fallback__content strong {
    font-size: 22px;
  }

  .hero-fallback__shape i:first-child { width: 110px; height: 110px; }
  .hero-fallback__shape i:nth-child(2) { width: 78px; height: 78px; }
  .hero-fallback__shape i:nth-child(3) { width: 52px; height: 52px; }

  .hero-fallback__rail {
    padding: 1rem;
  }

  .services-section .section-heading {
    margin-bottom: 2rem;
  }

  .service-row {
    min-height: 0;
    grid-template-columns: 82px minmax(0, 1fr) 28px;
    gap: 1rem;
    padding-block: 1.4rem;
  }

  .service-row__icon {
    width: 72px;
    height: 72px;
  }

  .service-row__icon .icon {
    width: 36px;
    height: 36px;
  }

  .service-row__content h3 {
    font-size: 20px;
  }

  .service-row__content p {
    font-size: 15px;
    line-height: 1.45;
  }

  .service-row__value,
  .service-row__link span {
    display: none;
  }

  .service-row__link {
    grid-column: 3;
    grid-row: 1;
    justify-content: center;
  }

  .value-band__inner {
    min-height: 290px;
  }

  .value-band h2 {
    font-size: 36px;
  }

  .value-band .button {
    width: 100%;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 1.25rem;
  }

  .process-step__number {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 64px;
  }

  .process-step h3 {
    align-self: end;
  }

  .process-step p {
    grid-column: 2;
  }

  .about-section__inner,
  .contact-section__inner {
    gap: 3rem;
  }

  .about-section h2,
  .contact-section h2 {
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }

  .code-window pre {
    font-size: 11px;
  }

  .contact-placeholder,
  .contact-list li {
    gap: 1rem;
    padding: 1rem;
  }

  .contact-placeholder > span,
  .contact-list__icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
}
