@charset "utf-8";

/* ==============================
   Hero
============================== */
.hero {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__dim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.45) 38%,
      rgba(0, 0, 0, 0.58) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__copy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 120px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero__title {
  position: relative;
  margin: 0;
  font-size: 64px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.07em;
  text-align: center;
  color: var(--white);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(42px);
  filter: blur(10px);
  animation: heroTextReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line--01 {
  animation-delay: 0.35s;
}

.hero__line--02 {
  animation-delay: 0.85s;
}

.hero__underline {
  --hero-line-width: 180px;

  position: relative;
  display: block;
  width: 0;
  height: 5px;
  margin: 26px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 121, 0, 0) 0%,
    var(--main-orange) 18%,
    var(--main-orange) 82%,
    rgba(255, 121, 0, 0) 100%
  );
  opacity: 0;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255, 121, 0, 0.38);
  animation: heroLineDraw 1.25s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
}

.hero__underline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  animation: heroLineShine 1.35s ease 2.7s forwards;
}

.hero__logo {
  display: block;
  margin-top: 28px;
  font-size: 74px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: var(--main-orange);
  text-align: center;
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  animation: heroLogoReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
}

/* ==============================
   Hero Animation
============================== */
@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(42px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroLineDraw {
  0% {
    width: 0;
    opacity: 0;
    transform: scaleX(0.4);
    filter: blur(6px);
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    width: var(--hero-line-width);
    opacity: 1;
    transform: scaleX(1);
    filter: blur(0);
  }
}

@keyframes heroLineShine {
  0% {
    left: -45%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

@keyframes heroLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==============================
   Hero Responsive
============================== */
@media screen and (max-width: 1440px) {
  .hero {
    height: 820px;
  }

  .hero__copy {
    padding: 52px 100px;
  }

  .hero__title {
    font-size: 58px;
  }

  .hero__logo {
    font-size: 68px;
  }
}

@media screen and (max-width: 1280px) {
  .hero {
    height: 780px;
  }

  .hero__copy {
    padding: 48px 84px;
  }

  .hero__title {
    font-size: 54px;
  }

  .hero__logo {
    font-size: 64px;
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    height: 720px;
  }

  .hero__bg {
    background-position: center center;
  }

  .hero__copy {
    padding: 44px 64px;
  }

  .hero__title {
    font-size: 46px;
    line-height: 1.22;
  }

  .hero__underline {
    --hero-line-width: 150px;
    height: 4px;
    margin-top: 22px;
  }

  .hero__logo {
    margin-top: 24px;
    font-size: 56px;
  }
}

@media screen and (max-width: 834px) {
  .hero {
    height: 680px;
  }

  .hero__copy {
    width: calc(100% - 80px);
    padding: 40px;
  }

  .hero__title {
    font-size: 40px;
    letter-spacing: -0.06em;
  }

  .hero__logo {
    font-size: 50px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    height: 620px;
    margin-top: var(--header-height);
  }

  .hero__bg {
    background-position: center center;
    transform: scale(1.04);
  }

  .hero__dim {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.52) 42%,
        rgba(0, 0, 0, 0.68) 100%
      );
  }

  .hero__copy {
    width: calc(100% - 40px);
    padding: 36px 24px;
    background: rgba(0, 0, 0, 0.24);
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.28;
    letter-spacing: -0.055em;
  }

  .hero__line {
    transform: translateY(30px);
    filter: blur(8px);
    animation-duration: 1.6s;
  }

  .hero__line--01 {
    animation-delay: 0.25s;
  }

  .hero__line--02 {
    animation-delay: 0.65s;
  }

  .hero__underline {
    --hero-line-width: 120px;
    height: 4px;
    margin-top: 20px;
    animation-delay: 1.35s;
  }

  .hero__underline::after {
    animation-delay: 2.35s;
  }

  .hero__logo {
    margin-top: 20px;
    font-size: 44px;
    animation-delay: 1.75s;
  }
}

@media screen and (max-width: 430px) {
  .hero {
    height: 590px;
  }

  .hero__copy {
    width: calc(100% - 32px);
    padding: 32px 20px;
  }

  .hero__title {
    font-size: 31px;
  }

  .hero__logo {
    font-size: 40px;
  }
}

@media screen and (max-width: 390px) {
  .hero {
    height: 560px;
  }

  .hero__copy {
    padding: 30px 18px;
  }

  .hero__title {
    font-size: 29px;
    line-height: 1.3;
  }

  .hero__underline {
    margin-top: 18px;
  }

  .hero__logo {
    margin-top: 18px;
    font-size: 38px;
  }
}

@media screen and (max-width: 375px) {
  .hero {
    height: 540px;
  }

  .hero__copy {
    width: calc(100% - 28px);
    padding: 28px 16px;
  }

  .hero__title {
    font-size: 27px;
  }

  .hero__underline {
    --hero-line-width: 100px;
  }

  .hero__logo {
    font-size: 36px;
  }
}


/* ==============================
   About Section
============================== */
.about {
  position: relative;
  width: 100%;
  min-height: 760px;
  padding: 118px 0 112px;
  background-color: #fff;
  background-image: url("../img/about_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}


.about__inner {
  width: 1280px;
  min-height: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about__text {
  width: 560px;
  padding-left: 10px;
}

.about__title {
  margin: 0 0 56px;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: #151515;
}
.about__title strong {
  color: var(--main-orange);
  font-weight: 900;
}
.about__desc p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #111;
}

.about__desc p:last-child {
  margin-bottom: 0;
}

.about__desc strong {
  color: var(--main-orange);
  font-weight: 800;
}

.about__visual {
  position: relative;
  width: 560px;
  height: 540px;
  margin-right: 32px;
}

.about__photo {
  position: absolute;
  right: 70px;
  top: 0;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8e8e8;
}


.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


.about__logo-circle {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: var(--main-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 26px 52px rgba(255, 121, 0, 0.22);
}


/* ==============================
   About Responsive
============================== */

/* 1440px 이하 */
@media screen and (max-width: 1440px) {
  .about {
    min-height: 720px;
    padding: 110px 0 120px;
  }

  .about__inner {
    width: 1180px;
    min-height: 500px;
  }

  .about__text {
    width: 520px;
  }

  .about__title {
    font-size: 40px;
  }

  .about__visual {
    width: 520px;
    height: 520px;
    margin-right: 0;
  }

  .about__photo {
    right: 62px;
    width: 400px;
    height: 400px;
  }

  .about__logo-circle {
    width: 220px;
    height: 220px;
    font-size: 48px;
  }
}

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
  .about {
    min-height: 700px;
  }

  .about__inner {
    width: calc(100% - 80px);
    gap: 60px;
  }

  .about__text {
    width: 50%;
  }

  .about__visual {
    width: 50%;
    height: 510px;
  }

  .about__photo {
    right: 50px;
  }
}

/* iPad Pro / 작은 노트북 */
@media screen and (max-width: 1024px) {
  .about {
    min-height: auto;
    padding: 100px 0 120px;
  }

  .about__inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
  }

  .about__text {
    width: 100%;
    padding-left: 0;
  }

  .about__title {
    margin-bottom: 44px;
    font-size: 38px;
  }

  .about__desc p {
    font-size: 16px;
    line-height: 1.78;
  }

  .about__visual {
    width: 100%;
    height: 520px;
  }

  .about__photo {
    left: 0;
    right: auto;
    top: 0;
    width: 400px;
    height: 400px;
  }

  .about__logo-circle {
    left: 300px;
    right: auto;
    bottom: 50px;
    width: 210px;
    height: 210px;
    font-size: 46px;
  }
}

/* iPad Mini / iPad Air */
@media screen and (max-width: 834px) {
  .about {
    padding: 90px 0 115px;
  }

  .about__inner {
    width: calc(100% - 60px);
    gap: 60px;
  }

  .about__title {
    font-size: 34px;
  }

  .about__visual {
    height: 460px;
  }

  .about__photo {
    width: 340px;
    height: 340px;
  }

  .about__logo-circle {
    left: 250px;
    bottom: 46px;
    width: 180px;
    height: 180px;
    font-size: 40px;
  }
}

/* 모바일 공통 */
@media screen and (max-width: 768px) {
  .about {
    padding: 80px 0 110px;
  }

  .about__inner {
    width: calc(100% - 40px);
    gap: 54px;
  }

  

  .about__title {
    margin-bottom: 36px;
    font-size: 32px;
    line-height: 1.32;
  }

  .about__desc p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.78;
  }

  .about__visual {
    height: 430px;
  }

  .about__photo {
    width: 320px;
    height: 320px;
  }

  .about__logo-circle {
    left: 220px;
    bottom: 38px;
    width: 170px;
    height: 170px;
    font-size: 38px;
  }

  
}

/* iPhone 14 Pro Max / 큰 모바일 */
@media screen and (max-width: 430px) {
  .about {
    padding: 74px 0 105px;
  }

  .about__inner {
    width: calc(100% - 32px);
  }

  .about__title {
    font-size: 30px;
  }

  .about__desc p {
    font-size: 14.5px;
  }

  .about__visual {
    height: 380px;
  }

  .about__photo {
    width: 285px;
    height: 285px;
  }

  .about__logo-circle {
    right: 0;
    left: auto;
    bottom: 34px;
    width: 140px;
    height: 140px;
    font-size: 31px;
  }
}

/* iPhone XR / iPhone 12 Pro */
@media screen and (max-width: 390px) {
  .about {
    padding: 70px 0 100px;
  }

  .about__title {
    font-size: 28px;
  }

  .about__visual {
    height: 360px;
  }

  .about__photo {
    width: 270px;
    height: 270px;
  }

  .about__logo-circle {
    bottom: 30px;
    width: 128px;
    height: 128px;
    font-size: 29px;
  }
}

/* iPhone SE */
@media screen and (max-width: 375px) {
  .about {
    padding: 70px 0 96px;
  }

  .about__inner {
    width: calc(100% - 28px);
  }

  .about__title {
    font-size: 27px;
  }

  .about__desc p {
    font-size: 14px;
    line-height: 1.75;
  }

  .about__visual {
    height: 340px;
  }

  .about__photo {
    width: 250px;
    height: 250px;
  }

  .about__logo-circle {
    bottom: 28px;
    width: 118px;
    height: 118px;
    font-size: 27px;
  }
}

/* ==============================
   About Mobile Layout Fix
   이미지/로고 잘림 방지
============================== */
@media screen and (max-width: 768px) {
  .about {
    padding: 80px 0 90px;
  }

  .about__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
  }

  .about__text {
    width: 100%;
  }

  .about__visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 360px;
    margin-top: 10px;
    margin-right: 0;
  }

  .about__photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
  }

  .about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .about__logo-circle {
    position: absolute;
    left: auto;
    right: 18px;
    bottom: 8px;
    width: 150px;
    height: 150px;
    font-size: 34px;
  }
}

@media screen and (max-width: 480px) {
  .about {
    padding: 70px 0 86px;
  }

  .about__inner {
    width: calc(100% - 32px);
    gap: 48px;
  }

  .about__visual {
    min-height: 315px;
  }

  .about__photo {
    width: 270px;
    height: 270px;
    margin-left: 0;
  }

  .about__logo-circle {
    right: 0;
    bottom: 0;
    width: 125px;
    height: 125px;
    font-size: 28px;
  }
}

@media screen and (max-width: 390px) {
  .about__visual {
    min-height: 300px;
  }

  .about__photo {
    width: 255px;
    height: 255px;
  }

  .about__logo-circle {
    width: 115px;
    height: 115px;
    font-size: 26px;
  }
}

@media screen and (max-width: 375px) {
  .about__visual {
    min-height: 285px;
  }

  .about__photo {
    width: 240px;
    height: 240px;
  }

  .about__logo-circle {
    width: 108px;
    height: 108px;
    font-size: 24px;
  }
}

/* ==============================
   Why Section
============================== */
.why {
  position: relative;
  width: 100%;
  padding: 130px 0;
  background: #f4f4f4;
  overflow: hidden;
}

.why__inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 84px;
}

.why__title-area {
  flex: 0 0 330px;
}

.why__title {
  margin: 0;
  font-size: 44px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #111;
}

.why__title strong {
  color: var(--main-orange);
  font-size: 44px;
  font-weight: 900;
}

.pc-br {
  display: inline;
}


.why__control {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why__arrow {
  width: 34px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  line-height: 1;
  font-weight: 300;
  color: #c8c8c8;
  transition: color 0.25s ease, transform 0.25s ease;
}

.why__arrow:hover {
  color: var(--main-orange);
  transform: translateY(-2px);
}

.why__pagination {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 90px;
}

.why__current {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #111;
}

.why__slash,
.why__total {
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  color: #c9c9c9;
}

.why__slide-area {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.whySwiper {
  width: 1040px;
  overflow: visible;
}

.whySwiper .swiper-wrapper {
  align-items: stretch;
}

.whySwiper .swiper-slide {
  width: 820px;
  height: auto;
}

.whySwiper .swiper-slide:not(.swiper-slide-active) .why__card {
  opacity: 0.95;
}

/* Card */
.why__card {
  width: 100%;
  min-height: 410px;
  padding: 56px 54px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.why__card-text {
  flex: 1;
  min-width: 0;
}

.why__num {
  display: block;
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--main-orange);
}

.why__card h3 {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #111;
}

.why__info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.why__tag {
  flex: 0 0 auto;
  min-width: 58px;
  height: 30px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  transform: translateY(0);
}

.why__tag span {
  transform: translateY(1px);
}
.why__tag--green {
  background: #388349;
}

.why__tag--blue {
  background: #2c62cc;
  
}

.why__info p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #222;
}

.why__body {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #222;
}

.why__strategy {
  margin: -8px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #111;  
  padding: 0;
  list-style: none;
}


.why__strategy li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #111;
}

.why__strategy li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-orange);
  font-weight: 900;
}

.why__card-img {
  flex: 0 0 310px;
  width: 310px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: #e7e7e7;
}

.why__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==============================
   Why Responsive
============================== */

/* 1440px 이하 */
@media screen and (max-width: 1440px) {
  .why {
    padding: 120px 0;
  }

  .why__inner {
    width: 1180px;
    grid-template-columns: 310px 1fr;
    column-gap: 70px;
    row-gap: 50px;
  }

  .why__title {
    font-size: 42px;
  }

  .whySwiper {
    width: 880px;
  }

  .whySwiper .swiper-slide {
    width: 720px;
  }

  .why__card {
    min-height: 390px;
    padding: 48px 44px;
    gap: 40px;
  }

  .why__card-img {
    flex: 0 0 270px;
    width: 270px;
    height: 280px;
  }
}

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
  .why__inner {
    width: calc(100% - 80px);
    grid-template-columns: 300px 1fr;
    column-gap: 56px;
  }

  .whySwiper {
    width: 100%;
  }

  .whySwiper .swiper-slide {
    width: 700px;
  }

  .why__card {
    padding: 44px 40px;
  }

  .why__card-img {
    flex: 0 0 250px;
    width: 250px;
    height: 260px;
  }
}

/* 1024px 이하: 제목 → 슬라이드 → pill */
@media screen and (max-width: 1024px) {
  .why {
    padding: 100px 0;
  }

  .why__inner {
    width: calc(100% - 80px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "slide"
      "nav";
    row-gap: 34px;
  }

  .why__title-area {
    grid-area: title;
    width: 100%;
  }

  .why__slide-area {
    grid-area: slide;
    width: 100%;
    overflow: hidden;
  }

  .whySwiper {
    width: 100%;
    overflow: hidden;
  }

  .whySwiper .swiper-slide {
    width: 100%;
  }

  .why__control {
    grid-area: nav;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
  }

  .why__title {
    font-size: 38px;
  }

  .why__card {
    min-height: 360px;
    padding: 42px;
    gap: 34px;
  }

  .why__card-img {
    flex: 0 0 260px;
    width: 260px;
    height: 260px;
  }
}

/* iPad Mini / iPad Air */
@media screen and (max-width: 834px) {
  .why {
    padding: 90px 0;
  }

  .why__inner {
    width: calc(100% - 60px);
    row-gap: 32px;
  }

  .why__title {
    font-size: 36px;
  }

  .why__card {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 40px;
  }

  .why__card-img {
    width: 100%;
    height: 260px;
    flex: none;
  }
}

/* 모바일 공통 */
@media screen and (max-width: 768px) {
  .why {
    padding: 80px 0;
  }

  .why__inner {
    width: calc(100% - 40px);
    row-gap: 26px;
  }

  

  .why__title {
    font-size: 34px;
    line-height: 1.32;
  }

  .why__slide-area {
    overflow: hidden;
  }

  .whySwiper {
    overflow: hidden;
  }

  .why__card {
    padding: 34px;
    border-radius: 20px;
    gap: 30px;
  }

  .why__num {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .why__card h3 {
    font-size: 19px;
  }

  .why__info {
    align-items: flex-start;
  }

  .why__card-img {
    height: 230px;
  }

  /* 모바일에서는 화살표 숨김 */
  .why__arrow {
    display: none;
  }

  /* pill을 슬라이드 아래에 작고 자연스럽게 */
  .why__control {
    justify-content: center;
    margin-top: -6px;
  }

  .why__pagination {
    min-width: auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.045);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .why__current {
    font-size: 17px;
    line-height: 1;
    color: var(--main-orange);
  }

  .why__slash,
  .why__total {
    font-size: 15px;
    line-height: 1;
    color: #b8b8b8;
  }

  
}

/* iPhone 14 Pro Max / 큰 모바일 */
@media screen and (max-width: 430px) {
  .why {
    padding: 74px 0;
  }

  .why__inner {
    width: calc(100% - 32px);
    row-gap: 24px;
  }

  .why__title {
    font-size: 31px;
  }

  .why__card {
    padding: 30px 24px;
  }

  .why__num {
    font-size: 31px;
  }

  .why__card h3 {
    font-size: 18px;
  }

  .why__info {
    flex-direction: column;
    gap: 9px;
    margin-bottom: 14px;
  }
  .why__card-img {
    height: 210px;
  }

  .why__control {
    margin-top: 8px;
  }

  .why__pagination {
    padding: 6px 11px;
  }

  .why__current {
    font-size: 16px;
  }

  .why__slash,
  .why__total {
    font-size: 14px;
  }
}

/* iPhone XR / iPhone 12 Pro */
@media screen and (max-width: 390px) {
  .why {
    padding: 70px 0;
  }

  .why__inner {
    row-gap: 22px;
  }

  .why__title {
    font-size: 29px;
  }

  .why__card {
    padding: 28px 22px;
  }

  .why__card-img {
    height: 200px;
  }

  .why__pagination {
    padding: 5px 10px;
  }

  .why__current {
    font-size: 15px;
  }

  .why__slash,
  .why__total {
    font-size: 13px;
  }
}

/* iPhone SE */
@media screen and (max-width: 375px) {
  .why__inner {
    width: calc(100% - 28px);
    row-gap: 20px;
  }

  .why__title {
    font-size: 28px;
  }

  .why__card {
    padding: 26px 20px;
  }

  .why__card h3 {
    font-size: 17px;
  }

  .why__info p,
  .why__body,
  .why__strategy {
    font-size: 13.5px;
  }

  .why__card-img {
    height: 190px;
  }

  .why__pagination {
    padding: 5px 9px;
  }

  .why__current {
    font-size: 14px;
  }

  .why__slash,
  .why__total {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .why__title {
    text-align: center;
  }

  .pc-br {
    display: none;
  }

    
}
/* ==============================
   Consulting
============================== */
.consulting {
  position: relative;
  width: 100%;
  padding: 150px 0 150px;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.consulting__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 13%,
      rgba(255, 121, 0, 0.16) 0%,
      rgba(255, 121, 0, 0.06) 18%,
      rgba(255, 121, 0, 0) 38%
    ),
    linear-gradient(
      180deg,
      #000 0%,
      rgba(0, 0, 0, 0.96) 48%,
      #000 100%
    );
}

.consulting__bg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 980px;
  height: 980px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(
      circle,
      rgba(255, 121, 0, 0.12) 0%,
      rgba(255, 121, 0, 0.04) 28%,
      rgba(255, 121, 0, 0) 64%
    );
  filter: blur(20px);
  opacity: 0.85;
}

.consulting__bg::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -280px;
  width: 1380px;
  height: 980px;
  transform: translateX(-50%);
  background-image: url("../img/dark_light_line.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.46;
}

.consulting__inner {
  position: relative;
  z-index: 2;
  width: 1280px;
  margin: 0 auto;
}

.consulting__head {
  text-align: center;
}

.consulting__head .section__title {
  margin: 0;
  font-size: 42px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: #fff;
}

.consulting__head .section__title strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--main-orange);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.consulting__contents {
  width: 980px;
  margin: 82px auto 0;
  display: flex;
  flex-direction: column;
  gap: 74px;
}

.consulting__box {
  position: relative;
  width: 100%;
  min-height: 290px;
  padding: 34px 44px;
  display: flex;
  align-items: center;
  gap: 76px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.consulting__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 42%,
      rgba(255, 121, 0, 0.06) 100%
    );
  pointer-events: none;
}

.consulting__box--reverse {
  flex-direction: row-reverse;
}

.consulting__img {
  position: relative;
  z-index: 1;
  flex: 0 0 360px;
  width: 360px;
  height: 220px;
  border-radius: 8px 8px 72px 8px;
  overflow: hidden;
  background: #222;
}

.consulting__box--reverse .consulting__img {
  border-radius: 8px 8px 8px 72px;
}

.consulting__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consulting__text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.consulting__text h3 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 14px;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.05em;
  color: #fff;
}

.consulting__text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0)
  );
}

.consulting__text p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.consulting__text li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.consulting__text li span {
  flex: 0 0 auto;
  min-width: 94px;
  padding: 5px 10px 5px;
  border: 1px solid var(--main-orange);
  border-radius: 999px;
  color: var(--main-orange);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.consulting__text li:hover span {
  background: var(--main-orange);
  color: #fff;
  transform: translateY(-2px);
}


/* ==============================
   Service Section
============================== */
.service {
  position: relative;
  width: 100%;
  padding: 120px 0 170px;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* 배경 빛 라인 */
.service::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -250px;
  width: 1380px;
  height: 980px;
  transform: translateX(-50%);
  background-image: url("../img/dark_light_line.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.52;
  pointer-events: none;
}

.service::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 70px;
  width: 900px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(255, 121, 0, 0.12) 0%,
    rgba(255, 121, 0, 0.04) 38%,
    rgba(255, 121, 0, 0) 72%
  );
  filter: blur(24px);
  pointer-events: none;
}

.service__inner {
  position: relative;
  z-index: 2;
  width: 1280px;
  margin: 0 auto;
}

/* Title */
.service__head {
  display: flex;
  align-items: flex-end;
  gap: 38px;
  margin-bottom: 82px;
}

.service__head .section__title {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  font-size: 46px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: #fff;
}

.service__head .section__title strong {
  color: var(--main-orange);
  font-weight: 900;
}

/* 제목 오른쪽 가로 라인 */
.service__head::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.08) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Card List */
.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.service__card {
  position: relative;
  height: 300px;
  padding: 48px 34px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 121, 0, 0.72);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075) 0%,
      rgba(255, 255, 255, 0.025) 55%,
      rgba(255, 121, 0, 0.06) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 121, 0, 0.14) 0%,
      rgba(255, 121, 0, 0.04) 34%,
      rgba(255, 121, 0, 0) 68%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service__card:hover {
  transform: translateY(-10px);
  border-color: var(--main-orange);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 86px rgba(255, 121, 0, 0.14);
}

.service__card:hover::before {
  opacity: 1;
}

.service__icon {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  margin-bottom: 34px;
}

.service__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service__card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff;
  text-align: center;
}
/* ==============================
   Service Responsive
============================== */

/* 1440px 이하 */
@media screen and (max-width: 1440px) {
  .service {
    padding: 115px 0 155px;
  }

  .service__inner {
    width: 1180px;
  }

  .service__list {
    gap: 42px;
  }

  .service__card {
    height: 285px;
  }
}

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
  .service__inner {
    width: calc(100% - 80px);
  }

  .service__list {
    gap: 32px;
  }

  .service__card {
    height: 270px;
    padding: 42px 28px 38px;
  }

  .service__icon {
    width: 86px;
    height: 86px;
    margin-bottom: 30px;
  }

  .service__card h3 {
    font-size: 20px;
  }
}

/* iPad Pro / 작은 노트북 */
@media screen and (max-width: 1024px) {
  .service {
    padding: 100px 0 125px;
  }

  .service::before {
    bottom: -280px;
    width: 1100px;
    height: 820px;
    opacity: 0.42;
  }

  .service::after {
    bottom: 40px;
    width: 720px;
    height: 360px;
    opacity: 0.8;
  }

  .service__head {
    margin-bottom: 60px;
  }

  .service__head .section__title {
    font-size: 40px;
  }

  .service__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .service__card {
    height: 245px;
    padding: 36px 22px 32px;
  }

  .service__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
  }

  .service__card h3 {
    font-size: 18px;
  }
}

/* iPad Mini / iPad Air */
@media screen and (max-width: 834px) {
  .service {
    padding: 90px 0 110px;
  }

  .service__inner {
    width: calc(100% - 60px);
  }

  .service__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }

  .service__head::after {
    width: 100%;
    flex: none;
    margin-bottom: 0;
  }

  .service__head .section__title {
    font-size: 36px;
  }

  .service__list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service__card {
    height: 220px;
  }
}

/* 모바일 공통 */
@media screen and (max-width: 768px) {
  .service {
    padding: 80px 0 96px;
  }

  .service::before {
    bottom: -250px;
    width: 760px;
    height: 620px;
    opacity: 0.36;
  }

  .service::after {
    bottom: 30px;
    width: 480px;
    height: 280px;
    opacity: 0.65;
  }

  .service__inner {
    width: calc(100% - 40px);
  }

  .service__head {
    gap: 22px;
    margin-bottom: 42px;
  }
  .service__head {
    align-items: center;
    text-align: center;
  }

  .service__head .section__title {
    width: 100%;
    text-align: center;
  }

  .service__head::after {
    width: 64px;
    margin-left: auto;
    margin-right: auto;
  }

  .service__head .section__title {
    font-size: 34px;
    line-height: 1.32;
  }

  .service__card {
    height: 205px;
    padding: 34px 24px;
    border-radius: 14px;
  }

  .service__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }

  .service__card h3 {
    font-size: 18px;
    line-height: 1.45;
  }
}

/* iPhone 14 Pro Max / 큰 모바일 */
@media screen and (max-width: 430px) {
  .service {
    padding: 74px 0 90px;
  }

  .service__inner {
    width: calc(100% - 32px);
  }

  .service__head .section__title {
    font-size: 31px;
  }

  .service__list {
    gap: 18px;
  }

  .service__card {
    height: 190px;
    padding: 30px 20px;
  }

  .service__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .service__card h3 {
    font-size: 17px;
  }
}

/* iPhone XR / iPhone 12 Pro */
@media screen and (max-width: 390px) {
  .service {
    padding: 70px 0 86px;
  }

  .service__head .section__title {
    font-size: 29px;
  }

  .service__card {
    height: 180px;
  }

  .service__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .service__card h3 {
    font-size: 16px;
  }
}

/* iPhone SE */
@media screen and (max-width: 375px) {
  .service__inner {
    width: calc(100% - 28px);
  }

  .service__head .section__title {
    font-size: 28px;
  }

  .service__card {
    height: 172px;
    padding: 28px 18px;
  }

  .service__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .service__card h3 {
    font-size: 15.5px;
  }
}
/* ==============================
   Consulting Mobile Fix
============================== */

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
  .consulting__inner {
    width: calc(100% - 80px);
  }

  .consulting__contents {
    width: 100%;
  }
}

/* 1024px 이하 */
@media screen and (max-width: 1024px) {
  .consulting {
    padding: 110px 0 120px;
  }

  .consulting__inner {
    width: calc(100% - 80px);
  }

  .consulting__contents {
    width: 100%;
    margin-top: 68px;
    gap: 46px;
  }

  .consulting__box,
  .consulting__box--reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    width: 100%;
    padding: 42px;
  }

  .consulting__img {
    width: 100%;
    flex: none;
    height: 300px;
  }

  .consulting__text {
    width: 100%;
  }
}

/* 768px 이하 */
@media screen and (max-width: 768px) {
  .consulting {
    padding: 88px 0 100px;
  }

  .consulting__inner {
    width: calc(100% - 40px);
  }

  .consulting__head .section__title {
    font-size: 34px;
  }

  .consulting__head .section__title strong {
    font-size: 30px;
  }

  .consulting__contents {
    margin-top: 52px;
    gap: 36px;
  }

  .consulting__box,
  .consulting__box--reverse {
    width: 100%;
    padding: 30px;
    gap: 28px;
    border-radius: 14px;
  }

  .consulting__img {
    width: 100%;
    height: 230px;
    border-radius: 10px 10px 56px 10px;
  }

  .consulting__box--reverse .consulting__img {
    border-radius: 10px 10px 10px 56px;
  }

  .consulting__text h3 {
    font-size: 23px;
  }


  .consulting__text li {
    align-items: flex-start;
    font-size: 15px;
  }

  .consulting__text li span {
    min-width: 86px;
    font-size: 15px;
  }
}

/* 430px 이하 */
@media screen and (max-width: 430px) {
  .consulting {
    padding: 78px 0 90px;
  }

  .consulting__inner {
    width: calc(100% - 32px);
  }

  .consulting__head .section__title {
    font-size: 30px;
  }

  .consulting__head .section__title strong {
    font-size: 27px;
  }

  .consulting__contents {
    margin-top: 46px;
    gap: 32px;
  }

  .consulting__box,
  .consulting__box--reverse {
    padding: 26px 22px;
  }

  .consulting__img {
    height: 210px;
  }

  .consulting__text h3 {
    font-size: 21px;
  }


  .consulting__text li {
    flex-direction: column;
    gap: 7px;
  }

  .consulting__text li span {
    min-width: auto;
  }
}

/* 390px 이하 */
@media screen and (max-width: 390px) {
  .consulting__inner {
    width: calc(100% - 28px);
  }

  .consulting__box,
  .consulting__box--reverse {
    padding: 24px 20px;
  }

  .consulting__img {
    height: 195px;
  }

  .consulting__text h3 {
    font-size: 20px;
  }
}


/* ==============================
   Checklist Section
============================== */
.checklist {
  position: relative;
  width: 100%;
  padding: 150px 0 145px;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.checklist__inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 110px;
}

/* Left Title Area */
.checklist__title-area {
  position: relative;
  flex: 0 0 500px;
}


.checklist__title-area .section__title {
  margin: 0;
  font-size: 46px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #1a1a1a;
}

.checklist__title-area .section__title strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--main-orange);
  font-weight: 900;
}

.checklist__line-img {
  width: 430px;
  margin-top: 88px;
}

.checklist__line-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* Right Content */
.checklist__content {
  flex: 1;
  min-width: 0;
}

.checklist__content h3 {
  margin: 0 0 38px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: #111;
}

.checklist__content h3 span {
  color: var(--main-orange);
}

/* Checklist List */
.checklist__list {
  width: 100%;
}

.checklist__list li {
  position: relative;
  min-height: 48px;
  padding: 16px 0 16px 54px;
  border-bottom: 1px solid #d8d8d8;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.045em;
  color: #111;
  opacity: 1;
  transform: translateY(0);
}

/* 체크박스 */
.checklist__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 22px;
  height: 22px;
  border: 2px solid #111;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
}

/* 체크 표시 */
.checklist__list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  width: 8px;
  height: 14px;
  border-right: 3px solid var(--main-orange);
  border-bottom: 3px solid var(--main-orange);
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  opacity: 0;
}

/* 리스트 등장 */
.checklist.is-active .checklist__list li {
  animation: checklistItemUp 0.8s ease forwards;
}

.checklist.is-active .checklist__list li:nth-child(1) {
  animation-delay: 0.2s;
}

.checklist.is-active .checklist__list li:nth-child(2) {
  animation-delay: 0.45s;
}

.checklist.is-active .checklist__list li:nth-child(3) {
  animation-delay: 0.7s;
}

.checklist.is-active .checklist__list li:nth-child(4) {
  animation-delay: 0.95s;
}

.checklist.is-active .checklist__list li:nth-child(5) {
  animation-delay: 1.2s;
}

.checklist.is-active .checklist__list li:nth-child(6) {
  animation-delay: 1.45s;
}

.checklist.is-active .checklist__list li:nth-child(7) {
  animation-delay: 1.7s;
}

.checklist.is-active .checklist__list li:nth-child(8) {
  animation-delay: 1.95s;
}

.checklist.is-active .checklist__list li:nth-child(9) {
  animation-delay: 2.2s;
}

/* 체크박스 테두리 활성화 */
.checklist.is-active .checklist__list li:nth-child(1)::before {
  animation: checkBoxActive 0.35s ease 0.6s forwards;
}

.checklist.is-active .checklist__list li:nth-child(2)::before {
  animation: checkBoxActive 0.35s ease 0.85s forwards;
}

.checklist.is-active .checklist__list li:nth-child(3)::before {
  animation: checkBoxActive 0.35s ease 1.1s forwards;
}

.checklist.is-active .checklist__list li:nth-child(4)::before {
  animation: checkBoxActive 0.35s ease 1.35s forwards;
}

.checklist.is-active .checklist__list li:nth-child(5)::before {
  animation: checkBoxActive 0.35s ease 1.6s forwards;
}

.checklist.is-active .checklist__list li:nth-child(6)::before {
  animation: checkBoxActive 0.35s ease 1.85s forwards;
}

.checklist.is-active .checklist__list li:nth-child(7)::before {
  animation: checkBoxActive 0.35s ease 2.1s forwards;
}

.checklist.is-active .checklist__list li:nth-child(8)::before {
  animation: checkBoxActive 0.35s ease 2.35s forwards;
}

.checklist.is-active .checklist__list li:nth-child(9)::before {
  animation: checkBoxActive 0.35s ease 2.6s forwards;
}

/* 체크 표시 그리기 */
.checklist.is-active .checklist__list li:nth-child(1)::after {
  animation: checkDraw 0.5s ease 0.6s forwards;
}

.checklist.is-active .checklist__list li:nth-child(2)::after {
  animation: checkDraw 0.5s ease 0.85s forwards;
}

.checklist.is-active .checklist__list li:nth-child(3)::after {
  animation: checkDraw 0.5s ease 1.1s forwards;
}

.checklist.is-active .checklist__list li:nth-child(4)::after {
  animation: checkDraw 0.5s ease 1.35s forwards;
}

.checklist.is-active .checklist__list li:nth-child(5)::after {
  animation: checkDraw 0.5s ease 1.6s forwards;
}

.checklist.is-active .checklist__list li:nth-child(6)::after {
  animation: checkDraw 0.5s ease 1.85s forwards;
}

.checklist.is-active .checklist__list li:nth-child(7)::after {
  animation: checkDraw 0.5s ease 2.1s forwards;
}

.checklist.is-active .checklist__list li:nth-child(8)::after {
  animation: checkDraw 0.5s ease 2.35s forwards;
}

.checklist.is-active .checklist__list li:nth-child(9)::after {
  animation: checkDraw 0.5s ease 2.6s forwards;
}

/* Notice */
.checklist__notice {
  margin: 46px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--main-orange);
  opacity: 0;
  transform: translateY(18px);
}

.checklist.is-active .checklist__notice {
  animation: checklistNoticeUp 0.65s ease 2.9s forwards;
}

/* Animation */
@keyframes checklistItemUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes checkDraw {
  0% {
    opacity: 0;
    transform: rotate(45deg) scale(0);
  }

  70% {
    opacity: 1;
    transform: rotate(45deg) scale(1.18);
  }

  100% {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

@keyframes checkBoxActive {
  0% {
    border-color: #111;
    background: #fff;
  }

  100% {
    border-color: var(--main-orange);
    background: rgba(255, 121, 0, 0.06);
  }
}

@keyframes checklistNoticeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   Checklist Responsive
============================== */
@media screen and (max-width: 1440px) {
  .checklist__inner {
    width: 1180px;
    gap: 90px;
  }

  .checklist__title-area {
    flex-basis: 460px;
  }
}

@media screen and (max-width: 1280px) {
  .checklist__inner {
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 1024px) {
  .checklist {
    padding: 110px 0;
  }

  .checklist__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
  }

  .checklist__title-area {
    flex: none;
    width: 100%;
  }

  .checklist__content {
    width: 100%;
  }

  .checklist__line-img {
    width: 360px;
    margin-top: 54px;
  }
}

@media screen and (max-width: 768px) {
  .checklist {
    padding: 85px 0;
  }

  .checklist__inner {
    width: calc(100% - 40px);
    gap: 54px;
  }

  .checklist__title-area .section__title {
    font-size: 34px;
  }

  .checklist__line-img {
    width: 280px;
    margin-top: 42px;
  }

  .checklist__content h3 {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .checklist__list li {
    padding: 14px 0 14px 44px;
    font-size: 15px;
  }

  .checklist__list li::before {
    top: 15px;
    width: 20px;
    height: 20px;
  }

  .checklist__list li::after {
    left: 6px;
    top: 16px;
    width: 7px;
    height: 13px;
  }

  .checklist__notice {
    margin-top: 34px;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .checklist__title-area .section__title {
    font-size: 30px;
  }

  .checklist__line-img {
    width: 240px;
  }

  .checklist__list li {
    font-size: 14px;
  }

  .checklist__notice {
    font-size: 15px;
  }
}
/* ==============================
   Contact Section
============================== */
.contact {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: #f6f6f6;
  overflow: hidden;
}

.contact__inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.contact__text {
  flex: 1;
  min-width: 0;
}

.contact__text .section__title {
  margin: 0;
  font-size: 42px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: #111;
}

.contact__text .section__title strong {
  position: relative;
  display: inline-block;
  color: var(--main-orange);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact__text .section__title strong::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 14px;
  background: rgba(255, 121, 0, 0.16);
  border-radius: 999px;
  z-index: -1;
}


.contact__text p {
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 500;
  color: #555;
  letter-spacing: -0.035em;
}

.contact__btn {
  flex: 0 0 auto;
  width: 220px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--main-orange);
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.035em;
  box-shadow: 0 18px 36px rgba(255, 121, 0, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px rgba(255, 121, 0, 0.32);
}

/* ==============================
   Contact Responsive
============================== */

/* 1440px 이하 */
@media screen and (max-width: 1440px) {
  .contact__inner {
    width: 1180px;
  }
}

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
  .contact__inner {
    width: calc(100% - 80px);
  }

  .contact__text .section__title {
    font-size: 40px;
  }
}

/* iPad Pro / 작은 노트북 */
@media screen and (max-width: 1024px) {
  .contact {
    padding: 100px 0;
  }

  .contact__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 46px;
  }

  .contact__text {
    width: 100%;
  }

  .contact__text .section__title {
    font-size: 38px;
  }

  .contact__btn {
    width: 200px;
    height: 62px;
    font-size: 18px;
  }
}

/* iPad Mini / iPad Air */
@media screen and (max-width: 834px) {
  .contact {
    padding: 90px 0;
  }

  .contact__inner {
    width: calc(100% - 60px);
  }

  .contact__text .section__title {
    font-size: 35px;
  }

  .contact__text p {
    font-size: 17px;
  }
}

/* 모바일 공통 */@media screen and (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }

  .contact__inner {
    width: calc(100% - 40px);
    gap: 38px;
    align-items: center;
    text-align: center;
  }

  .contact__text {
    text-align: center;
  }

  

  .contact__text .section__title {
    font-size: 32px;
    line-height: 1.34;
  }

  .contact__text p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.75;
  }

  .contact__btn {
    width: 180px;
    height: 58px;
    margin: 0 auto;
    font-size: 17px;
  }

  
}

/* iPhone 14 Pro Max / 큰 모바일 */
@media screen and (max-width: 430px) {
  .contact {
    padding: 74px 0;
  }

  .contact__inner {
    width: calc(100% - 32px);
    gap: 34px;
  }

  .contact__text .section__title {
    font-size: 29px;
  }

  .contact__text p {
    font-size: 15px;
  }

  .contact__btn {
    width: 165px;
    height: 54px;
    font-size: 16px;
  }
}

/* iPhone XR / iPhone 12 Pro */
@media screen and (max-width: 390px) {
  .contact {
    padding: 70px 0;
  }

  .contact__text .section__title {
    font-size: 27px;
  }

  .contact__text p {
    font-size: 14.5px;
  }
}

/* iPhone SE */
@media screen and (max-width: 375px) {
  .contact__inner {
    width: calc(100% - 28px);
  }

  .contact__text .section__title {
    font-size: 26px;
  }

  .contact__btn {
    width: 154px;
    height: 52px;
    font-size: 15px;
  }
}

/* ==============================
   Main Card Glow Effect
============================== */
.service__card::after,
.why__card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 121, 0, 0.45),
    rgba(255, 255, 255, 0.08),
    rgba(255, 121, 0, 0)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.service__card:hover::after,
.why__card:hover::after {
  opacity: 0.45;
}

/* ==============================
   Section Label
   bar 대신 사용하는 프리미엄 섹션 라벨
============================== */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--main-orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-label::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--main-orange);
}


/* About / Why */
.about__text .section-label,
.why__title-area .section-label {
  justify-content: flex-start;
}

/* Consulting */
.consulting__head .section-label {
  justify-content: center;
}

/* Service */
.service__title-wrap {
  flex: 0 0 auto;
}

.service__title-wrap .section-label {
  justify-content: flex-start;
}

.service__title-wrap .section__title {
  margin: 0;
}

/* Checklist */
.checklist__title-area .section-label {
  justify-content: flex-start;
}

/* Contact */
.contact__text .section-label {
  justify-content: flex-start;
}

/* 어두운 배경 섹션에서도 동일한 브랜드 포인트 유지 */
.section--dark .section-label,
.consulting .section-label,
.service .section-label {
  color: var(--main-orange);
}

.section--dark .section-label::before,
.consulting .section-label::before,
.service .section-label::before {
  background: var(--main-orange);
}

/* Service 기존 오른쪽 라인 유지 */
.service__head {
  display: flex;
  align-items: flex-end;
  gap: 38px;
  margin-bottom: 82px;
}

.service__head::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.08) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* ==============================
   Section Label Responsive
============================== */

@media screen and (max-width: 1024px) {
  .section-label {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .section-label::before {
    width: 32px;
  }
}

@media screen and (max-width: 768px) {
  .section-label {
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .section-label::before {
    width: 28px;
  }

  .about__text .section-label,
  .why__title-area .section-label,
  .consulting__head .section-label,
  .service__title-wrap .section-label,
  .checklist__title-area .section-label,
  .contact__text .section-label {
    justify-content: center;
  }

  .service__head {
    display: block;
    text-align: center;
    margin-bottom: 58px;
  }

  .service__head::after {
    display: none;
  }
}

@media screen and (max-width: 390px) {
  .section-label {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .section-label::before {
    width: 24px;
  }
}

/* ==============================
   About Message Style
   대표 인사말
============================== */

.about--message {
  min-height: auto;
  padding: 96px 0 104px;
  background: #f7f3ec;
  background-image: none;
  overflow: hidden;
}

.about--message .about__inner {
  width: 1280px;
  min-height: auto;
  margin: 0 auto;
  display: block;
}

.about--message .about__text {
  width: 820px;
  padding-left: 0;
}

.about__label {
  position: relative;
  display: inline-block;
  margin-bottom: 34px;
  padding-left: 44px;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #151515;
}

.about__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--main-orange);
}

.about--message .about__title {
  margin: 0 0 34px;
  font-size: 36px;
  line-height: 1.48;
  font-weight: 500;
  letter-spacing: -0.055em;
  color: #050505;
}

.about--message .about__title strong {
  color: var(--main-orange);
  font-weight: 500;
}

.about--message .about__desc p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.86;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #111;
  word-break: keep-all;
}

.about--message .about__desc p:last-child {
  margin-bottom: 0;
}

.about--message .about__sign {
  margin-top: 38px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  color: #555;
}

.about--message .about__sign strong {
  margin-left: 8px;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* 이미지형 레이아웃에서는 오른쪽 대표 이미지 숨김 */
.about--message .about__visual {
  display: none;
}

/* ==============================
   Main Message Section
============================== */

.main-message {
  position: relative;
  width: 100%;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 121, 0, 0.08) 0%, rgba(255, 121, 0, 0) 36%),
    #f8f3ec;
  overflow: hidden;
}

.main-message__inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.main-message__text {
  flex: 1;
  min-width: 0;
}

.main-message__label {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--main-orange);
}

.main-message__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--main-orange);
}

.main-message__title {
  margin: 0;
  font-size: 58px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.075em;
  color: #111;
}

.main-message__title strong {
  color: var(--main-orange);
  font-weight: 900;
}

.main-message__desc {
  margin: 34px 0 0;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.055em;
  color: #151515;
}

.main-message__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.main-message__btn {
  height: 60px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.main-message__btn--primary {
  background: var(--main-orange);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 121, 0, 0.28);
}

.main-message__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(255, 121, 0, 0.34);
}

.main-message__btn--line {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

.main-message__btn--line:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

.main-message__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.main-message__tags li {
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(90, 55, 24, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #111;
}

.main-message__card {
  position: relative;
  flex: 0 0 520px;
  min-height: 325px;
  padding: 54px 28px 30px;
  border: 1px solid rgba(120, 74, 28, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 54px rgba(43, 28, 15, 0.12);
}

.main-message__badge {
  position: absolute;
  left: -16px;
  top: -20px;
  height: 40px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.main-message__badge::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 340px;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(120, 74, 28, 0.2);
}

.main-message__badge span,
.main-message__badge {
  white-space: nowrap;
}

.main-message__card-desc {
  margin: 0 0 24px;
  padding: 0 0 18px;
  border-bottom: 1px dashed rgba(120, 74, 28, 0.22);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #8a705d;
}

.main-message__card-desc span {
  color: var(--main-orange);
}

.main-message__change-list {
  display: flex;
  flex-direction: column;
}

.main-message__change-list li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  border-bottom: 1px dashed rgba(120, 74, 28, 0.2);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.main-message__change-list li:last-child {
  border-bottom: 0;
}

.main-message__change-list .before {
  color: #cf3b20;
}

.main-message__change-list b {
  text-align: center;
  color: var(--main-orange);
  font-size: 24px;
  font-weight: 900;
}

.main-message__change-list .after {
  text-align: right;
  color: #175c39;
}
.main-message__badge em {
  color: var(--main-orange);
  font-style: normal;
  font-weight: 900;
}
/* ==============================
   Problem Cycle Section
============================== */

.problem-cycle {
  position: relative;
  width: 100%;
  padding: 108px 0 110px;
  background: #eee4d7;
  overflow: hidden;
}

.problem-cycle__inner {
  width: 1280px;
  margin: 0 auto;
}

.problem-cycle__head {
  text-align: center;
}

.problem-cycle__label {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--main-orange);
}

.problem-cycle__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--main-orange);
}

.problem-cycle__title {
  margin: 0;
  font-size: 42px;
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: #050505;
}

.problem-cycle__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.problem-cycle__card {
  min-height: 176px;
  padding: 32px 22px 28px;
  border: 1px solid rgba(89, 63, 35, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(56, 39, 20, 0.04);
}

.problem-cycle__num {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--main-orange);
}

.problem-cycle__card h3 {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: #050505;
}

.problem-cycle__card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #6b6257;
  word-break: keep-all;
}

.problem-cycle__result {
  margin-top: 38px;
  text-align: center;
}

.problem-cycle__result span {
  display: block;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: var(--main-orange);
}

.problem-cycle__result p {
  margin: 0;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #050505;
}

.problem-cycle__result strong {
  color: #c93b27;
  font-weight: 900;
}

/* ==============================
   Custom Sections Responsive
   about--message / main-message / problem-cycle
============================== */

@media screen and (max-width: 1440px) {
  .about--message .about__inner,
  .main-message__inner,
  .problem-cycle__inner {
    width: 1180px;
  }

  .about--message .about__text {
    width: 800px;
  }

  .main-message__inner {
    gap: 70px;
  }

  .main-message__title {
    font-size: 52px;
  }

  .main-message__card {
    flex-basis: 500px;
  }

  .problem-cycle__title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1280px) {
  .about--message .about__inner,
  .main-message__inner,
  .problem-cycle__inner {
    width: calc(100% - 80px);
  }

  .about--message .about__text {
    width: 78%;
  }

  .main-message__inner {
    gap: 56px;
  }

  .main-message__title {
    font-size: 48px;
  }

  .main-message__card {
    flex-basis: 470px;
  }

  .problem-cycle__list {
    gap: 14px;
  }

  .problem-cycle__card {
    padding: 30px 20px 26px;
  }
}

@media screen and (max-width: 1024px) {
  .about--message {
    padding: 86px 0 94px;
  }

  .about--message .about__text {
    width: 100%;
  }

  .about--message .about__title {
    font-size: 32px;
  }

  .about--message .about__desc p {
    font-size: 17px;
  }

  .main-message {
    padding: 82px 0 86px;
  }

  .main-message__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 58px;
  }

  .main-message__text,
  .main-message__card {
    width: 100%;
  }

  .main-message__title {
    font-size: 46px;
  }

  .main-message__card {
    flex: none;
  }

  .problem-cycle {
    padding: 96px 0 100px;
  }

  .problem-cycle__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .problem-cycle__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .about--message {
    padding: 74px 0 82px;
  }

  .about--message .about__inner,
  .main-message__inner,
  .problem-cycle__inner {
    width: calc(100% - 40px);
  }

  .about__label {
    margin-bottom: 28px;
    padding-left: 38px;
    font-size: 15px;
  }

  .about__label::before {
    width: 24px;
  }

  .about--message .about__title {
    margin-bottom: 28px;
    font-size: 29px;
    line-height: 1.45;
  }

  .about--message .about__desc p {
    margin-bottom: 22px;
    font-size: 15.5px;
    line-height: 1.82;
  }

  .about--message .about__sign {
    margin-top: 32px;
    font-size: 15px;
  }

  .about--message .about__sign strong {
    font-size: 18px;
  }

  .main-message {
    padding: 72px 0 76px;
  }

  .main-message__inner {
    gap: 48px;
  }

  .main-message__label {
    margin-bottom: 24px;
    padding-left: 36px;
    font-size: 14px;
  }

  .main-message__label::before {
    width: 24px;
  }

  .main-message__title {
    font-size: 38px;
    line-height: 1.22;
  }

  .main-message__desc {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.7;
  }

  .main-message__btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
  }

  .main-message__btn {
    width: 100%;
    height: 56px;
    font-size: 16px;
  }

  .main-message__tags {
    margin-top: 24px;
  }

  .main-message__tags li {
    height: 36px;
    font-size: 13.5px;
  }

  .main-message__card {
    min-height: auto;
    padding: 50px 22px 24px;
    border-radius: 18px;
  }

  .main-message__badge {
    left: 18px;
    top: -18px;
    height: 36px;
    font-size: 13px;
  }

  .main-message__badge::after {
    display: none;
  }

  .main-message__card-desc {
    font-size: 15px;
  }

  .main-message__change-list li {
    min-height: 56px;
    grid-template-columns: 1fr 30px 1fr;
    font-size: 14.5px;
  }

  .main-message__change-list b {
    font-size: 20px;
  }

  .problem-cycle {
    padding: 82px 0 86px;
  }

  .problem-cycle__label {
    margin-bottom: 26px;
    padding-left: 36px;
    font-size: 14px;
  }

  .problem-cycle__label::before {
    width: 24px;
  }

  .problem-cycle__title {
    font-size: 32px;
    line-height: 1.38;
  }

  .problem-cycle__list {
    margin-top: 46px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-cycle__card {
    min-height: auto;
    padding: 28px 22px 26px;
  }

  .problem-cycle__result {
    margin-top: 34px;
  }

  .problem-cycle__result span {
    font-size: 30px;
  }

  .problem-cycle__result p {
    font-size: 22px;
  }

  .main-message__btn:hover,
  .problem-cycle__card:hover {
    transform: none;
  }
}

@media screen and (max-width: 430px) {
  .about--message {
    padding: 66px 0 74px;
  }

  .about--message .about__inner,
  .main-message__inner,
  .problem-cycle__inner {
    width: calc(100% - 32px);
  }

  .about--message .about__title {
    font-size: 25px;
    line-height: 1.48;
  }

  .about--message .about__desc p {
    font-size: 14.5px;
    line-height: 1.78;
  }

  .main-message {
    padding: 66px 0 70px;
  }

  .main-message__title {
    font-size: 32px;
  }

  .main-message__desc {
    font-size: 15.5px;
  }

  .main-message__card {
    padding: 46px 18px 22px;
  }

  .main-message__change-list li {
    font-size: 13.5px;
  }

  .problem-cycle {
    padding: 74px 0 78px;
  }

  .problem-cycle__title {
    font-size: 27px;
  }

  .problem-cycle__card h3 {
    font-size: 18px;
  }

  .problem-cycle__card p {
    font-size: 14.5px;
  }

  .problem-cycle__result p {
    font-size: 19px;
  }
}

@media screen and (max-width: 375px) {
  .about--message .about__title {
    font-size: 23px;
  }

  .about--message .about__desc p {
    font-size: 14px;
  }

  .main-message__title {
    font-size: 30px;
  }

  .main-message__desc {
    font-size: 14.5px;
  }

  .main-message__tags li {
    font-size: 13px;
  }

  .main-message__change-list li {
    font-size: 13px;
  }

  .problem-cycle__title {
    font-size: 25px;
  }

  .problem-cycle__card {
    padding: 26px 20px 24px;
  }

  .problem-cycle__card p {
    font-size: 14px;
  }

  .problem-cycle__result p {
    font-size: 18px;
  }
}

/* ==============================
   Motion Reduce
============================== */

@media (prefers-reduced-motion: reduce) {
  .hero__line,
  .hero__underline,
  .hero__underline::after,
  .hero__logo,
  .service__card,
  .why__arrow,
  .main-message__btn,
  .problem-cycle__card,
  .checklist__list li,
  .checklist__list li::before,
  .checklist__list li::after,
  .checklist__notice {
    animation: none !important;
    transition: none !important;
  }
}
