* {
  box-sizing: border-box;
}

.business-page {
  margin: 0;
  color: #111827;
  background: #fff;
  font-family:
    "Pretendard",
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

.business-page a {
  text-decoration: none;
}
.biz-container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.biz-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

ol::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.biz-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.biz-header-inner {
  width: min(100% - 150px);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.biz-logo {
  display: inline-flex;
  align-items: center;
  width: 136px;
}
.biz-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.biz-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}
.biz-nav a {
  text-decoration: none;
  color: #141415;
}
.biz-nav a:hover {
  color: #00a0b6;
}

.biz-header-cta,
.biz-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: #00a9ba;
  box-shadow: 0 8px 18px rgba(0, 169, 186, 0.28);
  font-size: 14px;
  font-weight: 700;
}

.biz-hero {
  position: relative;
  min-height: 620px;
  margin-top: -72px;
  padding: 172px 0 96px;
  overflow: hidden;
  background: #dff8fb;
}

.biz-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(223, 248, 251, 0.2),
      rgba(223, 248, 251, 0.92)
    ),
    url("../img/business/hero-bg.png") center / cover no-repeat;
}

.biz-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 60%, rgba(255, 255, 255, 1), transparent 34%),
    radial-gradient(circle at 80% 52%, rgba(255, 255, 255, 1), transparent 40%);
}

.biz-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.biz-eyebrow {
  margin: 0 0 18px;
  color: #00a9ba;
  font-size: 16px;
  font-weight: 700;
}
.biz-hero h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.34;
  font-weight: 700;
}
.biz-primary-btn {
  min-width: 166px;
  height: 52px;
  margin-top: 32px;
  font-size: 16px;
}

.biz-hero-points {
  margin: 44px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #57585a;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.plan-desc-con {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-description {
  width: 90%;
  margin-top: 60px;
  background-color: #f4fdfd;
  border: 1px solid #00a0b6;
  padding: 20px 60px;
  max-width: 750px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  font-weight: 500;
  font-size: 15px;
}

.plan-description img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
}

.plan-description span {
  min-width: 0;
}

.biz-hero-points li + li {
  position: relative;
}
.biz-hero-points li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 1px;
  height: 12px;
  background: #9ca3af;
  transform: translateY(-50%);
}

.biz-section {
  padding: 96px 0;
}
.biz-section-title {
  text-align: center;
}
.biz-section-title h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}
.biz-section-title h2 strong {
  color: #00a9ba;
}
.biz-section-title p:not(.biz-eyebrow) {
  margin: 12px 0 0;
  color: #9e9e9e;
  font-size: 15px;
}

.worry-card-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.worry-image-card {
  position: relative;
  min-height: 210px;
  margin: 0;
  padding: 30px 26px;
  border: 1px solid #e6edf2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.worry-image-card:nth-child(1) {
  transform: rotate(-5deg);
}
.worry-image-card:nth-child(2) {
  transform: rotate(4deg);
}
.worry-image-card:nth-child(3) {
  transform: rotate(-3deg);
}
.worry-image-card:nth-child(4) {
  transform: rotate(5deg);
}
.worry-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.worry-image-card figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}
.worry-image-card b {
  color: #00a9ba;
  font-size: 13px;
}
.worry-image-card:nth-child(n + 3) b {
  color: #e23bd7;
}

.biz-answer {
  padding-top: 72px;
}
.answer-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.answer-card {
  min-height: 142px;
  padding: 24px;
  border: 2px solid #75dbe6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 169, 186, 0.12);
}
.answer-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #e7fbfd;
}
.answer-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.answer-card h3,
.benefit-grid h3,
.plan-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}
.answer-card p,
.benefit-grid p,
.solution-copy p,
.plan-card li {
  color: #9e9e9e;
  word-break: auto-phrase;
  line-height: 1.7;
  font-weight: 500;
}
.answer-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.solution-panel {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 48px;
  min-height: 450px;
  padding: 58px 54px;
  border-radius: 28px;
  overflow: hidden;
}
.solution-panel-mint {
  background: #dcfbfb;
}
.solution-panel-pink {
  background:
    radial-gradient(circle, rgba(226, 59, 215, 0.08) 1px, transparent 1px),
    #ffebfb;
  background-size:
    12px 12px,
    auto;
}
.solution-kicker {
  margin: 0 0 18px;
  color: #00a9ba;
  font-size: 14px;
  font-weight: 900;
}
.solution-panel-pink .solution-kicker {
  color: #e23bd7;
}
.solution-copy h2 {
  margin: 20px 0 20px;
  font-size: 30px;
  line-height: 1.38;
  font-weight: 700;
}
.solution-copy p {
  margin: 0;
  font-size: 15px;
}
.solution-tags {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.solution-tags span {
  min-height: 54px;
  padding: 12px;
  border-radius: 6px;
  background: #fff;
  color: #00a0b6;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.solution-tags.pink span {
  color: #e23bd7;
}

.solution-slider,
.goods-image {
  position: relative;
  min-height: 330px;
  margin: 0;
  border-radius: 14px;

  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}
.slider-track,
.slider-slide {
  position: absolute;
  inset: 0;
}
.slider-slide {
  display: none;
  margin: 0;
  padding: 34px;
  text-align: center;
}
.slider-slide.active {
  display: grid;
  place-items: center;
}
.slider-slide img,
.goods-image img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.slider-slide::before,
.goods-image::before {
  content: "BUSINESS IMAGE";
  display: grid;
  place-items: center;
  width: min(340px, 80%);
  height: 190px;
  margin: auto;
  border: 1px dashed #8bdce4;
  border-radius: 12px;
  color: #00a9ba;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
}
.slider-slide figcaption,
.goods-image figcaption {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}
.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
  color: #00a9ba;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.slider-btn img {
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  pointer-events: none;
}
.slider-prev {
  left: 18px;
}
.slider-next {
  right: 18px;
}
.goods-image {
  display: grid;
  place-items: center;

  box-shadow: none;
}

.benefit-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.benefit-grid article {
  min-height: 116px;
  padding: 22px 26px;
  border: 1px solid #bdebf0;
  border-radius: 8px;
  background: #fff;
}
.benefit-grid.pink article {
  border-color: #f3bee9;
}
.benefit-grid b {
  display: inline-flex;
  margin-bottom: 8px;
  color: #00a9ba;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 16px;
  background-color: #e0f5f7;
}
.benefit-grid.pink b {
  color: #ea4de0;
  background-color: #ea4de033;
}
.benefit-grid p {
  margin: 6px 0 0;
  font-size: 14px;
}

.biz-plan {
  background: #f5f5f5;
}
.plan-grid {
  width: min(720px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.plan-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}
.plan-type {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
}
.plan-type.mint {
  color: #00a9ba;
}
.plan-type.pink {
  color: #e23bd7;
}
.plan-card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}
.plan-card ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.plan-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #141415;
  font-weight: 500;
}
.mobile-br {
  display: none;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 5px;
  border: solid #00a9ba;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}
.plan-card a,
.plan-card .plan-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  background: #00a9ba;
  font-size: 15px;
  font-weight: 900;
}
.plan-card a.pink,
.plan-card .plan-start-btn.pink {
  background: #de31d7;
}
.plan-card .plan-start-btn {
  width: 100%;
  margin-top: auto;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.business-page #footer {
  background: #d8eeee;
}
/* Keep the business landing layout isolated after loading the legacy footer stylesheet. */
.business-page main {
  display: block;
  width: 100%;
  overflow: hidden;
}

.business-page img {
  vertical-align: middle;
}

.business-page .biz-header,
.business-page .biz-header *,
.business-page main,
.business-page main * {
  letter-spacing: 0;
}

.business-page #footer {
  margin-top: 0;
}

/* Remove legacy title divider styles from this standalone landing page. */
.business-page main h1,
.business-page main h2,
.business-page main h3,
.business-page main h4,
.business-page main h5,
.business-page main h6 {
  position: static;
  text-decoration: none;
  border: 0;
  background: transparent;
}

.business-page main h1::before,
.business-page main h1::after,
.business-page main h2::before,
.business-page main h2::after,
.business-page main h3::before,
.business-page main h3::after,
.business-page main h4::before,
.business-page main h4::after,
.business-page main h5::before,
.business-page main h5::after,
.business-page main h6::before,
.business-page main h6::after {
  content: none;
  display: none;
  border: 0;
}

/* Section 2 cards use real maker/face assets instead of full-card images. */
.business-page .worry-card-row .worry-image-card {
  display: block;
  min-height: 220px;
  padding: 28px 24px;
  overflow: hidden;
}

.business-page .worry-image-card > img:not(.worry-face) {
  position: static;
  width: auto;
  height: auto;
  object-fit: contain;
}

.business-page .worry-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.business-page .worry-label img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.business-page .worry-label b {
  color: #00a9ba;
  font-size: 15px;
  font-weight: 900;
}

.business-page .worry-produce .worry-label b {
  color: #e23bd7;
}

.business-page .worry-image-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #141415;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.worry-image-card .text-bold {
  font-weight: 800;
}

.business-page .worry-face {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* Real assets are present now, so do not show temporary image placeholders. */
.business-page .slider-slide::before,
.business-page .goods-image::before {
  content: none;
  display: none;
}

.business-page .worry-label img {
  position: static;
  inset: auto;
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.business-page .worry-face {
  position: absolute;
  inset: auto 16px 12px auto;
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* Make section 4 slider images fill the visual frame. */
.business-page .solution-slider {
  overflow: hidden;
}

.business-page .slider-slide {
  padding: 0;
}

.business-page .slider-slide.active {
  display: block;
}

.business-page .slider-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.business-page .slider-slide figcaption {
  bottom: 14px;
  left: 50%;
  right: auto;
  padding: 6px 12px;
  border-radius: 999px;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: translateX(-50%);
  white-space: nowrap;
}

.business-page .answer-title-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.business-page .answer-title-line i {
  display: block;
  width: 58px;
  height: 1px;
  background: #9e9e9e;
}

.business-page .title-underline {
  display: inline;
  padding-bottom: 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 3px;
}

.business-page .title-underline-mint {
  background-image: linear-gradient(#00a0b6, #00a0b6);
}

.business-page .title-underline-orange {
  background-image: linear-gradient(#ea4de0, #ea4de0);
}

.business-page .biz-answer .biz-section-title h2 strong {
  color: #00a0b6;
  background: linear-gradient(90deg, #046c79 0%, #00a0b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Solution 1 visual area refinements from the reference capture. */
.business-page .solution-panel-mint {
  background:
    radial-gradient(circle, rgba(4, 108, 121, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, #eff8f8 0%, #cbf6f6 100%);
  background-size:
    12px 12px,
    auto;
}

.business-page .solution-panel {
  grid-template-columns: 0.92fr 0.9fr;
  gap: 58px;
  padding: 66px 34px 68px;
  border-radius: 24px;
  overflow: visible;
}

.business-page .solution-copy {
  padding-left: 0;
}

.business-page .solution-copy h2 {
  font-size: 30px;
  line-height: 1.55;
}

.business-page .solution-copy > p:not(.solution-kicker) {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.75;
}

.business-page .solution-tags {
  gap: 12px;
}

.business-page .solution-tags span {
  min-height: 66px;
  padding: 20px 14px;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  text-align: left;
}
.solution-tags span div {
  color: #57585a;
  font-weight: 500;
  font-size: 13px;
  margin-top: 8px;
}

.business-page .solution-visual {
  min-width: 0;
  width: 100%;
  display: grid;
  justify-items: center;
}

.business-page .slider-steps {
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #b8c0c5;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
  white-space: nowrap;
}

.business-page .slider-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.business-page .slider-step span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #d8dee2;
  font-size: 11px;
  font-weight: 900;
  transition: background-color 0.2s ease;
}

.business-page .slider-step.active {
  color: #00a0b6;
}

.business-page .slider-step.active span {
  background: #00a0b6;
}

.business-page .solution-slider {
  width: 100%;
  max-width: 500px;
  min-height: 380px;
  margin: 0 auto;
  border-radius: 18px;
  background: #f5fbfb;
  box-shadow: 0 18px 38px rgba(4, 108, 121, 0.12);
  overflow: visible;
}

.business-page .slider-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 18px;
}

.business-page .slider-slide figcaption {
  display: none;
}

.business-page .slider-caption {
  margin: 20px 0 0;
  color: #57585a;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.business-page .slider-btn {
  width: 48px;
  height: 48px;
  color: #7b8790;
  font-size: 34px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.business-page .slider-prev {
  left: -24px;
}

.business-page .slider-next {
  right: -24px;
}

.business-page .slider-slide img {
  border-radius: 18px;
}

/* Keep solution 2 from inheriting the solution 1 capture-specific layout. */
.business-page .solution-panel-pink {
  grid-template-columns: 1fr 0.6fr;
  gap: 48px;
  min-height: 450px;
  padding: 110px 54px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(226, 59, 215, 0.08) 1px, transparent 1px),
    #ffebfb;
  background-size:
    12px 12px,
    auto;
}

.business-page .slider-step {
  cursor: pointer;
}

.business-page .plan-type-li,
.business-page .plan-type-li li {
  list-style: none;
}

.business-page .plan-type-li li {
  display: block;
  padding-left: 0;
}

.business-page .plan-type-li {
  list-style: disc;
  margin: 14px 0 24px;
  padding-left: 18px;
}

.business-page .plan-type-li li {
  display: list-item;
  list-style: disc;
  padding-left: 0;
}

.business-page .plan-type-li li::marker {
  display: inline;
  color: #9e9e9e;
  font-size: 1em;
}

.business-page .plan-type-li li::before,
.business-page .plan-type-li li::after {
  content: none;
  display: none;
}

/* Plan cards tuned to the reference capture. */
.business-page .plan-grid {
  width: min(860px, 100%);
  gap: 24px;
}

.business-page .plan-card {
  padding: 32px 30px 28px;
  border-radius: 16px;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14);
}

.business-page .plan-card h3 {
  font-size: 22px;
  line-height: 1.45;
}

.business-page .plan-card strong {
  margin-top: 4px;
  font-size: 25px;
  line-height: 1.2;
}

.business-page .plan-type-li {
  margin: 16px 0 18px;
  padding-left: 14px;
}

.business-page .plan-type-li li {
  color: #555f66;
  font-size: 14px;
  line-height: 1.75;
}

.business-page .plan-type-li li::marker {
  color: #9e9e9e;
  font-size: 0.75em;
}

.business-page .plan-divider {
  width: 100%;
  height: 1px;
  margin: 0px 0 22px;
  background: #e9e9e9;
}

.business-page .plan-card .plan-feature-list {
  margin: 0 0 24px;
}

.business-page .plan-card .plan-feature-list li {
  gap: 10px;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.business-page .plan-card .plan-feature-list li + li {
  margin-top: 10px;
}

.business-page .plan-card .plan-feature-list li > span:last-child {
  display: grid;
  gap: 2px;
}

.business-page .plan-card .plan-feature-list small {
  display: block;
  color: #9e9e9e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.business-page .plan-card .plan-check {
  margin-top: 8px;
  border-color: #00a9ba;
}

.business-page .plan-card:nth-child(2) .plan-check {
  border-color: #de31d7;
}

.business-page .plan-card a,
.business-page .plan-card .plan-start-btn {
  height: 56px;
  border-radius: 8px;
  font-size: 18px;
}

.business-page .plan-card .plan-type-li {
  display: block;
  list-style-type: disc;
  list-style-position: outside;
  margin: 16px 0 18px;
  padding-left: 18px;
}

.business-page .plan-card .plan-type-li > li {
  display: list-item;
  list-style-type: disc;
  list-style-position: outside;
  color: #555f66;
  padding-left: 0;
}

.business-page .plan-card .plan-type-li > li::marker {
  color: #9e9e9e;
  font-size: 0.8em;
}

/* Let the hero background sit behind the transparent header at the top. */
.business-page .biz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.business-page .biz-hero {
  margin-top: 0;
}

/* Responsive rules: keep desktop defaults above, consolidate breakpoints here. */
@media (max-width: 1279px) {
  .biz-hero-points {
    width: min(320px, 100%);
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
  }

  .biz-hero-points li {
    position: relative;
    text-align: center;
  }

  .biz-hero-points li + li::before {
    display: none;
  }

  .biz-hero-points li:nth-child(even)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -15px;
    width: 1px;
    height: 12px;
    background: #9ca3af;
    transform: translateY(-50%);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .business-page .worry-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-page .answer-grid,
  .business-page .benefit-grid,
  .business-page .benefit-grid.pink,
  .business-page .solution-panel,
  .business-page .solution-panel-mint,
  .business-page .solution-panel-pink {
    grid-template-columns: 1fr;
  }

  .business-page .solution-panel,
  .business-page .solution-panel-pink {
    gap: 34px;
  }

  .business-page .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .biz-container,
  .biz-header-inner {
    width: min(100% - 32px, 720px);
  }

  .biz-header-inner {
    height: 64px;
    gap: 16px;
  }

  .biz-nav {
    display: none;
  }

  .biz-logo {
    width: 118px;
  }

  .biz-header-cta {
    height: 38px;
    font-size: 13px;
  }

  .biz-hero,
  .business-page .biz-hero {
    min-height: 540px;
    margin-top: 0;
    padding: 138px 0 70px;
  }

  .biz-hero h1 {
    font-size: 22px;
  }

  .biz-eyebrow {
    font-size: 15px;
  }

  .biz-hero-points {
    font-size: 14px;
  }

  .plan-description {
    margin-top: 30px;
    padding: 15px 10px;
    font-size: 13px;
  }

  .biz-section {
    padding: 72px 0;
  }

  .biz-section-title h2 {
    font-size: 18px;
  }

  .business-page .answer-title-line {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .business-page .answer-title-line i {
    width: 36px;
  }

  .worry-card-row {
    gap: 58px;
  }

  .worry-image-card {
    min-height: 170px;
  }

  .business-page .worry-card-row .worry-image-card {
    min-height: 178px;
  }

  .business-page .worry-face {
    width: 52px;
    height: 52px;
  }

  .solution-panel,
  .business-page .solution-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 20px 50px;
    border-radius: 18px;
  }

  .business-page .solution-panel-pink {
    grid-template-columns: 1fr;
    padding: 38px 24px;
    border-radius: 18px;
  }

  .solution-copy h2 {
    font-size: 24px;
  }

  .solution-tags {
    grid-template-columns: 1fr;
  }

  .solution-slider,
  .goods-image,
  .business-page .solution-slider {
    min-height: 280px;
  }

  .business-page .slider-steps {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    overflow-x: visible;
    white-space: normal;
    padding-bottom: 4px;
    font-size: 12px;
  }

  .business-page .slider-step {
    flex: 0 1 auto;
    white-space: nowrap;
  }

  .business-page .slider-prev {
    left: -15px;
  }

  .business-page .slider-next {
    right: -15px;
  }
}

@media (max-width: 767px) {
  .biz-hero-points {
    width: min(270px, 100%);
  }

  .business-page .worry-card-row,
  .business-page .answer-grid,
  .business-page .benefit-grid,
  .business-page .benefit-grid.pink,
  .business-page .solution-panel,
  .business-page .solution-panel-mint,
  .business-page .solution-panel-pink,
  .business-page .plan-grid {
    grid-template-columns: 1fr;
  }

  .business-page .solution-visual {
    justify-items: center;
  }

  .business-page .solution-slider {
    width: calc(100% - 32px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .business-page .slider-prev {
    left: -12px;
  }

  .business-page .slider-next {
    right: -12px;
  }

  .worry-card-row {
    gap: 48px;
  }
  .mobile-br {
    display: block;
  }
  .solution-copy h2 {
    font-size: 20px;
  }
  .business-page .solution-copy > p:not(.solution-kicker) {
    font-size: 13px;
  }
  .benefit-grid h3 {
    font-size: 18px;
  }
  .benefit-grid p {
    font-size: 14px;
  }
  .business-page .solution-copy h2 {
    font-size: 20px;
  }
  .business-page .plan-card h3 {
    font-size: 18px;
  }
  .business-page .plan-card .plan-feature-list li {
    font-size: 14px;
  }
  .business-page .plan-card .plan-feature-list small {
    font-size: 13px;
  }
  .business-page .plan-card .plan-type-li > li {
    font-size: 12px;
  }
  .answer-card h3 {
    font-size: 18px;
  }
}

/* Scroll fade-in */
.business-page .scroll-fade-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--fade-delay, 0ms);
}

.business-page .scroll-fade-item.scroll-fade-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .business-page .scroll-fade-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Keep worry card rotations while fading them in. */
.business-page .worry-image-card.scroll-fade-item {
  transition: opacity 0.65s ease;
}

.business-page .worry-image-card:nth-child(1).scroll-fade-item {
  transform: rotate(-5deg);
}

.business-page .worry-image-card:nth-child(2).scroll-fade-item {
  transform: rotate(4deg);
}

.business-page .worry-image-card:nth-child(3).scroll-fade-item {
  transform: rotate(-3deg);
}

.business-page .worry-image-card:nth-child(4).scroll-fade-item {
  transform: rotate(5deg);
}

/* Modu join complete popup */
.business-page .joinpopup {
  position: fixed;
  inset: 0;
  z-index: 1100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.27);
  padding: 24px;
}

.business-page .joinpopupcont {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-page .joincont1 {
  width: min(400px, calc(100vw - 40px));
  min-width: 0;
  min-height: 364px;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: url('../img/joininit.png') center / contain no-repeat;
}

.business-page .jointitle1 {
  width: 100%;
  min-height: 26px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141415;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.business-page .usernick {
  max-width: 130px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-page .joinsubtitle1 {
  color: #57585a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.business-page .joincouponimg1 {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-page .joincouponimg1 > img {
  width: 80%;
  max-width: 288px;
}

.business-page .joincomplate1 {
  height: 44px;
  margin-top: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141415;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
