﻿/* Overseas marketing page styles. */

.marketing-page {
  background: #ffffff;
}

.marketing-hero,
.marketing-services,
.marketing-stats,
.marketing-process,
.marketing-contact {
  height: 700px;
  box-sizing: border-box;
}

.marketing-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 70px 0 0;
  background:
    radial-gradient(circle at 50% 58%, rgba(86, 214, 224, 0.22), transparent 26%),
    radial-gradient(circle at 38% 56%, rgba(26, 93, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.marketing-hero::before {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: min(760px, 82vw);
  height: 320px;
  background-image:
    linear-gradient(rgba(26, 93, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 93, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: translateX(-50%);
  pointer-events: none;
  content: "";
}

.marketing-hero__inner,
.marketing-section,
.marketing-stats__inner,
.marketing-contact__card {
  width: min(1120px, calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.marketing-hero__content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto 18px;
  text-align: center;
}

.marketing-eyebrow {
  margin: 0 0 10px;
  color: #7a879c;
  font-family: var(--font-decor);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
}

.marketing-hero h1 {
  margin: 0 0 18px;
  color: #3d465c;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

.marketing-hero h1 span {
  color: #1a5dff;
}

.marketing-hero__subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: #3d465c;
  font-family: var(--font-subtitle);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.marketing-hero__visual {
  position: relative;
  z-index: 1;
  min-height: 350px;
}

.marketing-page .marketing-section__heading,
.marketing-page .marketing-service-card,
.marketing-page .marketing-stat-item,
.marketing-page .marketing-process-step,
.marketing-page .marketing-contact__copy,
.marketing-page .marketing-contact__form {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.98);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.marketing-page .marketing-section__heading.is-visible,
.marketing-page .marketing-service-card.is-visible,
.marketing-page .marketing-stat-item.is-visible,
.marketing-page .marketing-process-step.is-visible,
.marketing-page .marketing-contact__copy.is-visible,
.marketing-page .marketing-contact__form.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.marketing-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 0;
}

.marketing-section__heading {
  max-width: 620px;
  margin: 0 auto 38px;
  text-align: center;
}

.marketing-section__heading h2,
.marketing-contact__copy h2 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.marketing-section__heading p,
.marketing-contact__copy p {
  margin: 0;
  color: #7a879c;
  font-size: 15px;
}

.marketing-section__heading--light h2,
.marketing-section__heading--light p {
  color: #ffffff;
}

.marketing-section__heading--light p {
  opacity: 0.76;
}

.marketing-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.marketing-service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  min-height: 188px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(219, 231, 255, 0.95);
  border-radius: 10px;
  background:
    radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 0%), rgba(26, 93, 255, 0.12), transparent 28%),
    #ffffff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.055);
  transform-style: preserve-3d;
  will-change: transform;
}

.marketing-service-card:hover {
  border-color: rgba(26, 93, 255, 0.36);
  box-shadow: 0 30px 72px rgba(26, 93, 255, 0.13);
  transform:
    perspective(900px)
    translate3d(0, -10px, 0)
    rotateX(var(--card-tilt-y, 0deg))
    rotateY(var(--card-tilt-x, 0deg))
    scale(1.018);
  transition-delay: 0ms;
}

.marketing-service-card:active {
  transform:
    perspective(900px)
    translate3d(0, -4px, 0)
    rotateX(var(--card-tilt-y, 0deg))
    rotateY(var(--card-tilt-x, 0deg))
    scale(0.992);
}

.marketing-service-card__halo {
  position: absolute;
  top: -64px;
  right: -58px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(89, 212, 255, 0.3), rgba(26, 93, 255, 0.08));
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 260ms ease, transform 260ms ease;
}

.marketing-service-card:hover .marketing-service-card__halo {
  opacity: 1;
  transform: scale(1);
}

.marketing-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(26, 93, 255, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.marketing-service-card:hover .marketing-service-card__icon {
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  box-shadow: inset 0 0 0 1px rgba(26, 93, 255, 0.16), 0 16px 30px rgba(26, 93, 255, 0.12);
  transform: translateZ(28px) scale(1.06);
}

.marketing-service-card img {
  display: block;
  width: 36px;
  height: 36px;
}

.marketing-service-card__tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1a5dff;
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.marketing-service-card h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.marketing-service-card p {
  margin: 0;
  color: #6c7688;
  font-size: 14px;
  line-height: 1.7;
}

.marketing-stats {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background-color: #135be8;
  background-image:
    linear-gradient(180deg, rgba(6, 21, 78, 0.04), rgba(6, 21, 78, 0.24)),
    url("images/bg1.webp");
  background-position: center;
  background-size: cover;
}

.marketing-stats::before,
.marketing-stats::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(46px);
  content: "";
}

.marketing-stats::before {
  top: -120px;
  left: 8%;
}

.marketing-stats::after {
  right: 10%;
  bottom: -150px;
}

.marketing-stats__inner::before {
  display: none;
}

.marketing-stats__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.marketing-stats .marketing-section__heading {
  margin-bottom: 78px;
}

.marketing-stats .marketing-section__heading h2 {
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
}

.marketing-stats .marketing-section__heading p {
  font-size: 18px;
  font-weight: 500;
}

.marketing-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
}

.marketing-stat-item {
  min-height: 214px;
  padding: 0 64px;
  text-align: center;
}

.marketing-stat-item + .marketing-stat-item {
  border-left: 2px solid rgba(255, 255, 255, 0.58);
}

.marketing-stat-item strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
}

.marketing-stat-item__icon {
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto 34px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 42, 133, 0.16));
}

.marketing-stat-item span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-subtitle);
  font-size: 13px;
  font-weight: 500;
}

.marketing-stat-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.45;
}

.marketing-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 54px;
  align-items: start;
  width: min(1000px, 100%);
  margin: 70px auto 0;
}

.marketing-process-step {
  position: relative;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  text-align: center;
  cursor: pointer;
  outline: none;
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.marketing-process-step.is-visible {
  transition-delay: var(--marketing-delay, 0ms);
}

.marketing-process-step:hover,
.marketing-process-step:focus,
.marketing-process-step.is-active {
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, -4px, 0);
  transition-delay: 0ms;
}

.marketing-process-step::before {
  position: absolute;
  top: 34px;
  left: calc(50% + 54px);
  width: calc(100% - 54px);
  height: 2px;
  background: #d8dee8;
  content: "";
}

.marketing-process-step::after {
  position: absolute;
  top: 30px;
  left: calc(150% - 9px);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #d8dee8;
  content: "";
}

.marketing-process-step:last-child::before,
.marketing-process-step:last-child::after {
  display: none;
}

.marketing-process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: #1a5dff;
  background: #eef5ff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 0 rgba(26, 93, 255, 0.18);
  transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.marketing-process-step:hover .marketing-process-step__number,
.marketing-process-step:focus .marketing-process-step__number,
.marketing-process-step.is-active .marketing-process-step__number {
  color: #1a5dff;
  background: #eef5ff;
  box-shadow: 0 0 0 10px rgba(26, 93, 255, 0.1);
  transform: translateY(-2px);
}

.marketing-process-step h3 {
  margin: 0 0 14px;
  color: #172033;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.marketing-process-step p {
  margin: 0;
  color: #4d596d;
  font-size: 11px;
  line-height: 1.7;
}

.marketing-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 520px;
  padding: 0;
  background: #f1f2f6;
}

.marketing-contact::before {
  display: none;
}

.marketing-contact__card {
  position: relative;
  display: grid;
  grid-template-columns: 330px 340px;
  gap: 90px;
  align-items: start;
  width: min(970px, calc(100% - 96px));
  min-height: 340px;
  padding: 112px 74px 0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(39, 48, 70, 0.08);
}

.marketing-service-card.is-visible,
.marketing-stat-item.is-visible,
.marketing-process-step.is-visible {
  transition-delay: var(--marketing-delay, 0ms);
}

.marketing-contact__copy h2 {
  max-width: 280px;
  margin: 0 0 22px;
  color: #28344d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
}

.marketing-contact__copy p {
  max-width: 320px;
  margin: 0;
  color: #8a93a6;
  font-size: 15px;
  line-height: 1.55;
}

.marketing-form-placeholder {
  padding: 18px;
  border: 1px dashed #c9d4e5;
  border-radius: 8px;
  color: #6c7688;
  background: #f8fafc;
  font-size: 14px;
}

.marketing-contact .wpcf7 {
  margin: 0;
}

.marketing-contact .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0;
}

.marketing-contact .wpcf7-form p {
  margin: 0;
}

.marketing-contact .wpcf7 br {
  display: none;
}

.marketing-contact .wpcf7-form p:has(.wpcf7-submit),
.marketing-contact .marketing-contact__submit-row {
  padding-left: 62px;
  padding-top: 16px;
}

.marketing-contact .wpcf7 label {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  color: #59647a;
  font-size: 13px;
  line-height: 1.2;
}

.marketing-contact .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}

.marketing-contact .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
}

.marketing-contact .wpcf7-text,
.marketing-contact .wpcf7-email,
.marketing-contact .wpcf7-tel,
.marketing-contact .wpcf7-textarea {
  width: 100%;
  height: 29px;
  min-height: 29px;
  padding: 5px 18px;
  border: 1px solid #d1d9e5;
  border-radius: 999px;
  color: #172033;
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.marketing-contact .wpcf7-text::placeholder,
.marketing-contact .wpcf7-email::placeholder,
.marketing-contact .wpcf7-tel::placeholder,
.marketing-contact .wpcf7-textarea::placeholder {
  color: #b9c2d0;
}

.marketing-contact .wpcf7-textarea {
  min-height: 96px;
  border-radius: 12px;
  resize: vertical;
}

.marketing-contact .wpcf7-text:focus,
.marketing-contact .wpcf7-email:focus,
.marketing-contact .wpcf7-tel:focus,
.marketing-contact .wpcf7-textarea:focus {
  border-color: #1a5dff;
  box-shadow: 0 0 0 3px rgba(26, 93, 255, 0.1);
}

.marketing-contact .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 30px;
  padding: 7px 25px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #1768f6;
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.marketing-contact .wpcf7-submit:hover,
.marketing-contact .wpcf7-submit:focus {
  background: #0f49d8;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .marketing-hero {
    min-height: 500px;
    padding: 62px 0 50px;
  }

  .marketing-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .marketing-process-step::before,
  .marketing-process-step::after {
    display: none;
  }

  .marketing-contact__card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px;
  }
}

@media (max-width: 760px) {
  .marketing-hero,
  .marketing-services,
  .marketing-stats,
  .marketing-process,
  .marketing-contact {
    height: auto;
  }

  .marketing-hero {
    min-height: auto;
    padding: 48px 0 42px;
  }

  .marketing-hero h1 {
    font-size: 32px;
  }

  .marketing-hero__subtitle {
    font-size: 15px;
  }

  .marketing-hero__visual {
    min-height: 210px;
  }

  .marketing-section {
    padding: 54px 0;
  }

  .marketing-section__heading {
    margin-bottom: 28px;
  }

  .marketing-section__heading h2,
  .marketing-contact__copy h2 {
    font-size: 25px;
  }

  .marketing-service-grid,
  .marketing-stat-grid,
  .marketing-process-list {
    grid-template-columns: 1fr;
  }

  .marketing-service-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .marketing-stat-grid {
    gap: 28px;
  }

  .marketing-stat-item {
    padding: 0;
  }

  .marketing-stat-item + .marketing-stat-item {
    border-left: 0;
  }

  .marketing-stat-item strong {
    font-size: 52px;
  }

  .marketing-stat-item__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

  .marketing-stats {
    padding: 58px 0 62px;
  }

  .marketing-stats .marketing-section__heading {
    margin-bottom: 42px;
  }

  .marketing-stats .marketing-section__heading h2 {
    font-size: 28px;
  }

  .marketing-stats .marketing-section__heading p {
    font-size: 15px;
  }

  .marketing-stats__inner::before {
    display: none;
  }

  .marketing-process-step {
    min-height: auto;
  }

  .marketing-contact {
    padding: 48px 0;
  }

  .marketing-contact__card {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 36px 28px;
    border-radius: 18px;
  }

  .marketing-contact__copy h2 {
    max-width: none;
    font-size: 26px;
  }

  .marketing-contact .wpcf7 label {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .marketing-contact .wpcf7-form p:has(.wpcf7-submit),
  .marketing-contact .marketing-contact__submit-row {
    padding-left: 50px;
  }
}

@media (max-width: 420px) {
  .marketing-hero h1 {
    font-size: 28px;
  }

  .marketing-service-card {
    padding: 24px 20px;
  }

  .marketing-contact__card {
    width: min(100% - 24px, 980px);
    padding: 28px 18px;
  }
}

/* Figma node 241:377 desktop alignment overrides. */
/* Desktop commercial website refinement. */
@media (min-width: 1025px) {
  .site-main.marketing-page {
    padding-top: 0;
  }

  .marketing-page {
    color: #2f3748;
  }

  .marketing-hero,
  .marketing-services,
  .marketing-stats,
  .marketing-process,
  .marketing-contact {
    overflow: hidden;
  }

  .marketing-scale-stage {
    position: relative;
    width: min(1180px, calc(100% - 80px));
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
  }

  .marketing-hero {
    display: flex;
    align-items: center;
    height: 760px;
    min-height: 760px;
    padding: 0;
  }

  .marketing-hero::before {
    bottom: 72px;
    width: 820px;
    height: 420px;
    background-size: 52px 52px;
    opacity: 0.55;
  }

  .marketing-scale-stage--hero {
    width: min(1180px, calc(100% - 80px));
  }

  .marketing-hero__content {
    max-width: 820px;
    margin: 0 auto 42px;
  }

  .marketing-hero h1 {
    margin-bottom: 18px;
    color: #2f3748;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: -0.02em;
  }

  .marketing-hero h1 span {
    color: #1661ed;
  }

  .marketing-hero__subtitle {
    max-width: 680px;
    color: #5d6678;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
  }

  .marketing-hero__visual {
    min-height: 340px;
  }

  .marketing-services {
    display: flex;
    align-items: center;
    height: 700px;
    padding: 0;
    justify-content: center;
  }

  .marketing-section__heading {
    max-width: 760px;
    margin: 0 auto 56px;
  }

  .marketing-section__heading h2,
  .marketing-contact__copy h2 {
    margin-bottom: 12px;
    color: #2f3748;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.015em;
  }

  .marketing-section__heading p,
  .marketing-contact__copy p {
    color: #7a8395;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }

  .marketing-service-grid {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .marketing-service-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    width: auto;
    height: auto;
    min-height: 210px;
    padding: 34px 30px;
    border: 1px solid rgba(211, 222, 241, 0.9);
    border-radius: 20px;
    background:
            radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 0%), rgba(22, 97, 237, 0.09), transparent 30%),
            #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  }

  .marketing-service-card__halo {
    display: block;
  }

  .marketing-service-card__tag {
    display: inline-flex;
  }

  .marketing-service-card__icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
    box-shadow: inset 0 0 0 1px rgba(22, 97, 237, 0.1);
  }

  .marketing-service-card:hover .marketing-service-card__icon {
    background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
    box-shadow:
            inset 0 0 0 1px rgba(22, 97, 237, 0.18),
            0 14px 28px rgba(22, 97, 237, 0.12);
    transform: translateZ(24px) scale(1.04);
  }

  .marketing-service-card img,
  .marketing-service-card:nth-child(2) img {
    width: 38px;
    height: 38px;
    object-fit: contain;
  }

  .marketing-service-card h3 {
    margin: 0 0 10px;
    color: #20293a;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
  }

  .marketing-service-card p {
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    white-space: normal;
  }

  .marketing-stats {
    display: flex;
    align-items: center;
    height: 700px;
    padding: 0;
  }

  .marketing-stats__inner {
    width: min(1180px, calc(100% - 80px));
  }

  .marketing-stats .marketing-section__heading {
    margin-bottom: 64px;
  }

  .marketing-stats .marketing-section__heading h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.28;
  }

  .marketing-stats .marketing-section__heading p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }

  .marketing-stat-grid {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marketing-stat-item {
    min-height: 220px;
    padding: 0 54px;
  }

  .marketing-stat-item + .marketing-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }

  .marketing-stat-item__icon,
  .marketing-stat-item:nth-child(1) .marketing-stat-item__icon,
  .marketing-stat-item:nth-child(3) .marketing-stat-item__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 42, 133, 0.18));
  }

  .marketing-stat-item strong {
    margin-bottom: 10px;
    font-size: 58px;
    font-weight: 600;
    line-height: 1;
  }

  .marketing-stat-item span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }

  .marketing-stat-item p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
  }

  .marketing-process {
    display: flex;
    align-items: center;
    height: 700px;
    padding: 0;
    justify-content: center;
  }

  .marketing-process .marketing-section__heading {
    margin-bottom: 76px;
  }

  .marketing-process-list {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .marketing-process-step {
    width: 156px;
    justify-self: center;
  }

  .marketing-process-step::before {
    top: 39px;
    left: calc(50% + 52px);
    width: calc(100% - 52px);
    height: 2px;
    background: #d9dde6;
  }

  .marketing-process-step::after {
    top: 35px;
    left: calc(150% - 14px);
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left: 8px solid #d9dde6;
  }

  .marketing-process-step__number {
    width: 70px;
    height: 70px;
    margin-bottom: 26px;
    color: #1661ed;
    background: #eef5ff;
    font-size: 28px;
    font-weight: 600;
  }

  .marketing-process-step h3 {
    margin-bottom: 12px;
    color: #2f3748;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
  }

  .marketing-process-step p {
    color: #667085;
    font-size: 13px;
    line-height: 1.7;
    white-space: normal;
  }

  .marketing-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    padding: 0;
  }

  .marketing-scale-stage--contact {
    width: min(1080px, calc(100% - 80px));
  }

  .marketing-contact__card {
    display: grid;
    grid-template-columns: 360px minmax(0, 420px);
    gap: 80px;
    align-items: center;
    width: 100%;
    min-height: 420px;
    margin: 0 auto;
    padding: 58px 72px;
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(39, 48, 70, 0.08);
  }

  .marketing-contact__copy h2 {
    max-width: 340px;
    margin: 0 0 22px;
    color: #2f3748;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.35;
  }

  .marketing-contact__copy p {
    max-width: 340px;
    color: #7a8395;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }

  .marketing-contact .wpcf7-form {
    gap: 24px;
  }

  .marketing-contact .wpcf7 label {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    color: #3f455b;
    font-size: 14px;
    line-height: 1.3;
  }

  .marketing-contact .wpcf7-text,
  .marketing-contact .wpcf7-email,
  .marketing-contact .wpcf7-tel,
  .marketing-contact .wpcf7-textarea {
    width: 100%;
    height: 38px;
    min-height: 38px;
    padding: 8px 18px;
    border-color: #cad2df;
    font-size: 14px;
  }

  .marketing-contact .wpcf7-form p:has(.wpcf7-submit),
  .marketing-contact .marketing-contact__submit-row {
    padding-top: 8px;
    padding-left: 58px;
  }

  .marketing-contact .wpcf7-submit {
    min-width: 108px;
    min-height: 38px;
    padding: 8px 28px;
    background: #1661ed;
    font-size: 14px;
    font-weight: 500;
  }
}
