@charset "utf-8";

/* ==============================
   Consulting Page
============================== */

.consulting-main {
  padding-top: var(--header-height);
  background: #fff;
  color: #171717;
}

.mo-br {
  display: none;
}

:root {
  --con-orange: var(--main-orange, #ff7900);
  --con-black: #171717;
  --con-text: #333;
  --con-muted: #747474;
  --con-line: rgba(0, 0, 0, 0.08);
  --con-bg: #f7f7f5;
  --con-soft: #fff7ef;
  --con-radius-lg: 34px;
  --con-radius-md: 24px;
  --con-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --con-inner: min(1280px, calc(100% - 80px));
  --con-wide: min(1440px, calc(100% - 64px));
}

.consulting-main section {
  position: relative;
}

.consulting-main h2,
.consulting-main h3,
.consulting-main h4,
.consulting-main p,
.consulting-main span,
.consulting-main a,
.consulting-main li {
  word-break: keep-all;
}

.consulting-main strong {
  color: var(--con-orange);
  font-weight: 800;
}

.con-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--con-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.con-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--con-orange);
}

/* ==============================
   Visual
============================== */

.con-visual {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 0 0 72px 72px;
  background-image: url("../img/con_visual.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.con-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.52) 46%,
      rgba(0, 0, 0, 0.18) 100%
    );
  pointer-events: none;
}

.con-visual::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(96px, 14vw, 220px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.con-visual__dim {
  display: none;
}

.con-visual__inner {
  position: relative;
  z-index: 3;
  width: var(--con-inner);
  height: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  text-align: left;
  animation: conHeroReveal 0.8s ease forwards;
}

.con-visual__inner h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 800;
}

.con-visual__inner span {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: -0.04em;
}

@keyframes conHeroReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   Intro
============================== */

.con-intro {
  position: relative;
  padding: 118px 0 124px;
  background: #fff;
  overflow: hidden;
}

.con-intro::after {
  content: "DIAGNOSIS";
  position: absolute;
  right: -20px;
  bottom: 32px;
  color: rgba(0, 0, 0, 0.035);
  font-size: 140px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.con-intro__inner {
  position: relative;
  z-index: 2;
  width: var(--con-inner);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 76px;
  align-items: center;
}

.con-intro__head h3 {
  max-width: 650px;
  margin: 0;
  color: var(--con-black);
  font-size: 42px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.075em;
}

.con-intro__body {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 24px;
}

.con-intro__img {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--con-radius-lg);
  background: #ddd;
  box-shadow: var(--con-shadow);
}

.con-intro__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 44%,
      rgba(0, 0, 0, 0.28) 100%
    );
  pointer-events: none;
}

.con-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.con-intro__img:hover img {
  transform: scale(1.045);
}

.con-intro__text {
  position: relative;
  padding: 38px;
  border: 1px solid var(--con-line);
  border-radius: var(--con-radius-lg);
  background: var(--con-bg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.con-intro__text > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--con-soft);
  color: var(--con-orange);

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.con-intro__text p {
  margin: 0;
  color: var(--con-text);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.con-intro__text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.con-intro__text li {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--con-black);

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ==============================
   Insight
============================== */

.con-insight {
  padding: 112px 0 124px;
  background: var(--con-bg);
  overflow: hidden;
}

.con-insight__inner {
  width: var(--con-wide);
  margin: 0 auto;
}

.con-insight__head {
  max-width: 760px;
  margin-bottom: 58px;
}

.con-insight__head h3 {
  margin: 0;
  color: var(--con-black);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.con-insight__grid {
  display: flex;
  gap: 28px;
  width: 100%;
}

.con-insight__card {
  position: relative;
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  background: #ddd;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  isolation: isolate;
  cursor: pointer;
}

.con-insight__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.24) 42%,
      rgba(0, 0, 0, 0.72) 100%
    );
  pointer-events: none;
}

.con-insight__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.con-insight__card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

.con-insight__card > div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 36px;
  z-index: 2;
}

.con-insight__card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);

  color: var(--con-black);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.con-insight__card h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.con-insight__card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.js-detail-card::after {
  content: "View Detail";
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 4;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

  color: var(--con-black);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;

  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.js-detail-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   Benefit
============================== */

.con-benefit {
  position: relative;
  padding: 112px 0 124px;
  background: #fff;
  overflow: hidden;
}

.con-benefit::after {
  content: "COMMUNITY";
  position: absolute;
  right: -20px;
  bottom: 28px;
  color: rgba(0, 0, 0, 0.035);
  font-size: 150px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.con-benefit__inner {
  position: relative;
  z-index: 2;
  width: var(--con-inner);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.con-benefit__head {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.con-benefit__head h3 {
  margin: 0;
  color: var(--con-black);
  font-size: 42px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.con-benefit__head p {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--con-muted);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.con-benefit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.con-benefit__card {
  position: relative;
  min-height: 260px;
  padding: 34px 32px;
  overflow: hidden;
  border: 1px solid var(--con-line);
  border-radius: 30px;
  background: var(--con-bg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.con-benefit__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 121, 0, 0.28);
  box-shadow: var(--con-shadow);
}

.con-benefit__card span {
  position: absolute;
  right: 28px;
  top: 24px;
  color: rgba(255, 121, 0, 0.18);
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.con-benefit__card h4 {
  margin: 0 0 14px;
  color: var(--con-black);
  font-size: 25px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.con-benefit__card p {
  margin: 0;
  color: var(--con-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.con-benefit__card--dark {
  background: #111;
  color: #fff;
}

.con-benefit__card--dark h4 {
  color: #fff;
}

.con-benefit__card--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.con-benefit__card--dark span {
  color: rgba(255, 255, 255, 0.16);
}

.con-benefit__card--point {
  background: var(--con-orange);
  color: #fff;
  box-shadow: 0 28px 80px rgba(255, 121, 0, 0.24);
}

.con-benefit__card--point h4 {
  color: #fff;
}

.con-benefit__card--point p {
  color: rgba(255, 255, 255, 0.88);
}

.con-benefit__card--point span {
  color: rgba(255, 255, 255, 0.22);
}

/* ==============================
   Benefit Responsive
============================== */

@media screen and (max-width: 1280px) {
  .con-benefit__inner {
    gap: 54px;
  }

  .con-benefit__head h3 {
    font-size: 38px;
  }

  .con-benefit__card {
    min-height: 240px;
    padding: 32px 28px;
  }
}

@media screen and (max-width: 1024px) {
  .con-benefit__inner {
    grid-template-columns: 1fr;
  }

  .con-benefit__head {
    position: relative;
    top: auto;
  }

  .con-benefit__head p {
    max-width: 620px;
  }
}

@media screen and (max-width: 768px) {
  .con-benefit {
    padding: 78px 0;
  }

  .con-benefit::after {
    display: none;
  }

  .con-benefit__head {
    text-align: center;
  }

  .con-benefit__head h3 {
    font-size: 28px;
    line-height: 1.38;
  }

  .con-benefit__head p {
    max-width: 330px;
    margin: 22px auto 0;
    font-size: 14.5px;
    line-height: 1.72;
  }

  .con-benefit__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .con-benefit__card {
    min-height: 210px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .con-benefit__card:hover {
    transform: none;
  }

  .con-benefit__card span {
    right: 24px;
    top: 22px;
    font-size: 44px;
  }

  .con-benefit__card h4 {
    font-size: 22px;
  }

  .con-benefit__card p {
    font-size: 14.5px;
    line-height: 1.68;
  }
}

@media screen and (max-width: 430px) {
  .con-benefit__head h3 {
    font-size: 24px;
  }

  .con-benefit__card {
    min-height: 190px;
  }

  .con-benefit__card span {
    font-size: 40px;
  }
}

@media screen and (max-width: 375px) {
  .con-benefit__head h3 {
    font-size: 22px;
  }

  .con-benefit__card {
    min-height: 180px;
  }
}
/* ==============================
   Checklist
============================== */

.con-check {
  padding: 112px 0 138px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.con-check::after {
  content: "SELF CHECK";
  position: absolute;
  right: -18px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 150px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.con-check__inner {
  position: relative;
  z-index: 2;
  width: var(--con-inner);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 74px;
  align-items: start;
}

.con-check__head {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.con-check__head h3 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.con-check .con-label {
  color: var(--con-orange);
}

.con-check__content {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--con-radius-lg);
  background: #1b1b1b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.con-check__content ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.con-check__content li {
  position: relative;
  min-height: auto;
  padding: 16px 18px 16px 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);

  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.con-check__content li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--con-orange);
}

.con-check__content li::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 21px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.con-check__content p {
  position: relative;
  margin: 30px 0 0;
  padding: 22px 24px 22px 58px;
  border-radius: 18px;
  background: var(--con-orange);
  color: #fff;

  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: -0.045em;
}

/* ==============================
   Consulting Detail Modal
============================== */

.con-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 28px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.con-detail-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.con-detail-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(12px);
}

.con-detail-modal__panel {
  position: relative;
  z-index: 2;

  width: min(1040px, calc(100vw - 96px));
  height: min(560px, calc(100vh - 96px));
  overflow: hidden;

  display: grid;
  grid-template-columns: 0.96fr 1.04fr;

  border-radius: 34px;
  background: #fff;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34);

  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s ease;
}

.con-detail-modal.is-active .con-detail-modal__panel {
  transform: translateY(0) scale(1);
}

.con-detail-modal__visual {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #ddd;
}

.con-detail-modal__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.38) 100%
    );
  pointer-events: none;
}

.con-detail-modal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.con-detail-modal__content {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 46px 52px 42px;
  background:
    linear-gradient(135deg, #fff 0%, #fff8f0 100%);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.con-detail-modal__content::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 121, 0, 0.08);
  pointer-events: none;
}

.con-detail-modal__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--con-soft);
  color: var(--con-orange);

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.con-detail-modal__content h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--con-black);
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.con-detail-modal__subtitle {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: var(--con-text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.con-detail-modal__point-wrap {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.con-detail-modal__point-wrap > strong,
.con-detail-modal__solution > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--con-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.con-detail-modal__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.con-detail-modal__points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 121, 0, 0.16);

  color: var(--con-black);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.con-detail-modal__solution {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 22px;
  background: #111;
  color: #fff;
}

.con-detail-modal__solution p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.con-detail-modal__close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 5;

  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #111;
  cursor: pointer;
}

.con-detail-modal__close::before,
.con-detail-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.con-detail-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.con-detail-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-modal-open {
  overflow: hidden;
}
/* ==============================
   Checklist Animation
============================== */

.con-check__content li {
  opacity: 0;
  transform: translateY(18px);
}

.con-check.is-active .con-check__content li {
  animation: conChecklistItemUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.con-check.is-active .con-check__content li:nth-child(1) {
  animation-delay: 0.1s;
}

.con-check.is-active .con-check__content li:nth-child(2) {
  animation-delay: 0.18s;
}

.con-check.is-active .con-check__content li:nth-child(3) {
  animation-delay: 0.26s;
}

.con-check.is-active .con-check__content li:nth-child(4) {
  animation-delay: 0.34s;
}

.con-check.is-active .con-check__content li:nth-child(5) {
  animation-delay: 0.42s;
}

.con-check.is-active .con-check__content li:nth-child(6) {
  animation-delay: 0.5s;
}

.con-check.is-active .con-check__content li:nth-child(7) {
  animation-delay: 0.58s;
}

.con-check.is-active .con-check__content li:nth-child(8) {
  animation-delay: 0.66s;
}

.con-check__content p {
  opacity: 0;
  transform: translateY(18px);
}

.con-check.is-active .con-check__content p {
  animation: conChecklistNoticeUp 0.65s ease 0.82s forwards;
}

@keyframes conChecklistItemUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes conChecklistNoticeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 체크리스트 안내 박스 느낌표 */
.con-check__content p::before {
  content: "!";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  color: var(--con-orange);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

/* ==============================
   Responsive
============================== */

@media screen and (max-width: 1440px) {
  :root {
    --con-inner: min(1180px, calc(100% - 80px));
    --con-wide: min(1280px, calc(100% - 64px));
  }

  .con-insight__card {
    min-height: 500px;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --con-inner: calc(100% - 80px);
    --con-wide: calc(100% - 80px);
  }

  .con-intro__inner,
  .con-check__inner {
    gap: 54px;
  }

  .con-intro__head h3,
  .con-insight__head h3,
  .con-check__head h3 {
    font-size: 38px;
  }

  .con-insight__grid {
    gap: 22px;
  }

  .con-insight__card {
    min-height: 460px;
  }

}

@media screen and (max-width: 1024px) {
  .con-visual {
    height: 440px;
    border-radius: 0 0 54px 54px;
  }

  .con-visual__inner h2 {
    font-size: 52px;
  }

  .con-intro__inner,
  .con-check__inner {
    grid-template-columns: 1fr;
  }

  .con-intro__body {
    grid-template-columns: 1fr;
  }

  .con-intro__img {
    min-height: 340px;
  }

  .con-insight__grid {
    flex-direction: column;
    gap: 18px;
  }

  .con-insight__card {
    flex: none;
    width: 100%;
    min-height: 340px;
    border-radius: 28px;
  }

  .con-insight__card p {
    max-width: 520px;
  }

  .con-check__head {
    position: relative;
    top: auto;
  }

  .con-detail-modal__panel {
    width: min(680px, calc(100vw - 48px));
    height: auto;
    max-height: calc(100vh - 64px);

    grid-template-columns: 1fr;
    grid-template-rows: 250px auto;

    overflow: hidden;
  }

  .con-detail-modal__visual {
    height: 250px;
    min-height: 250px;
  }

  .con-detail-modal__content {
    height: auto;
    min-height: auto;
    padding: 36px 34px 34px;
    overflow: hidden;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --con-inner: calc(100% - 40px);
    --con-wide: calc(100% - 40px);
  }

  .consulting-main {
    padding-top: 72px;
  }

  .con-label {
    justify-content: center;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .con-visual {
    height: 360px;
    border-radius: 0 0 38px 38px;
  }

  .con-visual::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.66) 0%,
        rgba(0, 0, 0, 0.48) 100%
      );
  }

  .con-visual::after {
    right: -16px;
    bottom: -10px;
    font-size: 78px;
  }

  .con-visual__inner {
    align-items: center;
    text-align: center;
  }

  .con-visual__inner h2 {
    font-size: 38px;
    line-height: 1.16;
  }

  .con-visual__inner span {
    max-width: 330px;
    margin-top: 20px;
    font-size: 14.5px;
    line-height: 1.62;
  }

  .con-intro,
  .con-insight,
  .con-check {
    padding: 78px 0;
  }

  .con-intro::after,
  .con-check::after {
    display: none;
  }

  .con-intro__head,
  .con-insight__head,
  .con-check__head {
    text-align: center;
  }

  .con-intro__head h3,
  .con-insight__head h3,
  .con-check__head h3 {
    font-size: 28px;
    line-height: 1.38;
  }

  .con-intro__body {
    gap: 18px;
  }

  .con-intro__img {
    min-height: 240px;
    border-radius: 24px;
  }

  .con-intro__text {
    padding: 30px 24px;
    border-radius: 24px;
    text-align: center;
  }

  .con-intro__text > span {
    margin-left: auto;
    margin-right: auto;
  }

  .con-intro__text p,
  .con-insight__card p,
  .con-check__content li {
    font-size: 14.5px;
    line-height: 1.68;
  }

  .con-intro__text ul {
    justify-content: center;
  }

  .con-insight__head {
    margin-bottom: 34px;
  }

  .con-insight__grid {
    gap: 14px;
  }

  .con-insight__card {
    min-height: 300px;
    border-radius: 26px;
  }

  .con-insight__card > div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .con-insight__card h4 {
    font-size: 24px;
  }

  .con-insight__card p {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.62;
  }

  .js-detail-card::after {
    opacity: 1;
    transform: none;
    right: 18px;
    top: 18px;
    font-size: 11px;
  }

  .con-insight__card:hover img,
  .con-intro__img:hover img {
    transform: none;
  }

  .con-check__content {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .con-check__content ul {
    grid-template-columns: 1fr;
  }

  .con-check__content p {
    font-size: 15px;
  }

  /* Modal Mobile */
  .con-detail-modal {
    padding: 22px;
    align-items: center;
  }

  .con-detail-modal__panel {
    width: min(420px, 100%);
    height: auto;
    max-height: calc(100vh - 72px);

    grid-template-columns: 1fr;
    grid-template-rows: 180px auto;

    border-radius: 26px;
    overflow: hidden;
  }

  .con-detail-modal__visual {
    height: 180px;
    min-height: 180px;
  }

  .con-detail-modal__content {
    height: auto;
    min-height: auto;
    padding: 28px 22px 24px;
    overflow: hidden;
    justify-content: flex-start;
  }

  .con-detail-modal__label {
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .con-detail-modal__content h3 {
    font-size: 26px;
    line-height: 1.18;
  }

  .con-detail-modal__subtitle {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.58;
  }

  .con-detail-modal__point-wrap {
    margin-top: 20px;
  }

  .con-detail-modal__point-wrap > strong,
  .con-detail-modal__solution > strong {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .con-detail-modal__points {
    gap: 7px;
  }

  .con-detail-modal__points span {
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .con-detail-modal__solution {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .con-detail-modal__solution p {
    font-size: 13px;
    line-height: 1.58;
  }

  .con-detail-modal__close {
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
  }

  .con-detail-modal__close::before,
  .con-detail-modal__close::after {
    width: 14px;
  }
}

@media screen and (max-width: 430px) {
  :root {
    --con-inner: calc(100% - 32px);
    --con-wide: calc(100% - 32px);
  }

  .con-visual {
    height: 320px;
  }

  .con-visual__inner h2 {
    font-size: 32px;
  }

  .con-visual__inner span {
    font-size: 14px;
  }

  .con-intro__head h3,
  .con-insight__head h3,
  .con-check__head h3 {
    font-size: 24px;
  }

  .con-insight__card {
    min-height: 260px;
  }

  .con-insight__card p {
    max-width: 240px;
    font-size: 13px;
  }

  .con-process__card {
    min-height: 138px;
  }

  .con-detail-modal {
    padding: 18px;
  }

  .con-detail-modal__panel {
    width: 100%;
    max-height: calc(100vh - 60px);
    grid-template-rows: 150px auto;
    border-radius: 24px;
  }

  .con-detail-modal__visual {
    height: 150px;
    min-height: 150px;
  }

  .con-detail-modal__content {
    padding: 24px 20px 22px;
  }

  .con-detail-modal__content h3 {
    font-size: 24px;
  }

  .con-detail-modal__subtitle {
    font-size: 13px;
    line-height: 1.55;
  }

  .con-detail-modal__point-wrap {
    margin-top: 18px;
  }

  .con-detail-modal__solution {
    margin-top: 18px;
    padding: 15px 16px;
  }

  .con-detail-modal__solution p {
    font-size: 12.5px;
  }
}

@media screen and (max-width: 375px) {
  :root {
    --con-inner: calc(100% - 28px);
    --con-wide: calc(100% - 28px);
  }

  .con-visual__inner h2 {
    font-size: 30px;
  }

  .con-intro__head h3,
  .con-insight__head h3,
  .con-check__head h3 {
    font-size: 22px;
  }

  .con-detail-modal__content h3 {
    font-size: 22px;
  }

  .con-detail-modal__content {
    padding: 22px 18px 20px;
  }

  .con-detail-modal__visual {
    height: 140px;
    min-height: 140px;
  }

  .con-detail-modal__panel {
    grid-template-rows: 140px auto;
  }
}

/* ==============================
   Motion Reduce
============================== */

@media (prefers-reduced-motion: reduce) {
  .con-visual__inner,
  .con-intro__img img,
  .con-insight__card img,
  .con-benefit__card,
  .con-check__content li,
  .con-check__content p,
  .con-detail-modal,
  .con-detail-modal__panel,
  .con-work__card,
  .con-work__img img {
    animation: none !important;
    transition: none !important;
  }
}
/* ==============================
   Consulting Work Section
   사람과 데이터, 두 축으로 운영합니다
============================== */

.con-work {
  padding: 104px 0 96px;
  background: #f5eee5;
  overflow: hidden;
}

.con-work__inner {
  width: var(--con-inner);
  max-width: 1040px;
  margin: 0 auto;
}

.con-work__head {
  text-align: center;
}

.con-work__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--con-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.con-work__label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--con-orange);
}

.con-work__head h3 {
  margin: 0;
  color: var(--con-black);
  font-size: 42px;
  line-height: 1.34;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.con-work__head h3 strong {
  display: block;
  color: var(--con-orange);
  font-size: 44px;
  font-weight: 800;
}

.con-work__card-wrap {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.con-work__card {
  overflow: hidden;
  border: 1px solid rgba(90, 58, 28, 0.18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(57, 38, 19, 0.05);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.con-work__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 121, 0, 0.34);
  box-shadow: 0 26px 58px rgba(57, 38, 19, 0.13);
}

.con-work__img {
  width: 100%;
  height: 185px;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.con-work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.con-work__card:hover .con-work__img img {
  transform: scale(1.055);
}

.con-work__text {
  padding: 28px 28px 30px;
}

.con-work__text h4 {
  margin: 0 0 24px;
  color: #050505;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.con-work__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.con-work__text li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 20px;
  color: #151515;
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.con-work__text li:last-child {
  margin-bottom: 0;
}

.con-work__text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--con-orange);
  font-size: 14px;
  font-weight: 800;
}

.con-work__text li strong {
  color: #050505;
  font-weight: 800;
}

.con-work__flow {
  margin: 44px auto 0;
  padding: 0;
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.con-work__flow li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #111;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.con-work__flow li:not(:last-child)::after {
  content: "→";
  margin-left: 4px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.con-work__flow li span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--con-orange);
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

/* ==============================
   Consulting Work Responsive
============================== */

@media screen and (max-width: 1024px) {
  .con-work {
    padding: 92px 0 90px;
  }

  .con-work__head h3 {
    font-size: 38px;
  }

  .con-work__head h3 strong {
    font-size: 40px;
  }

  .con-work__card-wrap {
    grid-template-columns: 1fr;
  }

  .con-work__img {
    height: 230px;
  }

  .con-work__flow {
    flex-wrap: wrap;
    row-gap: 14px;
  }
}

@media screen and (max-width: 768px) {
  .con-work {
    padding: 78px 0 76px;
  }

  .con-work__label {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .con-work__label::before {
    width: 26px;
  }

  .con-work__head h3 {
    font-size: 30px;
    line-height: 1.38;
  }

  .con-work__head h3 strong {
    font-size: 32px;
  }

  .con-work__card-wrap {
    margin-top: 42px;
    gap: 16px;
  }

  .con-work__img {
    height: 190px;
  }

  .con-work__text {
    padding: 26px 22px 28px;
  }

  .con-work__text h4 {
    font-size: 18px;
  }

  .con-work__text li {
    font-size: 14px;
  }

  .con-work__flow {
    width: fit-content;
    margin-top: 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .con-work__flow li {
    min-height: 36px;
  }

  .con-work__flow li:not(:last-child)::after {
    content: "↓";
    position: absolute;
    left: 13px;
    top: 32px;
    margin-left: 0;
    color: var(--con-orange);
  }

  .con-work__card:hover,
  .con-benefit__card:hover {
    transform: none;
  }

  .con-work__card:hover .con-work__img img {
    transform: none;
  }
}

@media screen and (max-width: 430px) {
  .con-work {
    padding: 70px 0 72px;
  }

  .con-work__head h3 {
    font-size: 26px;
  }

  .con-work__head h3 strong {
    font-size: 28px;
  }

  .con-work__img {
    height: 165px;
  }

  .con-work__text h4 {
    font-size: 17px;
  }

  .con-work__text li {
    font-size: 13.5px;
  }
}

/* ==============================
   Consulting Work Responsive Fix
   con-work 양옆 잘림 방지
============================== */

@media screen and (max-width: 1024px) {
  .con-work {
    padding: 92px 0 90px;
  }

  .con-work__inner {
    width: calc(100% - 80px);
    max-width: none;
  }

  .con-work__head h3 {
    font-size: 38px;
    line-height: 1.36;
  }

  .con-work__head h3 strong {
    font-size: 40px;
  }

  .con-work__card-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
  }

  .con-work__card {
    width: 100%;
  }

  .con-work__img {
    height: 230px;
  }

  .con-work__flow {
    width: 100%;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }
}

@media screen and (max-width: 768px) {
  .con-work {
    padding: 78px 0 76px;
  }

  .con-work__inner {
    width: calc(100% - 40px);
    max-width: none;
  }

  .con-work__label {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .con-work__label::before {
    width: 26px;
  }

  .con-work__head h3 {
    font-size: 30px;
    line-height: 1.38;
  }

  .con-work__head h3 strong {
    font-size: 32px;
  }

  .con-work__card-wrap {
    margin-top: 42px;
    gap: 16px;
  }

  .con-work__card {
    width: 100%;
    border-radius: 14px;
  }

  .con-work__img {
    height: 190px;
  }

  .con-work__text {
    padding: 26px 22px 28px;
  }

  .con-work__text h4 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
  }

  .con-work__text li {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.68;
  }

  .con-work__flow {
    width: 100%;
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .con-work__flow li {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 121, 0, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    justify-content: flex-start;
    font-size: 14px;
  }

  .con-work__flow li:not(:last-child)::after {
    content: none;
  }

  .con-work__flow li span {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .con-work__card:hover {
    transform: none;
  }

  .con-work__card:hover .con-work__img img {
    transform: none;
  }
}

@media screen and (max-width: 430px) {
  .con-work {
    padding: 70px 0 72px;
  }

  .con-work__inner {
    width: calc(100% - 32px);
  }

  .con-work__head h3 {
    font-size: 26px;
  }

  .con-work__head h3 strong {
    font-size: 28px;
  }

  .con-work__card-wrap {
    margin-top: 36px;
  }

  .con-work__img {
    height: 165px;
  }

  .con-work__text {
    padding: 24px 20px 26px;
  }

  .con-work__text h4 {
    font-size: 17px;
  }

  .con-work__text li {
    padding-left: 18px;
    font-size: 13.5px;
  }

  .con-work__flow li {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13.5px;
  }
}

@media screen and (max-width: 375px) {
  .con-work__inner {
    width: calc(100% - 28px);
  }

  .con-work__head h3 {
    font-size: 24px;
  }

  .con-work__head h3 strong {
    font-size: 26px;
  }

  .con-work__img {
    height: 150px;
  }

  .con-work__text {
    padding: 22px 18px 24px;
  }

  .con-work__text li {
    font-size: 13px;
  }

  .con-work__flow li {
    font-size: 13px;
  }
}