/* =====================================================
   INTRO
===================================================== */

.bd-intro{
  position:relative;
  width:100%;
  height:100vh;
  min-height:680px;
  overflow:hidden;
  background:#fff;
}

.bd-intro__sticky{
  position:relative;
  width:100%;
  height:100%;
  min-height:inherit;
  overflow:hidden;
  background:#fff;
}

.bd-intro__bg{
  position:absolute;
  inset:0;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;

  will-change:transform, opacity;
  backface-visibility:hidden;
  transform-style:preserve-3d;

  transition:
    transform 1.05s cubic-bezier(.22,.78,.22,1),
    opacity .9s cubic-bezier(.22,.78,.22,1);
}


/* 컬러 이미지는 처음부터 흑백 이미지 아래에 같은 위치로 존재 */
.bd-intro__bg--color{
  z-index:1;
  opacity:1;
  background-image:url('/images/color_bg.jpg');
  transform:translate3d(0,0,0) scale(1.025);
}


/* 흑백 이미지가 컬러 이미지 위를 덮고 있음 */
.bd-intro__bg--gray{
  z-index:2;
  opacity:1;
  background-image:url('/images/gray_bg.jpg');
  transform:translate3d(0,0,0) scale(1.025);
}


/* 흰 화면 전환 레이어 */
.bd-intro__white{
  position:absolute;
  z-index:3;
  inset:0;
  opacity:0;
  background:#fff;
  pointer-events:none;

  will-change:opacity;

  transition:
    opacity .9s cubic-bezier(.22,.78,.22,1);
}


/* 로고 + SCROLL 전체 */
.bd-intro__content{
  position:absolute;
  z-index:4;
  inset:0;

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:1;
  pointer-events:none;

  transform:translate3d(0,0,0);

  will-change:transform, opacity;

  transition:
    transform 1.05s cubic-bezier(.22,.78,.22,1),
    opacity .8s cubic-bezier(.22,.78,.22,1);
}


.bd-intro__logo{
  width:min(39vw,760px);
  min-width:380px;
}


/* 하단 SCROLL 표시 */
.bd-intro__scroll{
  position:absolute;
  left:50%;
  bottom:24px;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;

  color:#fff;
  font-size:11px;
  font-weight:700;
  line-height:1;
  letter-spacing:.12em;

  transform:translateX(-50%);
}

.bd-intro__scroll i{
  position:relative;
  display:block;
  width:1px;
  height:38px;
  overflow:hidden;
  background:rgba(255,255,255,.45);
}

.bd-intro__scroll i::after{
  content:"";
  position:absolute;
  top:-18px;
  left:0;

  width:1px;
  height:18px;
  background:#fff;

  animation:bdScrollLine 1.6s ease-in-out infinite;
}

@keyframes bdScrollLine{
  0%{
    transform:translateY(0);
  }

  100%{
    transform:translateY(58px);
  }
}


/* =====================================================
   STAGE 1
   휠 한 번:
   흑백 이미지가 부드럽게 위로 완전히 사라짐
===================================================== */

.bd-intro[data-stage="1"] .bd-intro__bg--gray,
.bd-intro[data-stage="2"] .bd-intro__bg--gray,
.bd-intro[data-stage="3"] .bd-intro__bg--gray,
.bd-intro[data-stage="4"] .bd-intro__bg--gray,
.bd-intro[data-stage="5"] .bd-intro__bg--gray{
  opacity:0;
  transform:
    translate3d(0,-105%,0)
    scale(1.025);
}


/* =====================================================
   STAGE 2
   다음 휠 한 번:
   컬러 배경은 고정
   로고와 SCROLL이 확실하게 위로 이동
===================================================== */

.bd-intro[data-stage="2"] .bd-intro__content{
  transform:translate3d(0,-17vh,0);
}


/* =====================================================
   STAGE 3
   다음 휠 한 번:
   로고는 더 위로
   컬러 이미지는 위로 이동하며 흐려짐
   흰 레이어가 살짝 나타남
===================================================== */

.bd-intro[data-stage="3"] .bd-intro__content{
  opacity:.12;
  transform:translate3d(0,-62vh,0);
}

.bd-intro[data-stage="3"] .bd-intro__bg--color{
  opacity:.42;
  transform:
    translate3d(0,-24vh,0)
    scale(1.025);
}

.bd-intro[data-stage="3"] .bd-intro__white{
  opacity:.42;
}


/* =====================================================
   STAGE 4
   다음 휠 한 번:
   컬러 이미지가 완전히 위로 빠지고
   화면 전체가 흰색
===================================================== */

.bd-intro[data-stage="4"] .bd-intro__content,
.bd-intro[data-stage="5"] .bd-intro__content{
  opacity:0;
  transform:translate3d(0,-100vh,0);
}

.bd-intro[data-stage="4"] .bd-intro__bg--color,
.bd-intro[data-stage="5"] .bd-intro__bg--color{
  opacity:0;
  transform:
    translate3d(0,-105vh,0)
    scale(1.025);
}

.bd-intro[data-stage="4"] .bd-intro__white,
.bd-intro[data-stage="5"] .bd-intro__white{
  opacity:1;
}

/* =====================================================
   MAIN START
===================================================== */
.bd-main-start{
  position:relative;
  z-index:10;
  min-height:100vh;
  padding:210px 0 180px;
  background:#fff;
}

.bd-eyebrow{
  margin-bottom:34px;
  color:#787d82;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
}

.bd-main-start h1{
  max-width:1050px;
  font-size:clamp(58px,6.4vw,108px);
  font-weight:600;
  line-height:1.04;
  letter-spacing:-.06em;
}

.bd-main-start__text{
  max-width:620px;
  margin-top:62px;
  margin-left:auto;
  color:#5d6267;
  font-size:20px;
  line-height:1.8;
  letter-spacing:-.025em;
}


/* =====================================================
   SMART WELFARE SERVICE
===================================================== */

.bd-service {
  position: relative;
  padding: 150px 32px 170px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 28%,
      rgba(64, 189, 125, 0.06),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 74%,
      rgba(127, 81, 224, 0.055),
      transparent 29%
    ),
    #f8f8f6;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.bd-service__heading {
  margin-bottom: 72px;
  text-align: center;
}

.bd-service__eyebrow {
  margin: 0 0 15px;
  color: #7c8288;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.bd-service__eyebrow span {
  color: #1673c9;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bd-service__title {
  margin: 0;
  color: #17191b;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.bd-service__description {
  margin: 25px 0 0;
  color: #74787d;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.025em;
}

.bd-service__title-line {
  display: block;
  width: 48px;
  height: 2px;
  margin: 31px auto 0;
  background: #d6d8da;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.bd-service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  width: min(1480px, 100%);
  min-height: 570px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(24, 28, 31, 0.06);
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 30px 80px rgba(24, 31, 36, 0.07),
    0 4px 18px rgba(24, 31, 36, 0.03);
}

.bd-service-card:last-child {
  margin-bottom: 0;
}

.bd-service-card--event {
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
}


/* =====================================================
   CONTENT
===================================================== */

.bd-service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 68px 66px;
  background: #ffffff;
}

.bd-service-card__content-inner {
  width: 100%;
  max-width: 580px;
}

.bd-service-card__category {
  margin: 0 0 13px;
  color: #38aa6c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.bd-service-card--event .bd-service-card__category {
  color: #8055d9;
}

.bd-service-card__title {
  margin: 0;
  color: #16191c;
  font-size: clamp(36px, 3vw, 54px);
  font-weight: 750;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.bd-service-card--snack .bd-service-card__title span {
  color: #39ad6d;
}

.bd-service-card--event .bd-service-card__title span {
  color: #8055d9;
}

.bd-service-card__text {
  margin: 23px 0 0;
  color: #656a6f;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.75;
  letter-spacing: -0.025em;
}


/* =====================================================
   SERVICE FEATURES
===================================================== */

.bd-service-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 12px;
  margin-top: 42px;
}

.bd-service-feature {
  min-width: 0;
  text-align: center;
}

.bd-service-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border: 1px solid rgba(57, 173, 109, 0.17);
  border-radius: 50%;
  color: #39ad6d;
  font-size: 21px;
  background: #f3fbf6;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.bd-service-card--event .bd-service-feature__icon {
  border-color: rgba(128, 85, 217, 0.16);
  color: #8055d9;
  background: #f7f3ff;
}

.bd-service-feature:hover .bd-service-feature__icon {
  transform: translateY(-5px);
  color: #ffffff;
  background: #39ad6d;
  box-shadow: 0 12px 28px rgba(57, 173, 109, 0.22);
}

.bd-service-card--event
.bd-service-feature:hover
.bd-service-feature__icon {
  background: #8055d9;
  box-shadow: 0 12px 28px rgba(128, 85, 217, 0.22);
}

.bd-service-feature strong {
  display: block;
  overflow: hidden;
  color: #292d31;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bd-service-feature p {
  margin: 5px 0 0;
  color: #9a9da1;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}


/* =====================================================
   BUTTON
===================================================== */

.bd-service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 235px;
  height: 54px;
  margin-top: 40px;
  padding: 0 21px 0 24px;
  border: 1px solid #48b77a;
  border-radius: 30px;
  color: #36a96a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: #ffffff;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bd-service-card--event .bd-service-card__button {
  border-color: #9a73df;
  color: #8055d9;
}

.bd-service-card__button i {
  margin-left: 22px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.bd-service-card__button:hover {
  border-color: #39ad6d;
  color: #ffffff;
  background: #39ad6d;
  box-shadow: 0 12px 28px rgba(57, 173, 109, 0.2);
  transform: translateY(-2px);
}

.bd-service-card--event .bd-service-card__button:hover {
  border-color: #8055d9;
  background: #8055d9;
  box-shadow: 0 12px 28px rgba(128, 85, 217, 0.2);
}

.bd-service-card__button:hover i {
  transform: translateX(4px);
}


/* =====================================================
   IMAGE VISUAL
===================================================== */

.bd-service-card__visual {
  position: relative;
  min-width: 0;
  min-height: 570px;
  overflow: hidden;
  background: #eceeed;
}

.bd-service-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.bd-service-card:hover .bd-service-card__visual img {
  transform: scale(1.035);
}

.bd-service-card__visual-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 48%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.bd-service-card__visual-label {
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(23, 27, 28, 0.43);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bd-service-card__visual-label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.17);
}

.bd-service-card__visual-label div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bd-service-card__visual-label small {
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.bd-service-card__visual-label strong {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.025em;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.bd-reveal {
  opacity: 0;
  transform: translateY(58px);
  transition:
    opacity 0.9s ease,
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.bd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bd-mobile-br {
  display: none;
}

/* =====================================================
   SERVICE SECTION FINAL TUNING
   텍스트 왼쪽 / 이미지 오른쪽 통일
===================================================== */

.bd-service-card,
.bd-service-card--event {
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  min-height: 520px;
}


/* 이벤트 카드도 텍스트 왼쪽, 이미지 오른쪽 */

.bd-service-card--event .bd-service-card__content {
  grid-column: 1;
  grid-row: 1;
}

.bd-service-card--event .bd-service-card__visual {
  grid-column: 2;
  grid-row: 1;
}


/* 텍스트 영역 */

.bd-service-card__content {
  padding: 68px 62px;
}

.bd-service-card__content-inner {
  max-width: 650px;
}

.bd-service-card__category {
  margin-bottom: 15px;
  font-size: 14px;
}

.bd-service-card__title {
  font-size: clamp(42px, 3.3vw, 58px);
}

.bd-service-card__text {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.8;
}


/* 아이콘 영역 확대 */

.bd-service-features {
  gap: 22px 16px;
  margin-top: 46px;
}

.bd-service-feature__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  font-size: 25px;
}

.bd-service-feature strong {
  font-size: 14px;
  line-height: 1.5;
}

.bd-service-feature p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
}


/* 버튼 확대 */

.bd-service-card__button {
  min-width: 250px;
  height: 58px;
  margin-top: 44px;
  padding-right: 23px;
  padding-left: 26px;
  font-size: 15px;
}


/* 이미지 영역 */

.bd-service-card__visual {
  min-height: 520px;
}

.bd-service-card__visual img {
  object-position: center center;
}


/* 카드 간격 */

.bd-service-card {
  margin-bottom: 34px;
}

/* =====================================================
   WHY BETTER DAY - FOUR EQUAL CARDS
===================================================== */

.bd-why-simple {
  position: relative;
  padding: 150px 32px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 100%
    );
}

.bd-why-simple::before {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 760px;
  height: 420px;
  border-radius: 50%;
  background: rgba(47, 112, 187, 0.045);
  filter: blur(90px);
  transform: translateX(-50%);
  content: "";
  pointer-events: none;
}


/* =====================================================
   HEADING
===================================================== */

.bd-why-simple__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 66px;
  text-align: center;
}

.bd-why-simple__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: #286cb8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
}

.bd-why-simple__eyebrow::before,
.bd-why-simple__eyebrow::after {
  width: 23px;
  height: 1px;
  background: rgba(40, 108, 184, 0.38);
  content: "";
}

.bd-why-simple__title {
  margin: 0;
  color: #15191e;
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -0.06em;
}

.bd-why-simple__description {
  margin: 23px 0 0;
  color: #717880;
  font-size: 18px;
  font-weight: 430;
  line-height: 1.75;
  letter-spacing: -0.025em;
}


/* =====================================================
   FOUR CARD GRID
===================================================== */

.bd-why-simple__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}


/* =====================================================
   CARD
===================================================== */

.bd-why-simple-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 445px;
  padding: 31px 29px 28px;
  overflow: hidden;
  border: 1px solid #e2e7ed;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 20px 55px rgba(31, 48, 68, 0.065),
    0 3px 12px rgba(31, 48, 68, 0.025);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.42s ease;
}

.bd-why-simple-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 19px 0 90px;
  background: #f4f8fd;
  content: "";
  transition: transform 0.45s ease;
}

.bd-why-simple-card:hover {
  border-color: rgba(40, 108, 184, 0.3);
  box-shadow:
    0 30px 75px rgba(25, 62, 104, 0.12),
    0 6px 18px rgba(25, 62, 104, 0.05);
  transform: translateY(-8px);
}

.bd-why-simple-card:hover::before {
  transform: scale(1.16);
}


/* =====================================================
   CARD HEAD
===================================================== */

.bd-why-simple-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.bd-why-simple-card__number {
  color: #adb5bf;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.bd-why-simple-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(40, 108, 184, 0.14);
  border-radius: 17px;
  color: #286cb8;
  font-size: 24px;
  background: #f4f8fd;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.68);
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.42s ease,
    box-shadow 0.35s ease;
}

.bd-why-simple-card:hover .bd-why-simple-card__icon {
  color: #ffffff;
  background: #286cb8;
  box-shadow: 0 13px 28px rgba(40, 108, 184, 0.23);
  transform: translateY(-4px) rotate(-4deg);
}


/* =====================================================
   CARD BODY
===================================================== */

.bd-why-simple-card__body {
  position: relative;
  z-index: 2;
  margin-top: 37px;
}

.bd-why-simple-card__label {
  margin: 0 0 12px;
  color: #2a6db8;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
}

.bd-why-simple-card__body h3 {
  margin: 0;
  color: #171c22;
  font-size: clamp(27px, 1.85vw, 34px);
  font-weight: 760;
  line-height: 1.27;
  letter-spacing: -0.055em;
}

.bd-why-simple-card__text {
  margin: 21px 0 0;
  color: #737a82;
  font-size: 15px;
  font-weight: 430;
  line-height: 1.75;
  letter-spacing: -0.025em;
  word-break: keep-all;
}


/* =====================================================
   CARD KEYWORD
===================================================== */

.bd-why-simple-card__keyword {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 27px;
  border-top: 1px solid #edf0f3;
  color: #5e6873;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.bd-why-simple-card__keyword i {
  color: #286cb8;
  font-size: 13px;
}


/* =====================================================
   CTA
===================================================== */

.bd-why-simple-cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 23px;
  margin-top: 27px;
  padding: 27px 28px;
  overflow: hidden;
  border: 1px solid #d7e3f0;
  border-radius: 17px;
  background:
    linear-gradient(
      100deg,
      #f1f7fe 0%,
      #f8fbff 52%,
      #edf5fe 100%
    );
}

.bd-why-simple-cta::after {
  position: absolute;
  top: -90px;
  right: 210px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(40, 108, 184, 0.045);
  content: "";
}

.bd-why-simple-cta__symbol {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 20px;
  background: #286cb8;
  box-shadow: 0 12px 26px rgba(40, 108, 184, 0.23);
}

.bd-why-simple-cta__content {
  position: relative;
  z-index: 2;
}

.bd-why-simple-cta__content strong {
  display: block;
  color: #174b82;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.bd-why-simple-cta__content p {
  margin: 5px 0 0;
  color: #707b86;
  font-size: 14px;
  line-height: 1.6;
}

.bd-why-simple-cta__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 235px;
  height: 58px;
  padding: 0 20px 0 24px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  background: #164d88;
  box-shadow: 0 12px 28px rgba(22, 77, 136, 0.2);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.bd-why-simple-cta__button:hover {
  background: #103d70;
  box-shadow: 0 16px 34px rgba(22, 77, 136, 0.27);
  transform: translateY(-3px);
}

.bd-why-simple-cta__button i {
  margin-left: 28px;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.bd-why-simple-cta__button:hover i {
  transform: translateX(5px);
}

.bd-mobile-only {
  display: none;
}

/* =====================================================
   EVENT SERVICE - 3 FEATURES
===================================================== */

.bd-service-card--event .bd-service-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* 이벤트 서비스 아이콘만 조금 크게 */
.bd-service-card--event .bd-service-feature__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    font-size: 28px;
}

/* 이벤트 서비스 제목 */
.bd-service-card--event .bd-service-feature strong {
    font-size: 15px;
    font-weight: 750;
    line-height: 1.5;
}

/* 이벤트 서비스 설명 */
.bd-service-card--event .bd-service-feature p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.55;
    word-break: keep-all;
}