@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  /* Colors */
  --color-primary: #5b3cc4;
  --color-secondary: #45458e;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-border: #e5e5e5;
  --color-bg-purple: #2b1f5c;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 60px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: "auto";
}
body {
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-base);
  outline: none;
}
button:focus,
a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hero-digital-section {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 904px;
  overflow: hidden;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  padding-bottom: 84px;
}
.hero-overlay {
  position: relative;
  z-index: 2;
}
.hero-container {
  position: static;
  width: 100%;
  max-width: none;
  padding: 0 165px;
  margin: 0;
}
.hero-content {
  color: var(--color-white);
}
.hero-content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 44px;
  margin: 0;
  color: var(--color-white);
  margin-top: 90px;
}
.cta-button-line {
  margin-top: 27px;
  width: 455px;
  height: 1px;
  background: #737277;
}
.meet-text,
.converts-text {
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 700;
}
.converts-container {
  position: relative;
  display: inline-block;
}
.converts-bg {
  position: absolute;
  width: 488px;
  height: 84px;
  inset: 0;
  background: var(--color-white);
}
.converts-text {
  font-weight: 800;
  position: relative;
  color: var(--color-black);
  padding: 0 12px;
}
.cta-button-container {
  width: min(350px, 90%);
  height: auto;
  aspect-ratio: 350 / 80;
  position: relative;
  margin-top: 20px;
  margin-left: -20px;
}
.cta-button-bg {
  position: absolute;
  font-weight: 700;
  width: 605px;
  height: 114px;
  margin-left: -32px;
  inset: 0;
  background: url("../images/talk-to-an-expert.png") no-repeat center/contain;
}
.cta-button-text {
  position: relative;
  margin-left: 193px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 6px;
  white-space: nowrap;
}
.stats {
  font-weight: 400;
  font-size: 22px;
  margin-top: 12px !important;
  width: 773px;
  padding-top: 20px;
}

.hero-side-menu {
  position: fixed;
  top: 40%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  gap: 30px;
  flex-direction: column;
  z-index: 999;
}
.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  top: 75px;
  margin-top: -20px;
}
.menu-icon {
  width: 64px;
  height: 64px;
  gap: 12px;
  border-radius: 50%;
  object-fit: contain;
  box-sizing: border-box;
  transform: none !important;
  transition:
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}
.menu-item:hover .menu-icon {
  opacity: 0.9;
}
.menu-text {
  font-weight: 500;
  font-size: 22px;
  position: absolute;
  right: 48px;
  top: 15px;
  height: 36px;
  min-width: 148px;
  object-fit: contain;
  opacity: 0;
  transform: translateX(6px);
  transition: 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}
.menu-item:hover .menu-text,
.menu-item.active .menu-text {
  opacity: 1;
  transform: translateX(0);
}
/* ===== MODAL BASE ===== */
.expert-modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: 0.3s ease;
}
.expert-modal:target,
.expert-modal.modal-active {
  opacity: 1;
  pointer-events: auto;
}
.expert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.expert-modal-content {
  position: absolute;
  width: 552px;
  height: auto;
  /* height: 827px; */
  background: #f7f7f7;
  border-radius: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.expert-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.expert-form-logo img {
  width: 180px;
  height: 69px;
  object-fit: contain;
  margin-bottom: 24px;
}
.hubspot-form-container {
  width: 472px;
  margin-top: 20px;
  overflow: hidden !important;
  display: block;
}
.hubspot-form-container input,
.hubspot-form-container textarea {
  width: 472px !important;
  height: 64px;
  border-radius: 16px !important;
  border: 1px solid #5c5c5c;
  box-shadow: none !important;
  outline: none !important;
  padding: 12px 16px;
  margin-top: 15px;
  box-sizing: border-box;
  font-size: 16px;
  background: #ffffff;
}
.hubspot-form-container textarea {
  height: 185px !important;
}
.hubspot-form-container input::placeholder,
.hubspot-form-container textarea::placeholder {
  font-size: 20px;
  line-height: 24px;
  color: #5c5c5c;
}
.hubspot-form-container .hs-error-msg.hs-main-font-element {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #5c5c5c;
  margin-top: 8px;
}
.hubspot-form-container h1,
.hubspot-form-container h2,
.hubspot-form-container h3 {
  font-size: 25px;
  width: 460px;
  margin-top: 24px;
  height: 30px;
  font-weight: 500;
}
body:has(.expert-modal:target) {
  overflow: hidden;
}
body:has(.expert-modal:target) .hero-digital-section,
body:has(.expert-modal:target) .hero-side-menu {
  filter: blur(6px);
}
.hubspot-form-container .hs-button.primary.large {
  height: 75px;
  background-color: #141414;
  border: none;
  font-size: 24px;
  font-weight: 700;
  color: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =========================
   7. VIDEO SECTION
========================= */
.video-showcase-section {
  width: 100%;
  background: var(--color-white);
  padding: 0;
  margin: 0;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.video-showcase-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
.video-wrapper video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.video-wrapper video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.8);
}
.video-wrapper video::-webkit-media-controls-play-button,
.video-wrapper video::-webkit-media-controls-volume-slider,
.video-wrapper video::-webkit-media-controls-timeline,
.video-wrapper video::-webkit-media-controls-current-time-display,
.video-wrapper video::-webkit-media-controls-time-remaining-display {
  filter: brightness(1);
}
@supports not (object-fit: contain) {
  .video-wrapper video {
    width: 100%;
    height: auto;
  }
}
.video-showcase-section *,
.video-showcase-container *,
.video-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* =========================
    CDP SECTION - BASE
========================= */
.cdp-digital-hero-section {
  background: url("../images/main.png") no-repeat top center;
  background-size: cover;
  padding: 60px 15px 230px;
  overflow-x: hidden;
}
.cdp-digital-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  color: var(--color-white);
}
.cdp-digital-top-image {
  position: relative;
  top: 20px;
  text-align: center;
}
.cdp-ribbon {
  width: 650px;
  max-width: 90%;
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/cdpribbon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.cdp-ribbon-text {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.cdp-digital-top-image img {
  width: 734.4px;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.cdp-digitl-title-image {
  text-align: center;
  margin-bottom: 120px;
}
.cdp-digital-title-image img {
  margin-left: auto;
  margin-right: auto;
  max-width: min(560px, 90%);
  width: 100%;
}

.htds-title-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 120px;
}
.htds-presenting-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.htds-presenting-text {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #8f83ba;
  opacity: 0.9;
}

.htds-line {
  display: inline-block;
  width: 175px;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.8;
  flex-shrink: 0;
}

.htds-main-title {
  display: block;
  margin: 0 auto 14px;
  font-size: 105.38px;
  font-weight: 700;
  line-height: 77px;
  color: #ffffff;
  -webkit-text-stroke: 5px #c3aff4;
  paint-order: stroke fill;
  text-align: center;
  letter-spacing: -2px;
}
.htds-sub-title {
  font-size: 46px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
  text-align: center;
  -webkit-text-stroke: 3px #c3aff4;
  paint-order: stroke fill;
  letter-spacing: -2px;
}
.cdp-flow-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cdp-flow-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
}
.cdp-flow-indicator span {
  display: block;
  border-right: 3px solid #8e86ff;
  border-bottom: 3px solid #8e86ff;
  transform: rotate(45deg);
  opacity: 0.25;
  animation: flowDown 6s infinite;
}
.cdp-flow-indicator span:nth-child(1) {
  width: 80px;
  height: 80px;
  margin-bottom: 4px;
  animation-delay: 0s;
}
.cdp-flow-indicator span:nth-child(2) {
  width: 60px;
  height: 60px;
  margin-bottom: 4px;
  animation-delay: 0.45s;
}
.cdp-flow-indicator span:nth-child(3) {
  width: 50px;
  height: 50px;
  margin-bottom: 4px;
  animation-delay: 1.2s;
}
.cdp-flow-indicator span:nth-child(4) {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  animation-delay: 1.5s;
}
.cdp-flow-indicator span:nth-child(5) {
  width: 30px;
  height: 30px;
  animation-delay: 1.8s;
}
@keyframes flowDown {
  0% {
    opacity: 0.25;
    border-right-color: #8e86ff;
    border-bottom-color: #8e86ff;
  }
  20% {
    opacity: 1.5;
    border-right-color: #b8b0ff;
    border-bottom-color: #b8b0ff;
  }
  40% {
    opacity: 0.25;
    border-right-color: #8e86ff;
    border-bottom-color: #8e86ff;
  }
  100% {
    opacity: 0.25;
    border-right-color: #8e86ff;
    border-bottom-color: #8e86ff;
  }
}
.cdp-flow-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 160px;
}
.flow-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  box-shadow: none;
}
.flow-icon .step-default {
  opacity: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  border-radius: 100%;
}
.flow-icon .step-hover {
  position: absolute;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  border-radius: 100%;
}
/* .flow-icon[data-step="1"] .step-default {
  opacity: 0;
}
.flow-icon[data-step="1"] .step-hover {
  opacity: 1;
}
.flow-icon[data-step="1"]:hover .step-default {
  opacity: 1;
} */
.flow-icon:hover .step-default {
  opacity: 0;
}
.flow-icon:hover .step-hover {
  opacity: 1;
  transform: scale(1);
}
.cdp-content-box {
  background: rgba(0, 0, 0, 0.45);
  padding: 28px;
  border-radius: 16px;
  position: absolute;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}
.cdp-content-box.step-1 {
  margin-right: 0 !important;
  margin-top: 0;
  width: 494px !important;
  height: 516px !important;
  position: absolute;
  top: 25px;
  left: 178px;
  transform: translate(0) !important;
}
.cdp-content-box.step-2 {
  width: 494px !important;
  height: 669px !important;
  margin-left: -123px;
  margin-top: 12px;
}
.cdp-content-box.step-3 {
  width: 524px !important;
  height: 669px !important;
  margin-right: -150px;
  margin-top: 15px;
}
.cdp-content-box.active {
  opacity: 1;
  pointer-events: auto;
}
.step-1 {
  right: -380px;
  top: 80%;
}
.step-2 {
  left: -475px !important;
  top: 75% !important;
}
.step-3 {
  right: -475px !important;
  top: -75% !important;
}

.cdp-content-box h3 {
  font-weight: 700;
  color: #ffffff !important;
  font-size: 40px;
  margin-bottom: 8px;
}
.cdp-content-box p {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.cdp-content-box ul {
  font-weight: 700;
  list-style: none;
  padding-left: 16px;
  margin-bottom: 14px;
}
.cdp-content-box li {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
  padding-left: 24px;
  position: relative;
}
.cdp-content-box li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 3px;
  width: 27px;
  height: 26px;
  background-image: url("../images/digital-star.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cdp-btn {
  display: inline-block;
  background: #5c449f;
  padding: 20px 38px;
  font-weight: 700;
  border-radius: 10px;
  font-size: 22px;
  color: var(--color-white);
}
.info-card ul {
  list-style: none;
  padding: 0 30px 30px;
}
.info-card li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}
.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("../images/digital-star.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================
   CDP FORM B MODAL
/* */
.cdp-modalB {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: 0.3s ease;
}

.cdp-modalB:target {
  opacity: 1;
  pointer-events: auto;
}

#cdp-formB-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#cdp-formB-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.cdp-overlayB {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cdp-modalB-content {
  position: absolute;
  width: 552px;
  max-width: 95%;
  height: auto;
  max-height: 96%;
  background: #f7f7f7;
  border-radius: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
}

.cdp-closeB {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

body:has(.cdp-modalB:target) {
  overflow: hidden;
}

body:has(.cdp-modalB:target) .cdp-digital-hero-section,
body:has(.cdp-modalB:target) .hero-side-menu {
  filter: blur(6px);
}

.audience-bg h1 {
  font-size: 27px;
  width: 470px;
  margin-top: 25px;
  height: 35px;
  font-weight: 500;
}

.cdp-modalB
  .hs-form-88a94c8e-d1de-41b1-9dc4-30feba864218_a2d53986-23e1-4658-9695-c139e25c02e3.hs-form {
  width: 472px !important;
  height: 185px;
  border-radius: 16px;
  border: 1px solid #5c5c5c;
  overflow: hidden;
  padding: 12px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.cdp-modalB .hs_explore {
  border: 1px solid #5c5c5c !important;
  border-radius: 16px;
}

#hubspotFormB iframe input {
  border: 1px solid red;
}
.mobile-funnel {
  display: none;
}

.full-funnel-section {
  width: 100%;
  max-width: 1920px;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 80px 20px;
  margin: 0 auto;
  overflow-x: hidden;
}
.funnel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
}
.funnel-headline {
  font-weight: 700;
  font-size: 40px;
  color: var(--color-black);
}
.funnel-subtitle {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 80px;
}
.journey-steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1377px;
  margin-bottom: 40px;
  gap: 0px;
}
.journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.step-icon {
  width: 192px;
  height: 169px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.step-icon img {
  width: 192px;
  height: 169px;
  object-fit: contain;
}
.step-title {
  font-weight: 700;
  font-size: 24px;
}
.step-description {
  font-weight: 700;
  font-size: 24px;
}
.funnel-digital-cta {
  width: 840px;
  height: 110px;
  background: url("../images/Rectangle 4.png") center center no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: none;
  outline: none;
}
.funnel-digital-cta:hover {
  background-color: white !important;
}
.funnel-digital-cta:focus,
.funnel-digital-cta:active {
  background: url("../images/Rectangle 4.png") center center no-repeat !important;
  background-size: contain !important;
  outline: none;
}
.cta-digital-text {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  width: 640px;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-bottom: 18px;
  background: none !important;
}
/* =========================
   AUDIENCE COHORTS
========================= */
.audience-cohorts-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  z-index: 5;
}
.audience-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.audience-container {
  position: relative;
  z-index: 2;
}
.audience-header {
  text-align: center;
  margin-bottom: 60px;
}
.audience-eyebrow {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.audience-header h2 {
  font-size: 40px;
  font-weight: 700;
}
.audience-ribbon img {
  width: 597px;
  height: 48px;
  margin-left: 215px;
  margin-top: 16px;
  display: block;
  object-fit: contain;
}
.audience-ribbon {
  height: 48px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/audienceribbon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.audience-ribbon-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.cohort-rotator {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.cohort-track {
  display: flex;
  width: max-content;
  animation: scrollCohorts 35s linear infinite;
}
.cohort-list {
  display: flex;
  gap: 24px;
}
@keyframes scrollCohorts {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cohort-item {
  min-width: 150px;
  text-align: center;
}
.cohort-icon {
  width: 150.6px;
  height: 150.6px;
  background: rgba(91, 60, 196, 0.15);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cohort-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cohort-item h4 {
  font-weight: 600;
  font-size: 22px;
  width: 240px;
  height: 27px;
  text-align: center;
  line-height: 27px;
  margin: 0 auto;
}
.cohort-item span {
  font-size: 22px;
  font-weight: 400;
  width: 240px;
  height: 27px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
  color: var(--color-text-light);
}
.audience-info-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top: 30px;
}
.audience-card {
  flex: 0 0 464px;
  max-width: 464px;
}
.audience-card .target-image {
  width: 100%;
  height: auto;
  line-height: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-card .target-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}
.target-content {
  background: #ffffff;
  padding: 24px 20px;
  position: relative;
  z-index: 2;
}
.target-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
}
.audience-card .target-content {
  padding: 26px 24px 28px;
}
.audience-card .target-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #000;
}
.audience-card .target-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.audience-card .target-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 14px;
  color: #111;
}
.audience-card .target-list li:last-child {
  margin-bottom: 0;
}
.audience-card .check-icon {
  width: 40.9px;
  height: 37.58px;
  flex-shrink: 0;
  margin-top: 3px;
}
.audience-card .check-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.audience-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 32px 80px rgba(255, 255, 255, 0.6);
}
.playbooks-and-cases-bg {
  position: relative;
  width: 100%;
  margin: -40px auto 0;
  padding-top: 20px;
  background-image: url("../images/playbook-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 3;
  overflow-x: hidden;
}

/* //Carasoul section // */
.carousel-section {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}
.badge {
  background: #4b2aad;
  color: #fff;
  padding: 12px 14px;
  font-size: 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
h2 {
  font-weight: 500;
  font-size: 56px;
}
.subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000;
  margin: 0 auto 40px;
  white-space: nowrap;
}
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.carousel {
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 0px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.card {
  min-width: 371px;
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  background: #fff;
  border: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: scale(1);
  opacity: 1;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  cursor: pointer;
}
.card.active {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}
.card.near-1 {
  transform: scale(0.82);
  opacity: 2;
  z-index: 3;
}
.card.near-2 {
  transform: scale(0.68) translateX(-40px);
  opacity: 0.1;
}

.card.far {
  transform: scale(0.55) translateX(-3px);
  opacity: 0.15;
}

.card img {
  width: 100%;
  border-radius: 10px;
}
.card h3 {
  font-weight: 700;
  margin: 14px 0 6px;
  font-size: 22px;
}
.card p {
  font-weight: 400;
  font-size: 22px;
  color: #000;
}
.nav-btn {
  background: #000;
  color: #fff;
  font-size: 40px !important;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 28px;
  z-index: 3;
  outline: none;
  transform: translateY(-50%);
}
.nav-btn.prev {
  position: absolute;
  left: -80px;
  top: 190px;
}
.nav-btn.next {
  position: absolute;
  right: -80px;
  top: 190px;
}
.nav-btn:hover {
  background: #000;
  color: #fff;
}
.nav-btn:focus,
.nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.nav-btn:active {
  transform: scale(0.95);
}
.carousel-section::before,
.carousel-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 600px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.case-card-link:focus,
.case-card-link:active {
  outline: none;
  background: transparent;
}
.carousel-section::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.carousel-section::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.card.near {
  opacity: 1;
}
.card.active {
  opacity: 1;
  transform: scale(1);
}
.playbooks-section {
  position: relative;
  z-index: 1;
  padding: 60px 0 35px;
}
.playbooks-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.playbooks-digital-header {
  text-align: center;
  margin-bottom: 40px;
}
.playbooks-digital-ribbon {
  position: relative;
  width: 450px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  border-radius: 21px;
  top: -11px;
}
.playbooks-digital-ribbon + h2 {
  margin-top: -40px;
}
.playbooks-digital-ribbon img {
  width: 373px;
  height: 50px;
}
.playbooks-digital-ribbon {
  position: relative;
  width: 410px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  top: -11px;
  background-image: url("../images/playbookribbon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.playbooks-ribbon-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.playbooks-digital-header h2 {
  font-weight: 500;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--color-black);
  margin-bottom: 12px;
}
.playbooks-digital-header p {
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: 4px;
  color: var(--color-black);
}
.playbooks-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.playbooks-arrow {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: var(--transition-base);
  outline: none;
  background: none !important;
}
.playbooks-arrow:focus,
.playbooks-arrow:active {
  background: none !important;
  outline: none;
}
.playbooks-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/black-circle.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  transition: var(--transition-base);
  pointer-events: none;
}
.playbooks-arrow .arrow-circle {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.playbooks-arrow .arrow-circle img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition-base);
}
.playbooks-arrow.left .arrow-circle {
  transform: rotate(180deg);
}
.playbooks-arrow:hover::before {
  opacity: 0.85;
  transform: scale(1.08);
}
.playbooks-arrow:hover .arrow-circle img {
  transform: scale(1.15);
}
.playbooks-arrow.left:hover .arrow-circle img {
  transform: rotate(0deg) scale(1.15);
}
.playbooks-arrow:active::before {
  transform: scale(0.95);
}
.playbooks-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.playbooks-arrow:disabled::before {
  opacity: 0.3;
}
.playbooks-arrow:disabled .arrow-circle img {
  filter: brightness(0) invert(0.5);
}
.playbooks-cards {
  display: flex;
  gap: 30px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.playbook-card {
  min-width: calc(33.333% - 20px);
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition-base);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.playbook-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}
.playbook-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 14px;
}
.playbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.playbook-card:hover .playbook-image img {
  transform: scale(1.08);
}
.playbook-card h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.playbook-card p {
  font-weight: 500;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4;
  color: var(--color-black);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: auto;
  max-height: none;
  white-space: normal;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  cursor: pointer;
  z-index: 5;

  opacity: 0.9;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.carousel-arrow:hover {
  opacity: 1;
}
.carousel-arrow.prev {
  left: -100px;
}
.carousel-arrow.next {
  right: -125px;
  border-radius: 100%;
}

/* =========================
   CASE STUDIES 
========================= */
.case-studies-section {
  position: relative;
  z-index: 10;
  padding: 50px 0 120px;
  background: transparent;
  overflow-x: hidden;
}
.case-studies-section,
.case-studies-section * {
  pointer-events: auto;
}
.case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.case-studies-header {
  text-align: center;
  margin-bottom: 40px;
}
.case-studies-header h2 {
  font-weight: 500;
  font-size: 40px;
  margin: 0 auto 20px;
  text-align: center;
  color: var(--color-black);
  letter-spacing: 0.5px;
}
.case-studies-header p {
  font-weight: 700;
  font-size: 24px;
  height: 29px;
  width: 1163.88px;
  max-width: 100%;
  margin: 8px auto 0;
  text-align: center;
  color: var(--color-black);
  letter-spacing: 0.5px;
}
.case-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: nowrap;
  width: 100%;
  position: relative;
  z-index: 11;
}
.case-tabs .tab {
  width: 180px;
  height: 54px;
  border-radius: 30px;
  border: 2px solid #ddd;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  transition: var(--transition-fast);
  pointer-events: auto;
  outline: none !important;
}
.case-tabs .tab:hover {
  border-color: var(--color-black);
  transform: translateY(-2px);
}
.case-tabs .tab.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 390px);
  justify-content: center;
  gap: 50px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 11;
}
.case-card {
  background: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: var(--transition-base);
  cursor: pointer;
  display: flex;
  cursor: pointer;
  flex-direction: column;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-content {
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.case-content h4,
.case-content h3,
.case-x {
  font-weight: 700;
  font-size: 22px;
  width: 100%;
  height: auto;
  line-height: 28px;
  margin: 4px 0;
}
.case-content p {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-black);
  margin: 14px auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-divider {
  width: calc(100% + 40px);
  height: 1px;
  background: var(--color-border);
  margin: 12px -20px 2px -20px;
}
.case-card:nth-child(3) .case-divider {
  margin-top: auto;
}
.case-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 30px;
  width: 100%;
  height: 10px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--color-secondary);
  text-decoration: none;
  white-space: nowrap;
  margin-top: 20px;
}
.case-link:hover {
  text-decoration: underline;
}
.case-link .arrow-img {
  width: 10px;
}
.case-cta {
  width: 604px;
  height: 82px;
  margin-top: 20px !important;
  margin: 0 auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
}
.primary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 604px;
  height: 82px;
  margin-top: 60px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 41px;
  border: none;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0.5px;
  max-width: 534.38px;
  text-align: center;
  transition: var(--transition-fast);
  cursor: pointer;
}
.primary-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
/* =========================
   LEGACY SECTION
========================= */
.legacy-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  z-index: 10;
  margin-top: -20px;
  overflow: hidden;
}
.legacy-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.legacy-container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.legacy-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.legacy-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.column-icon {
  margin-bottom: 24px;
}
.column-icon img {
  width: 236.15px;
  height: 234.54px;
  object-fit: contain;
}
.column-title {
  width: 380px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  white-space: normal;
}
.column-description {
  font-weight: 400;
  width: 380px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
}
/* =========================
    CONTACT SECTION
========================= */
.contact-section {
  position: relative;
  width: 100%;
  padding: 115px 0;
  overflow: hidden;
  z-index: 2;
  margin-top: -20px;
}
.contact-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1920px;
  height: 947px;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.contact-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact-container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  margin-left: -30px;
}
.contact-header {
  margin-bottom: 48px;
}
.contact-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 16px;
  margin-left: 0;
}
.contact-subtitle {
  font-weight: 700;
  max-width: 443px;

  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
}
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-icon {
  width: 30px;
  height: 30px;
}
.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.info-title {
  font-weight: 600;
  font-size: 22px;
  color: var(--color-white);
}
.info-detail {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
}
/* =========================
   CONTACT FORM – RIGHT SIDE
========================= */
.contact-form-wrapper {
  width: 472px;
  margin-top: -210px;
}
.contact-form-wrapper img[src*="hubspot"],
.contact-form-wrapper img[src*="hs-logo"],
.contact-form-wrapper img[alt*="HubSpot"],
.contact-form-wrapper img[class*="hubspot"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}
.contact-form-wrapper h1,
.contact-form-wrapper h2,
.contact-form-wrapper h3 {
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  width: 460px;
  height: 49px;
  line-height: 49px;
  margin: 0 0 18px 0;
}
.form-title {
  width: 460px;
  height: 49px;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form input {
  width: 472px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #bbbbbb;
}

.contact-form textarea {
  width: 472px;
  height: 180px;
  resize: none;
  background-color: #b1aebd;
  border: none;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form button {
  width: 472px;
  height: 75px;
  background: #ffffff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 29px;
  text-align: center;
}
.contact-form-wrapper .hs-form {
  width: 100%;
}
.contact-form-wrapper .hs-form-field {
  margin-bottom: 16px;
}
.contact-form-wrapper .hs-input {
  width: 100% !important;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 0 18px;
  font-size: 20px;
  color: #fff;
  border: none;
}
.contact-form-wrapper .hs-input::placeholder {
  font-size: 20px;
  font-weight: 700;
  color: #bbbbbb;
}
.contact-form-wrapper textarea.hs-input {
  height: 180px;
  padding: 16px 18px;
  resize: none;
  background: #bbbbbb;
}
.contact-form-wrapper .hs-button {
  width: 100% !important;
  height: 75px;
  background: #fff;
  color: #000;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1660px) {
  .menu-icon {
    width: 55px;
    height: 55px;
  }
  .menu-text {
    font-size: 20px;
    right: 43px;
    top: 6px;
    height: 42px;
    min-width: 110px;
  }
  .hero-content h2 {
    font-size: 32px;
    margin-top: 97px;
  }
  .cta-button-line {
    margin-top: 20px;
    width: 366px;
  }
  .meet-text,
  .converts-text {
    font-size: 55px;
  }
  .converts-bg {
    width: 420px;
    height: 74px;
  }
  .cta-button-bg {
    width: 530px;
    height: 95px;
  }
  .cta-button-text {
    top: -2px;
    margin-left: 113px;
    font-size: 20px;
  }
  .stats {
    font-size: 18px;
    width: 700px;
  }
  .cdp-ribbon {
    width: 575px;
  }
  .cdp-digital-top-image {
    top: 45px;
  }

  .htds-title-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 120px;
  }
  .htds-presenting-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
  }

  .htds-presenting-text {
    font-size: 32.47px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #8f83ba;
    opacity: 0.9;
  }
  .htds-line {
    display: inline-block;
    width: 140px;
    background-color: #ffffff;
    opacity: 0.8;
    flex-shrink: 0;
  }
  .htds-main-title {
    display: block;
    margin: 0 auto 14px;
    font-size: 88.45px;
    font-weight: 700;
    line-height: 55px;
    color: #ffffff;
    -webkit-text-stroke: 5px #c3aff4;
    paint-order: stroke fill;
    text-align: center;
  }
  .htds-sub-title {
    font-size: 39.77px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.95;
    text-align: center;
  }
  .htds-cdp-title-presenting {
    font-size: 32px;
  }
  .cdp-ribbon-text {
    font-size: 22px;
  }
  .htds-cdp-title-sub {
    font-size: 36px;
  }
  .cdp-digital-top-image img {
    width: 539.4px;
  }
  .cdp-digital-hero-section {
    padding: 0 15px 155px;
    background: url("../images/main_1660.jpg") no-repeat top center;
  }
  .htds-cdp-title-main {
    font-size: 80px;
  }
  .htds-cdp-title-svg {
    margin-top: 120px;
  }
  .cdp-flow-indicator span:nth-child(1) {
    width: 70px;
    height: 70px;
  }
  .cdp-flow-indicator span:nth-child(2) {
    width: 60px;
    height: 60px;
  }
  .cdp-flow-indicator span:nth-child(3) {
    width: 50px;
    height: 50px;
  }
  .cdp-flow-indicator span:nth-child(4) {
    width: 40px;
    height: 40px;
  }
  .cdp-flow-indicator span:nth-child(5) {
    width: 30px;
    height: 30px;
  }
  .cdp-flow-indicator {
    margin-top: 50px;
  }
  .flow-icon {
    width: 86.45px;
    height: 86.45px;
  }
  .cdp-flow-icons {
    gap: 30px;
    margin-top: 100px;
  }
  .cdp-content-box.step-1 {
    top: 8px;
    margin-left: -50px;
    width: 450px !important;
    height: 452px !important;
  }
  .cdp-content-box h3 {
    font-size: 32px;
  }
  .cdp-content-box p {
    font-size: 18px;
  }
  .cdp-content-box li {
    font-size: 18px;
  }
  .cdp-btn {
    padding: 18px 20px;
    white-space: nowrap;
  }
  .cdp-content-box.step-2 {
    width: 466px !important;
    height: 580px !important;
    margin-left: -80px;
    margin-top: 38px;
  }
  .cdp-content-box.step-3 {
    width: 467px !important;
    height: 575px !important;
    margin-right: -84px;
    margin-top: 68px;
  }

  .step-2 {
    top: -12% !important;
  }
  .step-3 {
    top: -150% !important;
  }
  .funnel-headline {
    font-size: 32px;
  }
  .funnel-subtitle {
    font-size: 24px;
    top: 8px;
  }
  .step-icon img {
    width: 165px;
    height: 146px;
  }
  .journey-steps {
    max-width: 1230px;
    margin-top: -25px;
  }
  .step-title {
    font-size: 20px;
    margin-top: -40px;
  }
  .step-description {
    font-size: 20px;
  }
  .funnel-digital-cta {
    height: 100px;
  }
  .cta-digital-text {
    font-size: 20px;
  }
  .audience-eyebrow {
    font-size: 22px;
  }
  .audience-header h2 {
    font-size: 32px;
  }
  .audience-ribbon {
    height: 40px;
    margin-top: 9px;
  }
  .audience-ribbon-text {
    font-size: 18px;
  }
  .cohort-icon {
    width: 130.19px;
    height: 130.19px;
  }
  .cohort-item h4 {
    font-size: 20px;
  }
  .cohort-item span {
    font-size: 20px;
  }
  .audience-card {
    flex: 0 0 447px;
    max-width: 445px;
  }
  .audience-card .target-title {
    font-size: 20px;
  }
  .audience-card .target-list li {
    font-size: 18px;
  }

  .playbooks-digital-ribbon {
    width: 380px;
  }
  .playbooks-ribbon-text {
    font-size: 18px;
  }
  .playbooks-digital-ribbon + h2 {
    font-size: 48px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
    font-size: 38px !important;
  }
  .nav-btn.prev {
    margin-left: 70px;
  }
  .nav-btn.next {
    margin-right: 70px;
  }
  .carousel-arrow {
    width: 45px;
    height: 45px;
  }
  .carousel-arrow.prev {
    left: -10px;
  }

  .carousel-arrow.next {
    right: -35px;
  }
  .card {
    min-width: 320px;
    padding: 14px;
  }
  .card h3 {
    font-size: 20px;
  }
  .card p {
    font-size: 20px;
  }

  .case-studies-header h2 {
    font-size: 36px;
  }
  .subtitle {
    font-size: 22px;
  }
  .case-studies-header p {
    font-size: 22px;
    margin: -5px auto 0;
  }
  .case-tabs .tab {
    font-size: 18px;
  }
  .case-grid {
    grid-template-columns: repeat(3, 370px);
  }
  .case-content h4,
  .case-content h3,
  .case-x {
    font-size: 20px;
  }
  .case-content p {
    font-size: 20px;
  }
  .case-link {
    font-size: 18px;
  }
  .primary-btn {
    font-size: 22px;
    width: 600px;
    height: 72px;
  }
  .column-title {
    font-size: 24px;
  }
  .column-description {
    font-size: 20px;
    width: 341px;
  }
  .column-icon img {
    width: 204px;
    height: 202px;
  }

  .contact-section {
    margin-top: -35px;
  }
  .contact-title {
    font-size: 28px;
  }
  .contact-subtitle {
    font-size: 20px;
    max-width: 404px;
  }
  .info-title {
    font-size: 20px;
  }
  .info-detail {
    font-size: 20px;
  }
  .expert-modal-content {
    width: 477px;
    height: auto;
    /* height: 715px; */
    border-radius: 35px;
    padding: 28px;
  }

  .expert-form-logo img {
    width: 156px;
    height: 60px;
    margin-bottom: 21px;
  }

  .hubspot-form-container {
    width: 408px;
    margin-top: 17px;
  }

  .hubspot-form-container input,
  .hubspot-form-container textarea {
    width: 408px !important;
    height: 55px;
    font-size: 14px;
    border-radius: 14px !important;
    padding: 10px 14px;
    margin-top: 8px !important;
  }

  .hubspot-form-container textarea {
    height: 160px !important;
  }

  .hubspot-form-container input::placeholder,
  .hubspot-form-container textarea::placeholder {
    font-size: 17px;
    line-height: 21px;
  }

  .hubspot-form-container h1,
  .hubspot-form-container h2,
  .hubspot-form-container h3 {
    font-size: 22px;
    width: 398px;
    margin-top: 4px;
  }

  .hubspot-form-container .hs-error-msg.hs-main-font-element {
    font-size: 17px;
  }

  .hubspot-form-container .hs-button.primary.large {
    height: 51px;
    font-size: 21px;
  }

  .hubspot-form-container .hs-richtext img {
    width: 156px;
  }

  .contact-form-wrapper {
    margin-top: -190px;
  }
  .contact-form-wrapper h1,
  .contact-form-wrapper h2,
  .contact-form-wrapper h3 {
    font-size: 32px !important;
    width: 400px;
    height: 35px;
  }
}
@media screen and (max-width: 1440px) {
  .menu-icon {
    width: 48px;
    height: 48px;
  }

  .menu-text {
    font-size: 18px;
    right: 43px;
    top: 4px;
  }

  .hero-content h2 {
    font-size: 30px;
  }
  .cta-button-line {
    margin-top: 18px;
    width: 342px;
  }
  .meet-text,
  .converts-text {
    font-size: 46px;
  }
  .converts-bg {
    width: 350px;
    height: 62px;
  }
  .cta-button-bg {
    width: 470px;
    height: 80px;
    margin-left: -18px;
  }
  .cta-button-container {
    width: min(350px, 90%);
    margin-top: 15px;
    margin-left: -41px;
  }
  .cta-button-text {
    top: 0px;
    margin-left: 93px;
    font-size: 18px;
    top: -9px;
  }
  .stats {
    font-size: 16px;
    width: 700px;
    padding: 0px;
  }

  .cdp-ribbon {
    width: 500px;
  }
  .cdp-digital-top-image {
    top: 30px;
  }
  .htds-cdp-title-presenting {
    font-size: 30px;
  }
  .cdp-ribbon-text {
    font-size: 20px;
  }
  .htds-cdp-title-sub {
    font-size: 32px;
  }
  .htds-title-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 120px;
  }
  .htds-presenting-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
  }
  .htds-presenting-text {
    font-size: 28.5px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #8f83ba;
    opacity: 0.9;
  }
  .htds-line {
    display: inline-block;
    width: 110px;
    background-color: #ffffff;
    opacity: 0.8;
    flex-shrink: 0;
  }
  .htds-main-title {
    display: block;
    margin: 0 auto 14px;
    font-size: 75px;
    font-weight: 700;
    line-height: 40px;
    color: #ffffff;
    -webkit-text-stroke: 5px #c3aff4;
    paint-order: stroke fill;
    text-align: center;
  }
  .htds-sub-title {
    font-size: 34.5px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.95;
    text-align: center;
  }
  .cdp-digital-top-image img {
    width: 539.4px;
  }
  .cdp-digital-hero-section {
    padding: 0 15px 130px;
    background: url("../images/main_1440.jpg") no-repeat top center;
  }
  .htds-cdp-title-main {
    font-size: 75px;
  }
  .htds-cdp-title-svg {
    margin-top: 90px;
  }
  .cdp-flow-indicator {
    margin-top: 60px;
  }
  .cdp-flow-icons {
    margin-top: 75px;
    gap: 0px;
  }
  .flow-icon {
    width: 70px;
    height: 70px;
  }
  .cdp-flow-indicator span:nth-child(1) {
    width: 60px;
    height: 60px;
  }
  .cdp-flow-indicator span:nth-child(2) {
    width: 50px;
    height: 50px;
  }
  .cdp-flow-indicator span:nth-child(3) {
    width: 40px;
    height: 40px;
  }
  .cdp-flow-indicator span:nth-child(4) {
    width: 30px;
    height: 30px;
  }
  .cdp-flow-indicator span:nth-child(5) {
    width: 20px;
    height: 20px;
  }
  .cdp-content-box.step-1 {
    top: 8px;
    margin-left: -50px;
    width: 384px !important;
    height: 410px !important;
  }
  .cdp-content-box h3 {
    font-size: 30px;
  }
  .cdp-content-box p {
    font-size: 16px;
  }
  .cdp-content-box li {
    font-size: 16px;
  }
  .cdp-btn {
    padding: 12px 8px;
    white-space: nowrap;
    font-size: 20px;
  }
  .cdp-content-box.step-2 {
    width: 390px !important;
    height: 520px !important;
    margin-top: 62px;
    margin-left: 6px;
  }
  .cdp-content-box.step-3 {
    width: 395px !important;
    height: 530px !important;
    margin-right: 4px;
    margin-top: 90px;
  }

  .funnel-headline {
    font-size: 30px;
  }
  .funnel-subtitle {
    font-size: 22px;
    top: 6px;
  }
  .step-icon img {
    width: 144px;
    height: 126.75px;
  }

  .journey-steps {
    max-width: 1080px;
    margin-top: -25px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-description {
    font-size: 18px;
  }
  .funnel-digital-cta {
    height: 80px;
  }
  .cta-digital-text {
    font-size: 18px;
  }
  .audience-eyebrow {
    font-size: 20px;
  }
  .audience-header h2 {
    font-size: 30px;
  }
  .audience-ribbon {
    height: 36px;
    margin-top: 7px;
  }
  .audience-ribbon-text {
    font-size: 16px;
  }
  .cohort-icon {
    width: 112.95px;
    height: 112.95px;
  }
  .cohort-item h4 {
    font-size: 18px;
  }
  .cohort-item span {
    font-size: 18px;
  }
  .audience-card {
    flex: 0 0 415px;
    max-width: 445px;
  }
  .audience-card .target-title {
    font-size: 18px;
  }
  .audience-card .target-list li {
    font-size: 16px;
  }

  .playbooks-digital-ribbon {
    width: 360px;
  }
  .playbooks-ribbon-text {
    font-size: 16px;
  }
  .playbooks-digital-ribbon + h2 {
    font-size: 44px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
    font-size: 36px !important;
  }
  .nav-btn.prev {
    margin-left: 55px;
  }
  .nav-btn.next {
    margin-right: 85px;
  }
  .carousel-arrow {
    width: 39px;
    height: 39px;
  }
  .carousel-arrow.prev {
    left: 2px;
  }

  .carousel-arrow.next {
    right: -12px;
  }
  .card {
    min-width: 316px;
    padding: 12px;
  }
  .card h3 {
    font-size: 18px;
  }
  .card p {
    font-size: 18px;
  }

  .case-studies-header h2 {
    font-size: 34px;
  }
  .subtitle {
    font-size: 20px;
  }
  .case-studies-header p {
    font-size: 20px;
    margin: -15px auto 0;
  }
  .case-tabs .tab {
    font-size: 16px;
  }
  .case-grid {
    grid-template-columns: repeat(3, 355px);
  }
  .case-content h4,
  .case-content h3,
  .case-x {
    font-size: 18px;
  }
  .case-content p {
    font-size: 18px;
  }
  .case-link {
    font-size: 16px;
  }
  .primary-btn {
    font-size: 20px;
    width: 600px;
    height: 65px;
  }
  .legacy-bg {
    top: 5px;
  }
  .column-title {
    font-size: 22px;
  }
  .column-description {
    font-size: 18px;
    margin-left: 15px;
    width: 300px;
  }

  .column-icon img {
    width: 177.1px;
    height: 175.9px;
  }

  .contact-section {
    margin-top: -15px;
  }
  .contact-title {
    font-size: 26px;
  }
  .contact-subtitle {
    font-size: 18px;
    max-width: 359px;
  }
  .info-title {
    font-size: 18px;
  }
  .info-detail {
    font-size: 18px;
  }

  .expert-modal-content {
    width: 414px;
    height: auto;
    border-radius: 30px;
    padding: 24px;
  }

  .expert-form-logo img {
    width: 135px;
    height: 52px;
    margin-bottom: 18px;
  }

  .hubspot-form-container {
    width: 354px;
  }

  .hubspot-form-container input,
  .hubspot-form-container textarea {
    width: 354px !important;
    height: 48px;
    font-size: 13px;
    border-radius: 12px !important;
    padding: 9px 12px;
    margin-top: 10px;
  }

  .hubspot-form-container textarea {
    height: 139px !important;
  }

  .hubspot-form-container input::placeholder,
  .hubspot-form-container textarea::placeholder {
    font-size: 15px;
    line-height: 18px;
  }

  .hubspot-form-container h1,
  .hubspot-form-container h2,
  .hubspot-form-container h3 {
    font-size: 19px;
    width: 345px;
    margin-top: 4px;
  }

  .hubspot-form-container .hs-error-msg.hs-main-font-element {
    font-size: 15px;
  }

  .hubspot-form-container .hs-button.primary.large {
    height: 56px;
    font-size: 18px;
  }

  .hubspot-form-container .hs-richtext img {
    width: 135px;
  }
}
@media screen and (max-width: 1366px) {
  .menu-icon {
    width: 45.53px;
    height: 45.53px;
  }

  .menu-text {
    font-size: 16px;
    top: 3px;
    min-width: 90px;
  }

  .hero-content h2 {
    font-size: 28px;
  }
  .cta-button-line {
    width: 315px;
  }
  .meet-text,
  .converts-text {
    font-size: 42px;
  }
  .converts-bg {
    width: 320px;
    height: 60px;
  }
  .cta-button-bg {
    width: 440px;
    height: 74px;
  }

  .cta-button-text {
    top: 0px;
    margin-left: 60px;
    font-size: 16px;
    top: -12px;
  }
  .stats {
    font-size: 15px;
    width: 700px;
    padding: 0px;
  }

  .cdp-ribbon {
    width: 450px;
  }
  .cdp-digital-top-image {
    top: 27px;
  }
  .htds-cdp-title-presenting {
    font-size: 28px;
  }
  .cdp-ribbon-text {
    font-size: 18px;
  }
  .htds-cdp-title-sub {
    font-size: 30px;
  }
  .htds-title-wrapper {
    padding-top: 110px;
  }
  .htds-presenting-text {
    font-size: 26px;
  }
  .htds-line {
    width: 90px;
  }
  .htds-main-title {
    font-size: 67px;
  }
  .htds-sub-title {
    font-size: 31px;
  }
  .cdp-digital-top-image img {
    width: 539.4px;
  }
  .cdp-digital-hero-section {
    padding: 0 15px 175px;
    background: url("../images/main_1366.jpg") no-repeat top center;
  }
  .htds-cdp-title-main {
    font-size: 70px;
  }
  .htds-cdp-title-svg {
    margin-top: 90px;
  }
  .cdp-flow-indicator {
    margin-top: 95px;
  }
  .cdp-flow-icons {
    gap: 0px;
    margin-top: 10px;
  }
  .flow-icon {
    width: 60px;
    height: 60px;
  }
  .cdp-flow-indicator span:nth-child(1) {
    width: 50px;
    height: 50px;
  }
  .cdp-flow-indicator span:nth-child(2) {
    width: 40px;
    height: 40px;
  }
  .cdp-flow-indicator span:nth-child(3) {
    width: 30px;
    height: 30px;
  }
  .cdp-flow-indicator span:nth-child(4) {
    width: 20px;
    height: 20px;
  }
  .cdp-flow-indicator span:nth-child(5) {
    width: 15px;
    height: 15px;
  }
  .cdp-content-box.step-1 {
    top: 40px;
    margin-left: -72px;
    width: 355px !important;
    height: 385px !important;
  }
  .cdp-content-box h3 {
    font-size: 28px;
  }
  .cdp-content-box p {
    font-size: 15px;
  }
  .cdp-content-box li {
    font-size: 15px;
  }
  .cdp-btn {
    padding: 11px 11px;
    white-space: nowrap;
    font-size: 18px;
  }
  .cdp-content-box.step-2 {
    width: 360px !important;
    height: 484px !important;
    margin-top: 100px;
    margin-left: 43px;
  }
  .cdp-content-box.step-3 {
    width: 369px !important;
    height: 483px !important;
    margin-right: 50px;
    margin-top: 168px;
  }

  .funnel-headline {
    font-size: 28px;
  }
  .funnel-subtitle {
    font-size: 20px;
    top: 3px;
  }

  .step-icon img {
    width: 136.59px;
    height: 120.22px;
  }

  .journey-steps {
    max-width: 980px;
    margin-top: -25px;
  }
  .step-title {
    font-size: 16px;
  }
  .step-description {
    font-size: 16px;
  }
  .funnel-digital-cta {
    height: 75px;
  }
  .cta-digital-text {
    font-size: 16px;
  }
  .audience-eyebrow {
    font-size: 18px;
  }
  .audience-header h2 {
    font-size: 28px;
  }
  .audience-ribbon {
    height: 32px;
    margin-top: 9px;
  }
  .audience-ribbon-text {
    font-size: 15px;
  }
  .cohort-icon {
    width: 107.14px;
    height: 107.14px;
  }
  .cohort-item h4 {
    font-size: 16px;
  }
  .cohort-item span {
    font-size: 16px;
  }
  .audience-card {
    flex: 0 0 400px;
    max-width: 445px;
  }
  .audience-card .target-title {
    font-size: 16px;
  }
  .audience-card .target-list li {
    font-size: 15px;
  }

  .playbooks-digital-ribbon {
    width: 335px;
  }
  .playbooks-ribbon-text {
    font-size: 15px;
  }
  .playbooks-digital-ribbon + h2 {
    font-size: 42px;
  }
  .case-studies-header h2 {
    font-size: 32px;
  }
  .subtitle {
    font-size: 18px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
    font-size: 36px !important;
  }
  .nav-btn.prev {
    margin-left: 95px;
  }
  .nav-btn.next {
    margin-right: 95px;
    top: 175px;
  }
  .carousel-arrow {
    width: 37px;
    height: 37px;
  }
  .carousel-arrow.prev {
    left: 25px;
  }

  .carousel-arrow.next {
    right: 2px;
  }
  .card {
    min-width: 305px;
    padding: 10px;
  }
  .card h3 {
    font-size: 16px;
  }
  .card p {
    font-size: 16px;
  }
  .case-studies-header p {
    font-size: 18px;
    margin: -20px auto 0;
  }
  .case-tabs .tab {
    font-size: 15px;
  }
  .case-grid {
    grid-template-columns: repeat(3, 355px);
  }
  .case-content h4,
  .case-content h3,
  .case-x {
    font-size: 16px;
  }
  .case-content p {
    font-size: 16px;
  }
  .case-link {
    font-size: 15px;
  }
  .primary-btn {
    font-size: 18px;
    width: 600px;
    height: 55px;
  }
  .legacy-bg {
    top: 8px;
  }
  .column-title {
    font-size: 20px;
  }
  .column-description {
    font-size: 16px;
    margin-left: 22px;
    width: 270px;
  }
  .column-icon img {
    width: 168px;
    height: 166.86px;
  }
  .contact-section {
    margin-top: -15px;
  }
  .contact-title {
    font-size: 24px;
  }
  .contact-subtitle {
    font-size: 16px;
    max-width: 319px;
  }
  .info-title {
    font-size: 16px;
  }
  .info-detail {
    font-size: 16px;
  }

  .expert-modal-content {
    width: 393px;
    height: auto;
    /* height: 588px; */
    border-radius: 28px;
    padding: 23px;
  }

  .expert-form-logo img {
    width: 128px;
    height: 49px;
    margin-bottom: 17px;
  }

  .hubspot-form-container {
    width: 336px;
  }

  .hubspot-form-container input,
  .hubspot-form-container textarea {
    width: 336px !important;
    height: 46px;
    font-size: 12.5px;
    border-radius: 11px !important;
  }

  .hubspot-form-container textarea {
    height: 132px !important;
  }

  .hubspot-form-container input::placeholder,
  .hubspot-form-container textarea::placeholder {
    font-size: 14px;
  }

  .hubspot-form-container h1,
  .hubspot-form-container h2,
  .hubspot-form-container h3 {
    font-size: 18px;
    width: 328px;
  }

  .hubspot-form-container .hs-error-msg.hs-main-font-element {
    font-size: 14px;
  }

  .hubspot-form-container .hs-button.primary.large {
    height: 53px;
    font-size: 17px;
  }

  .contact-form-wrapper {
    margin-top: -180px;
  }

  .contact-form-wrapper h1,
  .contact-form-wrapper h2,
  .contact-form-wrapper h3 {
    font-size: 30px !important;
    width: 380px;
    height: 32px;
  }
}

@media screen and (max-width: 1280px) {
  .menu-icon {
    width: 42.66px;
    height: 42.66px;
    right: 12px;
  }

  .menu-text {
    font-size: 14px;
    top: 2px;
    min-width: 80px;
  }

  .hero-content h2 {
    font-size: 26px;
  }
  .cta-button-line {
    width: 294px;
  }
  .meet-text,
  .converts-text {
    font-size: 38px;
  }
  .converts-bg {
    width: 291px;
    height: 48px;
  }
  .cta-button-bg {
    width: 405px;
    height: 67px;
  }
  .cta-button-text {
    top: 0px;
    margin-left: 30px;
    font-size: 15px;
    top: -12px;
  }
  .stats {
    font-size: 14px;
    width: 700px;
    margin-bottom: -40px;
  }

  .cdp-ribbon {
    width: 410px;
  }
  .cdp-digital-top-image {
    top: 27px;
  }
  .htds-cdp-title-presenting {
    font-size: 24px;
  }
  .cdp-ribbon-text {
    font-size: 16px;
  }
  .htds-cdp-title-sub {
    font-size: 28px;
  }

  .htds-title-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 90px;
  }

  .htds-presenting-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
  }
  .htds-presenting-text {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #8f83ba;
    opacity: 0.9;
  }
  .htds-line {
    display: inline-block;
    width: 90px;
    background-color: #ffffff;
    opacity: 0.8;
    flex-shrink: 0;
  }
  .htds-main-title {
    display: block;
    margin: 0 auto 14px;
    font-size: 67px;
    font-weight: 700;
    line-height: 37px;
    color: #ffffff;
    -webkit-text-stroke: 5px #c3aff4;
    paint-order: stroke fill;
    text-align: center;
  }
  .htds-sub-title {
    font-size: 30.66px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.95;
    text-align: center;
  }
  .cdp-digital-top-image img {
    width: 539.4px;
  }
  .cdp-digital-hero-section {
    padding: 0 15px 170px;
    background: url("../images/main_1280.jpg") no-repeat top center;
  }
  .htds-cdp-title-main {
    font-size: 66px;
  }
  .htds-cdp-title-svg {
    margin-top: 90px;
  }
  .cdp-flow-indicator {
    margin-top: 90px;
  }
  .cdp-flow-icons {
    margin-top: 60px;
    gap: 0px;
  }
  .flow-icon {
    width: 47px;
    height: 47px;
  }
  .cdp-flow-indicator span:nth-child(1) {
    width: 40px;
    height: 40px;
  }
  .cdp-flow-indicator span:nth-child(2) {
    width: 30px;
    height: 30px;
  }
  .cdp-flow-indicator span:nth-child(3) {
    width: 20px;
    height: 20px;
  }
  .cdp-flow-indicator span:nth-child(4) {
    width: 10px;
    height: 10px;
  }
  .cdp-flow-indicator span:nth-child(5) {
    width: 8px;
    height: 8px;
  }
  .cdp-content-box.step-1 {
    top: 60px;
    margin-left: -95px;
    width: 295px !important;
    height: 350px !important;
  }
  .cdp-content-box h3 {
    font-size: 26px;
  }
  .cdp-content-box p {
    font-size: 13px;
  }
  .cdp-content-box li {
    font-size: 14px;
  }
  .cdp-btn {
    padding: 7px 9px;
    white-space: nowrap;
    font-size: 15px;
  }
  .cdp-content-box.step-2 {
    width: 320px !important;
    height: 440px !important;
    margin-top: 110px;
    margin-left: 100px;
  }
  .cdp-content-box.step-3 {
    width: 346px !important;
    height: 430px !important;
    margin-right: 80px;
    margin-top: 147px;
  }
  .funnel-container {
    margin-top: -65px;
  }
  .funnel-headline {
    font-size: 26px;
  }
  .funnel-subtitle {
    font-size: 18px;
    top: 0px;
  }
  .step-icon img {
    width: 128px;
    height: 112px;
  }

  .journey-steps {
    max-width: 890px;
    margin-top: -65px;
  }
  .step-title {
    font-size: 14px;
    margin-top: -45px;
  }
  .step-description {
    font-size: 14px;
  }
  .funnel-digital-cta {
    height: 65px;
  }
  .cta-digital-text {
    font-size: 14px;
  }
  .audience-eyebrow {
    font-size: 16px;
  }
  .audience-header h2 {
    font-size: 26px;
  }
  .audience-ribbon {
    height: 30px;
    margin-top: 11px;
  }
  .audience-ribbon-text {
    font-size: 14px;
  }
  .cohort-icon {
    width: 100.39px;
    height: 100.39px;
  }
  .cohort-item h4 {
    font-size: 15px;
  }
  .cohort-item span {
    font-size: 15px;
  }
  .audience-card {
    flex: 0 0 350px;
    max-width: 445px;
  }
  .audience-card .target-title {
    font-size: 15px;
  }
  .audience-card .target-list li {
    font-size: 14px;
  }

  .playbooks-digital-ribbon {
    width: 320px;
  }
  .playbooks-ribbon-text {
    font-size: 14px;
  }
  .playbooks-digital-ribbon {
    top: -25px;
  }
  .playbooks-digital-ribbon + h2 {
    font-size: 38px;
    margin-top: -55px;
  }
  .case-studies-header h2 {
    font-size: 28px;
  }
  .subtitle {
    font-size: 16px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
    font-size: 36px !important;
  }
  .nav-btn.prev {
    margin-left: 115px;
    margin-top: -25px;
  }
  .nav-btn.next {
    margin-right: 135px;
  }
  .carousel-arrow {
    width: 35px;
    height: 35px;
  }
  .carousel-arrow.prev {
    left: 40px;
  }

  .carousel-arrow.next {
    right: 40px;
  }
  .card {
    min-width: 295px;
    padding: 8px;
  }
  .card h3 {
    font-size: 15px;
  }
  .card p {
    font-size: 15px;
  }
  .case-studies-header p {
    font-size: 16px;
    margin: -25px auto 0;
  }
  .case-tabs .tab {
    font-size: 14px;
  }
  .case-grid {
    grid-template-columns: repeat(3, 355px);
  }
  .case-content h4,
  .case-content h3,
  .case-x {
    font-size: 15px;
  }
  .case-content p {
    font-size: 15px;
  }
  .case-link {
    font-size: 14px;
  }
  .primary-btn {
    font-size: 16px;
    width: 500px;
    height: 50px;
  }
  .legacy-bg {
    top: 15px;
  }
  .column-title {
    font-size: 18px;
  }
  .column-description {
    font-size: 13px;
    margin-left: 34px;
    width: 217px;
  }
  .column-icon img {
    width: 157.4px;
    height: 156.3px;
  }

  .contact-bg {
    content: url("../images/contact_1280.png");
  }
  .contact-section {
    margin-top: -15px;
  }
  .contact-title {
    font-size: 22px;
  }
  .contact-subtitle {
    font-size: 14px;
    max-width: 269px;
  }
  .info-title {
    font-size: 14px;
  }
  .info-detail {
    font-size: 14px;
  }

  .expert-modal-content {
    width: 368px;
    height: auto;
    border-radius: 26px;
    padding: 21px;
  }

  .expert-form-logo img {
    width: 120px;
    height: 46px;
    margin-bottom: 16px;
  }

  .hubspot-form-container {
    width: 314px;
  }

  .hubspot-form-container input,
  .hubspot-form-container textarea {
    width: 314px !important;
    height: 43px;
    font-size: 12px;
    border-radius: 10px !important;
  }

  .hubspot-form-container textarea {
    height: 123px !important;
  }

  .hubspot-form-container input::placeholder,
  .hubspot-form-container textarea::placeholder {
    font-size: 13px;
  }

  .hubspot-form-container h1,
  .hubspot-form-container h2,
  .hubspot-form-container h3 {
    font-size: 17px;
    width: 306px;
  }

  .hubspot-form-container .hs-error-msg.hs-main-font-element {
    font-size: 13px;
  }

  .hubspot-form-container .hs-button.primary.large {
    height: 50px;
    font-size: 16px;
  }

  .contact-form-wrapper {
    margin-top: -170px;
  }

  .contact-form-wrapper h1,
  .contact-form-wrapper h2,
  .contact-form-wrapper h3 {
    font-size: 28px !important;
    width: 370px;
    height: 30px;
  }
}

.hero-bg_mb {
  display: none;
}

@media screen and (max-width: 720px) {
  .hero-side-menu {
    display: none;
  }
  .hero-digital-section {
    background-image: url("../images/hero_bg_mb.png");
    overflow-x: hidden;
  }

  .hero-bg_mb {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .hero-bg {
    display: none;
  }
  .hero-content {
    margin-top: 420px;
  }

  .hero-content h2 {
    font-family: "Monsterat", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    margin: 0;
    color: var(--color-white);
    margin-top: 90px;
  }
  .hero-container {
    padding: 0;
  }
  .cta-button-line {
    margin: 12px auto;
    width: 372px;
    height: 2px;
    color: #9687d3;
  }
  .hero-overlay {
    text-align: center;
    width: 100%;
  }
  a.cta-button {
    text-align: center;
    display: flex;
    justify-content: center;
    outline: none;
  }
  .cta-button-container {
    margin-left: -27px;
  }
  .meet-text {
    font-family: "Monsterat", sans-serif;
    font-weight: 700;
    font-size: 64px;
    margin-bottom: -19px;
    display: inline-block;
    transform: scaleX(1.1);
    transform-origin: center;
  }

  .converts-bg {
    width: 497px;
    height: 74px;
    margin-left: 4px;
    margin-top: 10px;
  }
  .converts-text {
    font-family: "Monsterat", sans-serif;
    font-size: 64px;
    font-weight: 800;
  }
  .cta-button-bg {
    width: 628px;
    height: 120px;
    margin-left: -125px;
    background: url(../images/talk-to-an-expert.png) no-repeat center / cover;
  }
  .cta-button-text {
    font-family: "Monsterat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
  }
  .cta-digital-text {
    width: 100%;
    height: 100%;
    font-size: 36px;
    line-height: 43px;
    margin-top: 12px;
  }
  .funnel-digital-cta {
    width: 100%;
    height: auto;
    min-height: 100px;
    background-size: cover;
    padding: 20px 40px;
    background: black !important;
    border-radius: 100px;
  }

  .funnel-digital-cta#openFormFunnel:hover {
    background: rgb(0, 0, 0) !important;
    color: #fff !important;
    span {
      color: #fff !important;
    }
  }

  .funnel-digital-cta:hover .cta-digital-text {
    color: black;
  }

  .stats {
    width: 100%;
    margin: 0;
    font-size: 18px;
    text-align: center;
  }
  .cdp-digital-hero-section {
    background: url("../images/cdp_bg_mb.png") no-repeat top center;
    background-size: cover;
    padding: 40px 15px 120px;
  }
  .cdp-digital-top-image {
    top: -28px;
  }
  .cdp-digital-container {
    margin: 31px auto;
  }
  .htds-title-wrapper {
    padding-top: 0px;
  }
  .cdp-digital-top-image {
    top: -27px;
  }
  .cdp-ribbon {
    width: 683px;
  }
  .cdp-ribbon-text {
    font-size: 28px;
  }
  .htds-main-title {
    font-size: 82.66px;
  }
  .htds-line {
    width: 150px;
  }
  .htds-sub-title {
    font-size: 36.08px;
  }
  .htds-presenting-text {
    font-size: 29.81px;
    font-weight: 500;
    color: #ffffff;
  }
  .cdp-flow-area {
    display: none;
  }
  .mobile-funnel {
    display: block;
    margin-top: 40px;
  }

  .mobile-funnel-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .funnel-tab {
    padding: 10px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    border: none;
    font-size: 14px;
  }

  .funnel-tab.active {
    background: #ffffff;
    color: #5c449f;
    font-size: 22px;
  }

  .mobile-funnel-slider {
    display: flex;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 0 60px;
  }

  .mobile-funnel-slider::-webkit-scrollbar {
    display: none;
  }

  .funnel-slide {
    flex: 0 0 494px;
    height: 604px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    -ms-scroll-snap-align: center;
    scroll-snap-align: center;
    opacity: 0.35;
    transition: opacity 0.35s ease;
  }

  .funnel-slide.active {
    opacity: 1;
  }
  .funnel-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    color: #fff;
  }

  .funnel-rupee {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
  }

  .funnel-slide h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
  }

  .funnel-slide ul {
    list-style: none;
    padding: 0;
  }

  .funnel-slide li {
    top: 20px;
    font-size: 22px;
    margin-bottom: 11px;
    padding-left: 44px;
    position: relative;
  }

  .funnel-slide li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 26px;
    height: 27px;
    background: url("../images/digital-star.png") no-repeat center/contain;
  }
  .cdp-btn {
    padding: 22px 104px;
    white-space: nowrap;
    font-size: 22px;
    margin-top: 20px;
  }
  .mobile-funnel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .funnel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }

  .funnel-dot.active {
    background: #ffffff;
    width: 18px;
    border-radius: 6px;
  }
  .funnel-container {
    margin-top: -33px;
  }
  .funnel-headline {
    font-size: 39px;
    font-weight: 800;
  }
  .funnel-title {
    font-family: "Monsterat", sans-serif;
    font-weight: 700;
    font-size: 34px;
    font-weight: 700;
  }
  .funnel-desc {
    font-family: "Monsterat", sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin-top: 12px;
  }
  button.funnel-tab {
    font-family: "Monsterat", sans-serif;
    font-weight: 500;
    width: 140px;
    height: 61px;
    border: 1px solid #ffffff;
    border-radius: 113px;
    font-size: 22px;
  }

  .journey-steps {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
  .step-icon img {
    width: 260px;
    height: 228.86px;
  }
  .step-title {
    font-size: 28px;
    margin-top: -45px;
    font-weight: 800;
  }
  .step-description {
    font-size: 28px;
    font-weight: 800;
  }
  .audience-bg {
    width: 200%;
    max-width: none;
  }
  .funnel-subtitle {
    font-size: 32px;
    width: 566px;
  }
  .audience-eyebrow {
    font-size: 28px;
    margin-left: 61px;
    margin-top: 25px;
    font-weight: 800;
  }
  .audience-header h2 {
    font-size: 40px;
    margin-left: 38px;
    font-weight: 800;
  }
  .audience-ribbon {
    height: 48px;
  }
  .audience-ribbon-text {
    font-size: 24px;
  }
  .cohort-icon {
    width: 150.06px;
    height: 150.06px;
  }
  .cohort-item h4 {
    font-size: 20px;
  }
  .cohort-item span {
    font-size: 20px;
  }
  .audience-info-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
  }
  .audience-card {
    max-width: 517.67px;
    height: 695.06px;
  }
  .audience-card .target-title {
    font-size: 24.54px;
  }
  .audience-card .target-list li {
    font-size: 22.31px;
  }
  .audience-card .target-image img {
    margin-bottom: -20px;
  }
  .playbooks-digital-ribbon {
    height: 87.33px;
    width: 450.27px;
  }
  .playbooks-ribbon-text {
    font-size: 24px;
  }
  .playbooks-digital-ribbon + h2 {
    font-size: 56px;
    margin-top: -35px;
    font-weight: 600;
  }
  .subtitle {
    line-height: 28px;
    white-space: normal;
    max-width: 436px;
    font-size: 24px;
    font-weight: 600;
  }
  .card {
    min-width: 459px;
    height: 578px;
  }
  .card h3 {
    font-size: 28px;
  }
  .card p {
    font-size: 24px;
  }
  .carousel-arrow.prev {
    left: -17px;
    width: 64.07px;
    height: 64.07px;
  }
  .carousel-arrow.next {
    right: -12px;
    width: 64.07px;
    height: 64.07px;
  }

  .case-grid {
    overflow: auto;
    justify-content: start;
    padding: 32px;
  }
  .case-grid::-webkit-scrollbar {
    display: none;
  }
  .case-studies-header h2 {
    max-width: 493px;
    font-size: 40px;
    font-weight: 500;
  }
  .case-studies-header p {
    font-size: 24px;
    margin: -1 5px auto 0;
  }
  .case-tabs {
    flex-wrap: wrap;
    height: 61px;
  }
  .case-tabs .tab {
    width: fit-content;
    padding: 0 40px;
    font-size: 22.62px;
  }
  .case-content h4,
  .case-content h3,
  .case-x {
    font-size: 22px;
    font-weight: 600;
  }
  .case-content p {
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    margin: 8px 0;
  }
  .case-cta {
    display: none;
  }
  .case-link {
    font-size: 20px;
    font-weight: 600;
  }
  .legacy-bg {
    max-width: none;
  }
  .legacy-container {
    padding: 0 39px;
  }

  .legacy-columns {
    grid-template-columns: repeat(auto-fit, minmax(226px, 1fr));
  }
  .column-icon img {
    width: 196.96px;
    height: 196.96px;
  }
  .column-title {
    font-size: 24px;
    font-weight: 700;
  }
  .column-description {
    font-size: 22px;
    font-weight: 400;
    width: 100%;
    margin: 0;
  }

  .carousel {
    transform: translate(-50px);
  }
  .case-grid {
    grid-template-columns: repeat(3, 428px);
  }

  .carousel-section::before,
  .carousel-section::after {
    width: 100px;
  }
  .contact-section {
    padding: 100px 0;
    margin-top: -33px;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .contact-title {
    font-size: 40px;
    text-align: center;
    font-weight: 500;
    margin-left: 75px;
  }
  .contact-bg {
    height: 100%;
  }
  .contact-subtitle {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    margin-left: 90px;
    max-width: 557px;
  }
  .info-item {
    display: none;
  }
  .contact-form-wrapper {
    margin: 0 auto;
  }
  .contact-form-wrapper h1,
  .contact-form-wrapper h2,
  .contact-form-wrapper h3 {
    font-size: 40px !important;
    width: 557px;
    height: 49px;
    margin-left: -38px;
  }
  .contact-form-wrapper textarea.hs-input {
    background: rgba(255, 255, 255, 0.25);
  }
  .contact-form-wrapper .hs-input::placeholder {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 435px) {
  .hero-digital-section {
    min-height: 542px;
    overflow-x: hidden;
  }
  .hero-container {
    padding: 0;
    margin-top: -133px;
  }
  .hero-content h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .cta-button-line {
    margin: 6px auto;
    width: 213px;
    height: 2px;
  }
  .meet-text {
    font-size: 38.4px;
  }
  .converts-bg {
    width: 267px;
    height: 44px;
    margin-left: 21px;
    margin-top: 22px;
  }
  .converts-text {
    font-size: 35px;
    font-weight: 800;
    margin-left: 13px;
    margin-top: 17px;
  }
  .cta-button-bg {
    width: 377px;
    height: 72px;
    margin-left: 8px;
  }
  .cta-button-text {
    font-size: 15px;
    margin-top: 2px;
  }
  .stats {
    font-size: 11px;
    margin-bottom: 20px !important;
  }

  .cdp-ribbon {
    width: 409.8px;
  }
  .cdp-ribbon-text {
    font-size: 17px;
  }
  .htds-presenting-text {
    font-size: 18px;
  }
  .htds-line {
    width: 70px;
  }
  .htds-main-title {
    font-size: 50px;
  }
  .htds-sub-title {
    font-size: 22px;
  }

  .mobile-funnel {
    display: block;
    margin-top: 40px;
  }

  .mobile-funnel-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .funnel-tab {
    padding: 10px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    border: none;
    font-size: 14px;
  }

  .funnel-tab.active {
    background: #ffffff;
    color: #5c449f;
    border: 1px solid;
    font-size: 13px;
  }

  .mobile-funnel-slider {
    display: flex;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    border-radius: 12px;
    gap: 24px;
    padding: 0 60px;
  }

  .funnel-slide {
    flex: 0 0 494px;
    height: 448px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;

    -ms-scroll-snap-align: center;
    scroll-snap-align: center;

    opacity: 0.35;
    transition: opacity 0.35s ease;
  }

  p.funnel-desc {
    width: 331px;
    height: 40px;
    margin-bottom: 20px;
  }
  .funnel-slide.active {
    opacity: 1;
  }
  .funnel-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    color: #fff;
  }

  .funnel-rupee {
    margin-left: 62px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }
  .funnel-title {
    margin-left: 4px;
    font-size: 20px;
    font-weight: 700;
  }
  .funnel-desc {
    font-size: 15px;
    font-weight: 400;
    margin-top: 12px;
    margin-left: 62px;
  }

  .funnel-slide h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
  }

  .funnel-slide ul {
    list-style: none;
    padding: 0;
  }

  .funnel-slide li {
    top: 20px;
    font-size: 16px;
    margin-bottom: 11px;
    padding-left: 99px;
    position: relative;
  }

  .funnel-slide li::before {
    left: 66px;
    top: 4px;
    width: 18px;
    height: 19px;
  }
  button.funnel-tab {
    width: 95px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 80px;
    font-size: 13px;
  }
  .cdp-btn {
    padding: 8px 27px;
    white-space: nowrap;
    font-size: 17px;
    margin-top: 34px;
    margin-left: 51px;
  }
  .mobile-funnel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .funnel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }

  .funnel-dot.active {
    background: #ffffff;
    width: 18px;
    border-radius: 6px;
  }

  .funnel-headline {
    font-size: 23.4px;
  }
  .funnel-subtitle {
    font-size: 19.2px;
    width: 339.06px;
  }
  .step-icon img {
    width: 156px;
    height: 137px;
  }
  .step-title {
    font-size: 17px;
  }
  .step-description {
    font-size: 17px;
  }
  .funnel-digital-cta {
    padding: 0;
  }
  .cta-digital-text {
    width: 100%;
    height: 100%;
    font-size: 22px;
    line-height: 26px;
    margin-top: 20px;
  }

  .audience-bg {
    width: 300%;
    max-width: none;
  }
  .audience-eyebrow {
    font-size: 17px;
    margin-left: 0px !important;
  }
  .audience-header h2 {
    font-size: 24px;
    margin-left: 0 !important;
  }
  .audience-ribbon {
    height: 29px;
  }
  .audience-ribbon-text {
    font-size: 14px;
  }
  .cohort-icon {
    width: 90px;
    height: 90px;
  }
  .cohort-item {
    max-width: 127px;
  }
  .cohort-item h4 {
    font-size: 12px;
    margin-left: -55px;
  }
  .cohort-item span {
    font-size: 12px;
  }
  .cohort-list {
    gap: 0px !important;
  }
  .audience-card {
    max-width: 310px;
    height: 417px;
  }
  .audience-card .check-icon img {
    width: 90%;
    height: 90%;
  }
  .audience-card .target-title {
    font-size: 14.72px;
  }
  .audience-card .target-list li {
    font-size: 13.39px;
  }

  .playbooks-digital-ribbon {
    height: 106.4px;
    width: 270.16px;
    top: -39px;
  }
  .playbooks-ribbon-text {
    font-size: 14.4px;
  }
  .playbooks-digital-ribbon + h2 {
    font-size: 33.6px;
    margin-top: -68px;
  }
  .subtitle {
    line-height: 21px;
    max-width: 336px;
    font-size: 14.4px;
  }
  .carousel {
    transform: translate(-40px);
  }
  .card {
    min-width: 275.4px;
    height: 346.8px;
  }
  .card h3 {
    font-size: 16.8px;
  }
  .card p {
    font-size: 14.4px;
  }
  .carousel-arrow.prev {
    left: -19px;
    width: 38.44px;
    height: 38.44px;
  }
  .carousel-arrow.next {
    right: -19.4px;
    width: 38.44px;
    height: 38.44px;
  }

  .case-studies-header h2 {
    max-width: 295.8px;
    font-size: 24px;
    font-weight: 500;
  }
  .case-studies-header p {
    font-size: 14.4px;
  }
  .case-tabs {
    height: 100px;
  }
  .case-tabs .tab {
    height: 40px;
    padding: 0 19px;
    font-size: 13.57px;
  }

  .case-grid {
    grid-template-columns: repeat(3, 300px);
    padding: 50px;
  }
  .case-content h4,
  .case-content h3,
  .case-x {
    font-size: 13.2px;
    font-weight: 600;
  }
  .case-content p {
    font-size: 13.2px;
  }
  .case-link {
    font-size: 12px;
  }

  .legacy-bg {
    max-width: none;
    /* width: 200%; */
  }

  .legacy-columns {
    grid-template-columns: repeat(auto-fit, minmax(135.6px, 1fr));
  }

  .column-icon img {
    width: 118.18px;
    height: 118.18px;
  }

  .column-title {
    font-size: 14.4px;
    font-weight: 700;
  }

  .column-description {
    font-size: 13.2px;
    font-weight: 400;
    width: 100%;
    margin: 0;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 19.2px;
  }

  .contact-title {
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    margin-left: 45px;
  }

  .contact-bg {
    height: 100%;
  }

  .contact-subtitle {
    font-size: 13.2px;
    text-align: center;
    font-weight: 500;
    margin-left: 73px;
    max-width: 322px;
  }

  .info-item {
    display: none;
  }

  .contact-form-wrapper {
    margin: 0 auto;
    margin-right: 23px;
  }

  .contact-form-wrapper h1,
  .contact-form-wrapper h2,
  .contact-form-wrapper h3 {
    font-size: 24px !important;
    width: 334.2px;
    height: 29.4px;
    margin-left: -22.8px;
  }

  .contact-form-wrapper textarea.hs-input {
    background: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (max-width: 390px) {
  .hero-content h2 {
    font-size: 14px;
    line-height: 19px;
  }
  .cta-button-line {
    width: 122px;
    height: 1px;
  }
  .meet-text {
    font-family: "Monsterat", sans-serif;
    font-weight: 700;
    font-size: 23px;
    margin-bottom: -19px;
    transform: scaleX(1.1);
    transform-origin: center;
    white-space: nowrap;
    display: block;
  }
  .converts-bg {
    width: 142px;
    height: 24px;
    margin-left: 17px;
    margin-top: 20px;
  }
  .converts-text {
    font-size: 19px;
    font-weight: 800;
    margin-left: 7px;
    margin-top: 18px;
  }
  .cta-button-container {
    margin-bottom: -36px;
    margin-left: -39px;
  }

  .cta-button-bg {
    width: 203px;
    height: 38px;
    margin-left: 78px;
  }
  .cta-button-text {
    font-size: 8px;
    margin-top: -11px;
  }
  .stats {
    font-size: 8px;
    margin-bottom: 59px !important;
  }

  .cdp-digital-top-image {
    top: -48px;
  }

  .cdp-ribbon {
    width: 221.292px;
  }

  .htds-title-wrapper {
    margin-top: -56px;
    padding-top: 0px;
  }

  .cdp-ribbon-text {
    font-size: 9.18px;
  }

  .htds-presenting-text {
    font-size: 9.72px;
  }

  .htds-line {
    width: 22.8px;
  }

  .htds-main-title {
    font-size: 27px;
    -webkit-text-stroke: 3px #c3aff4;
    line-height: 0px !important;
  }

  .htds-sub-title {
    font-size: 11.88px;
    -webkit-text-stroke: 1px #c3aff4;
    letter-spacing: -1px;
  }
  .funnel-headline {
    font-size: 15.63px;
    width: 256px;
  }
  .funnel-subtitle {
    font-size: 10px;
    width: 156.06px;
  }
  .mobile-funnel-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  button.funnel-tab {
    width: 47px;
    height: 21px;
    border-radius: 40px;
    font-size: 7px;
    padding: 5px;
  }
  .funnel-tab.active {
    font-size: 7px;
  }
  .funnel-tab {
    margin-bottom: 10px;
  }

  .funnel-slide {
    flex: 0 0 226px;
    height: 275px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
    padding: 15px;
    box-sizing: border-box;
    scroll-snap-align: center;
    opacity: 0.35;
    transition: opacity 0.35s ease;
    width: 37px !important;
  }
  .funnel-rupee {
    margin-left: 1px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .funnel-title {
    font-size: 12px;
    font-weight: 700;
    margin-left: -3px;
  }
  p.funnel-desc {
    width: 168px;
    height: 22px;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .funnel-slide li::before {
    left: 81px;
    top: 1px;
    width: 12px;
    height: 13px;
    margin-left: -83px;
  }
  .funnel-desc {
    font-size: 10px;
    font-weight: 400;
    margin-top: -12px;
    margin-left: 77px;
  }
  .funnel-slide li {
    top: 26px;
    font-size: 9px;
    margin-bottom: 11px;
    padding-left: 16px;
    position: relative;
  }
  .cdp-btn {
    padding: 5px 37px;
    white-space: nowrap;
    font-size: 9px;
    margin-top: 20px;
    margin-left: -9px;
  }
  .journey-steps {
    margin-top: -101px;
    gap: 0px !important;
  }

  .step-icon img {
    width: 84.24px;
    height: 73.98px;
  }

  .step-title {
    font-size: 9.18px;
    margin-top: -93px;
  }

  .step-description {
    font-size: 9.18px;
  }

  .funnel-digital-cta {
    padding: 5px;
    width: 240px;
    height: 45px;
  }

  .cta-digital-text {
    width: 100%;
    height: 100%;
    font-size: 13.34px;
    line-height: 18.04px;
    margin-top: 22.8px;
  }
  .audience-bg {
    width: 220%;
    height: 90%;
  }
  .playbooks-and-cases-bg {
    margin: -174px auto 0;
  }
  .audience-eyebrow {
    font-size: 9px;
    margin-left: 104px !important;
    margin-top: -40px;
    width: 184px;
  }
  .audience-header h2 {
    font-size: 12px;
    margin-left: 89px !important;
    width: 222px;
  }
  .audience-ribbon {
    height: 15.66px;
  }

  .audience-ribbon-text {
    font-size: 7.56px;
  }
  .cohort-icon {
    width: 48.6px;
    height: 48.6px;
  }

  .cohort-item h4 {
    font-size: 6.48px;
    margin-top: -11px;
    margin-left: -81px;
  }

  .cohort-item span {
    font-size: 6.48px;
    line-height: 0px !important;
  }
  .cohort-list {
    gap: 0px !important;
  }

  .audience-card {
    max-width: 167.4px;
    height: 224.58px;
    margin-top: -45px;
  }

  .audience-card .check-icon img {
    width: 55%;
    height: 55%;
  }

  .audience-card .target-title {
    font-size: 7.9488px;
  }

  .audience-card .target-list li {
    font-size: 7.2306px;
    gap: 0px !important;
    margin-bottom: -3px;
  }

  .audience-card .target-content {
    padding: 6px 6px 2px;
  }
  .audience-info-cards {
    gap: 0px !important;
    margin-top: 41px;
  }

  .playbooks-digital-ribbon {
    height: 102.716px;
    width: 145.486px;
    top: -43.6px;
  }

  .cohort-item {
    min-width: 0;
    max-width: 80px;
    text-align: center;
  }

  .playbooks-ribbon-text {
    font-size: 7.776px;
  }

  .playbooks-digital-ribbon + h2 {
    font-size: 18.144px;
    margin-top: -82px;
  }

  .subtitle {
    line-height: 11.34px;
    max-width: 181.44px;
    font-size: 7.776px;
  }

  .carousel {
    transform: translate(-13px);
  }

  .card {
    min-width: 148.116px;
    height: 187.272px;
  }

  .card h3 {
    font-size: 9.072px;
    margin: 7px 0 6px;
  }

  .card p {
    font-size: 7.776px;
  }

  .carousel-arrow.prev {
    left: 45.68px;
    width: 20.7376px;
    height: 20.7376px;
  }

  .carousel-arrow.next {
    right: 36.84px;
    width: 20.7376px;
    height: 20.7376px;
  }

  .case-studies-header h2 {
    max-width: 176.132px;
    font-size: 12.96px;
    font-weight: 500;
  }

  .case-studies-header p {
    font-size: 7.776px;
    height: 0px !important;
    margin-top: -15px;
  }

  .case-tabs {
    height: 54px;
  }

  .case-tabs .tab {
    height: 21.6px;
    padding: 0 10.26px;
    font-size: 7.7178px;
    border: 1px solid #ddd;
  }

  .case-grid {
    grid-template-columns: repeat(3, 162px);
    padding: 27px;
  }

  .case-content h4,
  .case-content h3,
  .case-x {
    font-size: 7.128px;
    font-weight: 600;
    margin-top: -15px;
  }

  .case-content p {
    font-size: 7.128px;
  }

  .case-divider {
    margin: 12px -20px -31px -20px;
  }

  .case-link {
    font-size: 6.48px;
    margin-top: 50px;
  }
  .case-link .arrow-img {
    width: 6px;
  }

  .legacy-bg {
    max-width: none;
    /* width: 101%; */
  }
  .column-icon img {
    width: 63.7572px;
    height: 63.7572px;
  }
  .column-title {
    font-size: 7.776px;
    font-weight: 700;
    margin-top: -20px;
  }
  .legacy-columns {
    grid-template-columns: repeat(auto-fit, minmax(124.6px, 1fr));
  }
  .legacy-column {
    margin-bottom: 20px;
  }

  .column-description {
    font-size: 7.128px;
    font-weight: 400;
    width: 60%;
    margin: 0;
    margin-top: -12px;
  }

  .contact-header {
    margin-right: 10px;
  }

  .contact-form-wrapper {
    margin-left: -40px;
  }
  .contact-title {
    font-size: 13px;
  }
  .contact-subtitle {
    font-size: 9.2px;
  }
  .contact-form-wrapper h1,
  .contact-form-wrapper h2,
  .contact-form-wrapper h3 {
    font-size: 15px !important;
  }
  .contact-form-wrapper .hs-input {
    height: 39px;
  }
  .contact-form-wrapper textarea.hs-input {
    height: 130px;
  }
  .contact-form-wrapper .hs-button {
    height: 54px;
  }
}

@media screen and (max-width: 360px) {
  .hero-content h2 {
    font-size: 13px;
    line-height: 17px;
  }
  .cta-button-line {
    width: 116px;
  }
  .meet-text {
    font-size: 19px;
    white-space: nowrap;
    display: block;
  }
  .converts-bg {
    width: 124px;
    height: 21px;
    margin-left: 10px;
    margin-top: 20px;
  }
  .converts-text {
    font-size: 16px;
    font-weight: 800;
    margin-left: 2px;
    margin-top: 18px;
  }
  .cta-button-container {
    margin-left: -44px;
  }
  .cta-button-bg {
    width: 190px;
    height: 36px;
    margin-left: 74px;
    margin-top: -2px;
  }
  .cta-button-text {
    font-size: 7px;
    margin-top: -9px;
  }
  .stats {
    font-size: 7px;
    margin-bottom: 85px !important;
  }
  .cdp-digital-hero-section {
    padding: 40px 15px 42px;
  }
  .cdp-ribbon {
    width: 212.292px;
  }
  .cdp-ribbon-text {
    font-size: 8.18px;
  }
  .htds-presenting-text {
    font-size: 8.72px;
  }
  .htds-line {
    width: 16.8px;
  }
  .htds-main-title {
    font-size: 26px;
    -webkit-text-stroke: 2px #c3aff4;
    line-height: 0px !important;
  }
  .htds-sub-title {
    font-size: 10.88px;
    -webkit-text-stroke: 0px #c3aff4;
  }
  .mobile-funnel-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  button.funnel-tab {
    width: 44px;
    height: 19px;
    border-radius: 38px;
    font-size: 5px;
    padding: 5px;
  }
  .funnel-tab.active {
    font-size: 5px;
  }
  .funnel-slide {
    height: 260px;
  }
  .funnel-rupee {
    margin-left: -1px;
    font-size: 10px;
  }
  .funnel-title {
    font-size: 10px;
    font-weight: 700;
    margin-left: -3px;
  }
  p.funnel-desc {
    width: 157px;
    height: 19px;
    margin-bottom: 20px;
  }
  .funnel-desc {
    font-size: 9px;
    font-weight: 400;
    margin-top: -9px;
    margin-left: 85px;
  }
  .funnel-slide li::before {
    left: 81px;
    top: 1px;
    width: 10px;
    height: 11px;
  }
  .funnel-slide li {
    top: 23px;
    font-size: 8px;
    margin-bottom: 11px;
    padding-left: 14px;
    position: relative;
  }
  .cdp-btn {
    padding: 5px 41px;
    white-space: nowrap;
    font-size: 7px;
    margin-top: 21px;
    margin-left: 2px;
  }
  .audience-eyebrow {
    font-size: 8px;
    margin-left: 92px !important;
    margin-top: -40px;
    width: 189px;
  }
  .audience-header h2 {
    font-size: 10px;
    margin-left: 76px !important;
  }
  .audience-ribbon {
    height: 14.66px;
    margin-left: 23px;
  }
  .audience-ribbon-text {
    font-size: 6.56px;
  }
  .cohort-icon {
    width: 46.6px;
    height: 46.6px;
  }
  .cohort-item h4 {
    font-size: 5.48px;
    margin-top: -15px;
  }
  .cohort-item span {
    font-size: 5.48px;
  }
  .audience-card {
    max-width: 148.4px;
    height: 44.58px;
    flex: 0 0 308px;
  }
  .audience-card .target-title {
    font-size: 6.9488px;
  }
  .audience-card .check-icon img {
    width: 53%;
    height: 53%;
    margin-bottom: -4px;
  }
  .audience-card .target-list li {
    font-size: 6.2306px;
    margin-bottom: -9px;
    gap: 0px !important;
  }
  .playbooks-digital-ribbon {
    height: 100.716px;
    width: 125.486px;
    top: -43.6px;
  }
  .playbooks-ribbon-text {
    font-size: 6.776px;
  }
  .playbooks-digital-ribbon + h2 {
    font-size: 16.144px;
  }
  .subtitle {
    font-size: 6.776px;
  }
  .card {
    min-width: 146.116px;
    height: 185.272px;
  }
  .card h3 {
    font-size: 8.072px;
  }
  .card p {
    font-size: 6.776px;
  }

  .funnel-dot.active {
    background: #ffffff;
    width: 4px;
    border-radius: 6px;
  }
  .carousel-arrow.prev {
    left: 33.68px;
    width: 19.7376px;
    height: 19.7376px;
  }
  .carousel-arrow.next {
    right: 25.84px;
    width: 19.7376px;
    height: 19.7376px;
  }
  .case-studies-header h2 {
    font-size: 11.96px;
  }
  .case-studies-header p {
    font-size: 6.776px;
  }
  .legacy-container {
    padding: 0 22px;
  }
  .column-icon img {
    width: 63.7572px;
    height: 63.7572px;
    margin-top: 19px;
  }
  .column-title {
    font-size: 7.776px;
    font-weight: 700;
    margin-top: -20px;
  }
  .contact-form-wrapper {
    margin-left: -55px;
  }
}
