.visual-page {
  --header-height: 78px;
}

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid var(--neutral-200);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark strong {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.wordmark__symbol {
  position: relative;
  width: 28px;
  height: 25px;
}

.wordmark__symbol i {
  position: absolute;
  width: 18px;
  height: 16px;
  border: 2px solid var(--brand-teal);
  border-radius: 7px;
}

.wordmark__symbol i:first-child {
  inset: 1px auto auto 0;
}

.wordmark__symbol i:last-child {
  inset: 7px 0 auto auto;
}

.main-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
  color: var(--neutral-700);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a span {
  color: var(--neutral-300);
  font-size: 0.7rem;
}

.main-nav a.is-active {
  color: var(--bizting-700);
}

.main-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--bizting-600);
  content: "";
}

.site-header .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--bizting-700);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.button--small {
  min-height: 46px;
  padding-inline: 22px;
}

.service-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 47%, rgba(111, 147, 255, 0.19), transparent 34%),
    linear-gradient(90deg, #fff 0 46%, var(--bizting-050) 70%, #edf2ff 100%);
}

.service-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(82, 124, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 124, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.service-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: center;
  padding: 64px 0 58px;
}

.detail-context {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--neutral-500);
  font-size: 0.78rem;
  font-weight: 750;
}

.detail-context i {
  width: 18px;
  height: 1px;
  background: var(--neutral-300);
}

.service-identity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--bizting-700);
}

.service-identity > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  place-content: center;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--bizting-600), var(--bizting-700));
}

.service-identity i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.service-identity strong {
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-identity__logo--bizting {
  display: block;
  width: min(154px, 42vw);
  height: auto;
}

.service-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 6.2vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.service-family {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--bizting-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.service-family::before {
  width: 28px;
  height: 3px;
  background: var(--bizting-600);
  content: "";
}

.service-hero__lead {
  margin: 30px 0 0;
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  font-weight: 850;
  line-height: 1.42;
  letter-spacing: -0.05em;
}

.service-hero__support {
  max-width: 530px;
  margin: 14px 0 0;
  color: var(--neutral-600);
  font-size: 1rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding-top: 12px;
  border-top: 1px solid var(--bizting-200);
}

.benefit-list span {
  display: block;
  margin-bottom: 9px;
  color: var(--bizting-600);
  font-size: 0.72rem;
  font-weight: 900;
}

.benefit-list strong {
  font-size: 0.86rem;
}

.service-hero__visual {
  position: relative;
  margin: 0;
}

.service-hero__visual img {
  width: 100%;
  filter: drop-shadow(0 28px 54px rgba(37, 61, 135, 0.13));
}

.service-hero__visual figcaption {
  margin: 10px 34px 0 0;
  color: var(--neutral-500);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
}

.marketing-flow {
  padding: 104px 0 90px;
  background: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bizting-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 8px auto;
  color: var(--neutral-600);
  font-size: 1.08rem;
}

.journey-stage {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: 1.08fr 1.28fr 0.98fr 1.25fr 1.08fr;
  gap: 14px;
  align-items: center;
  padding: 58px 28px 52px;
  overflow: hidden;
  border: 1px solid #dce5ff;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 30%, rgba(111, 147, 255, 0.16), transparent 24%),
    radial-gradient(circle at 76% 72%, rgba(63, 169, 245, 0.12), transparent 24%),
    linear-gradient(145deg, #f7f9ff, #eef3ff 60%, #f8faff);
  box-shadow: var(--shadow-soft);
}

.journey-track {
  position: absolute;
  top: 50%;
  right: 4%;
  left: 4%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bizting-600), var(--sky-500), var(--violet-500));
  transform: translateY(-50%);
}

.journey-track::after {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 20px;
  height: 20px;
  border-top: 6px solid var(--violet-500);
  border-right: 6px solid var(--violet-500);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.journey-track i {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--bizting-600);
  box-shadow: 0 0 0 2px rgba(82, 124, 255, 0.22);
  transform: translateY(-50%);
}

.journey-track i:first-child { left: 27%; }
.journey-track i:last-child { left: 66%; background: var(--sky-500); }

.journey-scene {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(82, 124, 255, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(37, 61, 135, 0.1);
}

.journey-scene:nth-of-type(even) {
  transform: translateY(56px);
}

.journey-scene:nth-of-type(odd) {
  transform: translateY(-58px);
}

.journey-scene header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.journey-scene header span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--bizting-600);
  font-size: 0.72rem;
  font-weight: 900;
}

.journey-scene header p {
  margin: 0;
  color: var(--bizting-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.journey-scene h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.journey-scene > p {
  min-height: 66px;
  margin: 10px 0 18px;
  color: var(--neutral-600);
  font-size: 0.82rem;
  line-height: 1.55;
}

.journey-scene--target {
  padding-top: 28px;
  border-radius: 34px 34px 18px 34px;
}

.audience-fragment {
  display: flex;
  gap: 6px;
}

.audience-fragment span {
  flex: 1;
  padding: 7px 4px;
  border-radius: 10px;
  color: var(--bizting-700);
  background: var(--bizting-100);
  font-size: 0.7rem;
  font-weight: 850;
  text-align: center;
}

.message-fragment {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 9px;
  padding: 10px;
  border-radius: 13px;
  color: #fff;
  background: var(--bizting-900);
}

.message-fragment > i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--bizting-600);
}

.message-fragment div {
  display: grid;
  gap: 2px;
}

.message-fragment strong { font-size: 0.68rem; }
.message-fragment span { color: #b9c8ef; font-size: 0.54rem; }

.journey-scene--acquire {
  padding-bottom: 28px;
  border-radius: 18px 34px 34px 34px;
}

.landing-fragment {
  padding: 12px;
  border: 1px solid var(--bizting-200);
  border-radius: 16px;
  background: var(--bizting-050);
}

.landing-fragment__bar {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.landing-fragment__bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neutral-300);
}

.landing-fragment strong,
.landing-fragment span {
  display: block;
}

.landing-fragment strong { font-size: 0.84rem; }
.landing-fragment span { margin-top: 2px; color: var(--neutral-500); font-size: 0.61rem; }

.landing-fragment button,
.retention-fragment button {
  width: 100%;
  margin-top: 11px;
  padding: 8px 4px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--bizting-600);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 850;
  pointer-events: none;
}

.journey-scene--capture {
  border-radius: 34px 18px 34px 18px;
}

.data-fragment {
  display: grid;
  gap: 7px;
}

.data-fragment span {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 7px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background: var(--bizting-050);
}

.data-fragment i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--bizting-700);
  background: var(--bizting-100);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
}

.data-fragment b { font-size: 0.68rem; }
.data-fragment em { color: var(--green-500); font-size: 0.55rem; font-style: normal; font-weight: 800; }

.journey-scene--measure {
  border-color: rgba(63, 169, 245, 0.34);
  background: linear-gradient(155deg, #fff, #f3f8ff);
}

.analytics-fragment {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.analytics-fragment > div {
  padding: 7px 3px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.analytics-fragment > div span {
  display: block;
  color: var(--neutral-500);
  font-size: 0.56rem;
  font-weight: 750;
}

.analytics-fragment > div i {
  display: block;
  width: 72%;
  height: 5px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: var(--bizting-200);
}

.analytics-fragment > div:nth-child(2) i { background: var(--sky-500); }
.analytics-fragment > div:nth-child(3) i { background: var(--violet-500); }
.analytics-fragment > div:nth-child(4) i { background: var(--green-500); }

.analytics-fragment svg {
  grid-column: 1 / -1;
  width: 100%;
  height: 76px;
  margin-top: 6px;
}

.journey-scene--retention {
  border-color: rgba(121, 103, 217, 0.32);
  border-radius: 18px 34px 34px 34px;
}

.retention-fragment {
  padding: 12px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(150deg, var(--bizting-900), #26376f);
}

.retention-fragment__top {
  display: flex;
  justify-content: space-between;
  color: #9cb4ff;
  font-size: 0.57rem;
  font-weight: 850;
}

.retention-fragment strong {
  display: block;
  margin-top: 12px;
  font-size: 0.77rem;
}

.retention-fragment p {
  margin: 3px 0 0;
  color: #b9c8ef;
  font-size: 0.56rem;
}

.retention-fragment button {
  background: var(--violet-500);
}

.journey-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 34px 0 76px;
}

.journey-summary p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin: 0;
  padding: 22px 24px;
  border-bottom: 1px solid var(--bizting-200);
  color: var(--neutral-600);
}

.journey-summary span {
  color: var(--bizting-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.access-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  padding: 46px 54px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(110deg, var(--bizting-950), var(--bizting-800));
}

.access-panel__label {
  margin: 0 0 10px;
  color: #9cb4ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.access-panel > div > p:nth-child(2) {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.access-panel__back-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 20px;
  color: #b9c8ef;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.access-panel .button {
  min-width: 190px;
  color: var(--bizting-900);
  background: #fff;
}

.site-footer {
  padding: 58px 0 64px;
  color: #aebbd2;
  background: #0b1430;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr auto;
  gap: 52px;
  align-items: start;
}

.site-footer p {
  margin: 7px 0 0;
  font-size: 0.74rem;
  line-height: 1.7;
}

.site-footer__brand strong {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.06em;
}

.site-footer__label {
  color: #7898f7;
  font-size: 0.66rem !important;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.site-footer a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .service-hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

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

  .journey-track {
    display: none;
  }

  .journey-scene:nth-of-type(n) {
    min-height: 360px;
    transform: none;
  }

  .journey-scene--measure,
  .journey-scene--retention {
    grid-column: span 1;
  }
}

@media (max-width: 880px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .service-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .service-hero::before {
    width: 100%;
  }

  .service-hero__visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .journey-stage {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-summary,
  .access-panel,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .access-panel .button {
    width: max-content;
  }
}

@media (max-width: 600px) {
  .visual-page {
    --header-height: 66px;
  }

  .site-header .button--small {
    min-height: 42px;
    padding-inline: 18px;
  }

  .service-hero,
  .service-hero__grid {
    min-height: auto;
  }

  .service-hero__grid {
    gap: 46px;
    padding: 42px 0 54px;
  }

  .service-hero h1 {
    font-size: 4.1rem;
  }

  .service-family {
    font-size: 0.72rem;
    letter-spacing: 0.045em;
  }

  .service-hero__lead {
    margin-top: 24px;
    font-size: 1.55rem;
  }

  .service-hero__support {
    font-size: 0.92rem;
  }

  .benefit-list {
    gap: 8px;
  }

  .benefit-list strong {
    font-size: 0.72rem;
  }

  .service-hero__visual figcaption {
    margin-right: 0;
  }

  .marketing-flow {
    padding: 74px 0 64px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .section-heading > p {
    font-size: 0.94rem;
  }

  .journey-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 20px;
    border-radius: 30px;
  }

  .journey-stage::before {
    position: absolute;
    top: 58px;
    bottom: 58px;
    left: 37px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(var(--bizting-600), var(--sky-500), var(--violet-500));
    content: "";
  }

  .journey-scene:nth-of-type(n) {
    min-height: 0;
    margin-left: 18px;
    padding: 22px;
    transform: none;
  }

  .journey-scene > p {
    min-height: 0;
  }

  .journey-summary {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 58px;
  }

  .journey-summary p {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-inline: 4px;
  }

  .access-panel {
    gap: 32px;
    padding: 34px 26px;
    border-radius: 28px;
  }

  .access-panel .button {
    width: 100%;
  }

  .site-footer__grid {
    gap: 28px;
  }
}
