@charset "utf-8";

/*
Theme Name: Hypork Partners
Theme URI: https://hypork.ysmeat.kr/
Author: Hypork
Description: 하이포크 파트너스 전용 단일 페이지 WordPress 테마
Version: 1.0.0
Text Domain: hypork-partners
*/

:root {
  --container-page-max: 120rem;
  --container-content-max: 90rem;
  --container-wide-max: 100rem;
  --container-text-max: 64rem;
  --container-standard-shell-max: 105rem;
  --container-gutter-pc: 7.5rem;

  --type-hero-title-size: clamp(2.75rem, 3.1vw, 3.5rem);
  --type-section-title-size: 2.625rem;
  --type-section-title-line: 1.28;
  --type-section-label-size: 1.25rem;
  --type-card-title-size: 1.25rem;
  --type-body-size: 1rem;
  --type-body-line: 1.6;
  --type-button-size: 1.125rem;
  --type-caption-size: 0.875rem;
  --type-heading-tracking: -0.03em;
  --type-body-tracking: -0.015em;

  --space-2xs: 0.375rem;
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 1.875rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-section: 8rem;
  --sticky-form-height: 6rem;
}

/* #region RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", sans-serif;
  color: #222;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  word-break: keep-all;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
/* #endregion */

/* #region HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  box-shadow: none;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: #fff;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

.header-menu-btn {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

.header-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 3.5rem;
}

.header-logo,
.header-nav {
  min-width: 0;
}

.header-logo {
  flex: 0 0 auto;
  width: 14.0625rem;
  height: 5rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: transparent;
  color: #111;
  text-decoration: none;
}

.header-logo-mark {
  flex: 0 0 5rem;
  background: url("images/logo.png") left center / auto 100% no-repeat;
}

.header-logo-copy {
  min-width: 0;
  padding: 0 0.875rem;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  white-space: nowrap;
}

.header-logo-title,
.header-logo-company {
  display: block;
  line-height: 1;
}

.header-logo-title {
  font: normal normal 800 1.125rem/1 Pretendard;
  letter-spacing: 0.035em;
  color: #fff;
}

.header-logo-company {
  font: normal normal 500 0.8125rem/1 Pretendard;
  letter-spacing: 0.055em;
  color: rgba(255, 255, 255, 0.78);
}

.header-logo-title,
.header-logo-company {
  transition: color 0.25s ease;
}

.header.is-scrolled .header-logo-title {
  color: #111;
}

.header.is-scrolled .header-logo-company {
  color: #6b6b6b;
}

.nav-text {
  font: var(--unnamed-font-style-normal) normal bold 1.125rem/1.3125rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal bold 1.125rem/1.3125rem Pretendard;
  letter-spacing: -0.01125rem;
  color: #fff;
  opacity: 1;
  white-space: nowrap;
  overflow: visible;
  transition: color 0.25s ease;
}

.header.is-scrolled .nav-text {
  color: #212121;
}

.nav-btn {
  padding: 0 1.875rem;
  background: #000;
  display: flex;
  border-radius: 0.625rem;
  min-width: 9.125rem;
  width: max-content;
  height: 3.3125rem;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.header:not(.is-scrolled) .nav-btn {
  color: #fff;
  background: #e21f26;
}

.header.is-scrolled .nav-btn {
  color: #fff;
  background: #000;
}

.nav-btn a {
  white-space: nowrap;
}

.nav-btn:hover {
  background: #e21f26;
}

.header-nav-list {
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 2.8125rem;
  justify-content: center;
  align-items: center;
}

.header-nav-list > li,
.header-nav-list > a {
  flex: 0 0 auto;
}

.header-nav-list li a {
  position: relative;
  display: inline-block;
}

.header-nav-list li a::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 0.125rem;
  background: #cc0000;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.header-nav-list li a:hover {
  color: #cc0000;
}

.header-nav-list li a:hover::after {
  transform: scaleX(1);
}

/* Main */
.hero-wrap {
  margin-top: 0;
  padding: 0;
  height: 100vh;
  height: 100svh;
  min-height: 43.75rem;
}

.hero {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  overflow: hidden;
  background: #000;
}

.hero-bg-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg video,
.hero-bg-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  border-radius: 0;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 0) 65%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding-left: 6.25rem;
}

.hero .title-wrap {
  gap: 0;
}

.hero .thin-title-white {
  position: relative;
  display: inline-block;
  isolation: isolate;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.hero .thin-title-white::before {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: 0.08em;
  z-index: -1;
  height: 0.55em;
  border-radius: 0.12em;
  background: rgba(226, 31, 38, 0.38);
  transform: rotate(-0.7deg);
  pointer-events: none;
}

.hero .bold-title-white {
  font-size: var(--type-hero-title-size);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.hero .sub-title {
  margin: 1.75rem 0 2rem;
}

section[id] {
  scroll-margin-top: 5rem;
}
/* #endregion header */

/* #region sticky-form */
.sticky-form {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: 6rem;
  padding: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e50019;
  box-shadow: 0 -0.3125rem 0.9375rem #0000000f;
}

.sticky-form > .sticky-form-wrap {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0 clamp(2.5rem, 3vw, 4rem);
  width: 100%;
  max-width: 120rem;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  /* gap: 1.875rem; */
  overflow: hidden;
  white-space: nowrap;
}

.sticky-form-wrap-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3.125rem;
  height: 100%;
}

form.sticky-form-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-form-field {
  width: 12.6875rem;
  height: 3.125rem;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.3125rem;
  padding: 0.9375rem 0.875rem;
  box-sizing: border-box;

  font: normal normal 600 1rem/1.5625rem Pretendard;
  letter-spacing: -0.03rem;
  color: #000;
  opacity: 1;
}

.sticky-form-field::placeholder {
  color: #b2b2b2;
}

.sticky-form-select {
  appearance: none;
  background-image: none;

  text-align: left;
  font: normal normal 600 1rem Pretendard;
  letter-spacing: -0.03rem;
  /* color: #111; */
  opacity: 1;
}

.sticky-form-select:invalid {
  color: #b2b2b2;
}

.sticky-form-select option:disabled {
  color: #000;
}

.sticky-form-btn {
  height: 3.125rem;
  padding: 0 3.3125rem;
  background: #212121 0% 0% no-repeat padding-box;
  border-radius: 0.3125rem;
  opacity: 1;
  text-align: center;
  font: normal normal bold 1rem Pretendard;
  color: #ffffff;
  opacity: 1;
  white-space: nowrap;
}
/* Radio 버튼 */

/* sticky form radio (필수/선택) */
.sticky-form-radio {
  /* width: 100%; */
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding-left: 1.875rem;
}

.sticky-form-radio-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font: normal normal 500 1rem/1.5625rem Pretendard;
  letter-spacing: -0.03rem;
  color: #ffffff;
}

.sticky-form-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  white-space: nowrap;
}

.sticky-form-radio-dot {
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid #ffffff;
  border-radius: 3.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sticky-form-radio-dot::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3.125rem;
  background: #ffffff;
  opacity: 1;
  transform: scale(0);
  transition: transform 0.15s ease;
}

.sticky-form-radio-input:checked + .sticky-form-radio-dot::after {
  transform: scale(1);
}

.sticky-form-radio-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-form-radio-text {
  white-space: nowrap;
}

/* #endregion sticky-form */

/* #region SECTION 2 */
.section2 {
  margin-top: 0;
}

.section2 > .wrap {
  max-width: var(--container-wide-max);
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}

.stats-bg-text {
  width: 100%;
  height: 12rem;
  position: relative;
  margin-top: -2.5rem;
}

.stats-bg-text-inner {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.stats-bg-text-image {
  width: 55.019rem;
  height: 15.022rem;
  display: block;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}

.stats-item {
  display: flex;
  flex-direction: column;
  height: 19rem;
  justify-content: space-between;
  text-align: left;
  padding: 2rem 1.5rem 2.25rem;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow:
    inset 0.4375rem 0.3125rem 0.8125rem #ffffff29,
    0.9375rem 0.9375rem 1.875rem #0000000f;
  border: 0.0625rem solid #f7f7f7;
  border-radius: 1.5rem;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    background 0.28s ease;
  cursor: default;
  overflow: hidden;
}

.stats-item:hover {
  background: #cc0000;
  transform: translateY(-0.9375rem);
  box-shadow: 0 1rem 2.5rem rgba(204, 0, 0, 0.22);
}
/* stats item wrap 페이드인 효과 */
.stats-item-wrap {
  cursor: default;
  opacity: 0;
  transform: translateY(-10%);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.stats-item-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-item-wrap:nth-child(1) {
  transition-delay: 0s;
}
.stats-item-wrap:nth-child(2) {
  transition-delay: 0.15s;
}
.stats-item-wrap:nth-child(3) {
  transition-delay: 0.3s;
}
.stats-item-wrap:nth-child(4) {
  transition-delay: 0.45s;
}

.stats-item:hover .stats-number,
.stats-item:hover .stats-unit,
.stats-item:hover .stats-label {
  color: #fff;
}

.stats-icon-wrap {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0;
}

.stats-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stats-item-wrap:first-child .stats-icon {
  transform: scale(1.35);
  transform-origin: center;
}

.stats-item-wrap:first-child .stats-icon-hover {
  filter: brightness(0) invert(1);
}

.stats-icon-hover {
  display: none;
}

.stats-item:hover .stats-icon-default {
  display: none;
}

.stats-item:hover .stats-icon-hover {
  display: block;
}

.stats-bottom {
  margin-top: 5rem;
}

.stats-label {
  font: var(--unnamed-font-style-normal) normal bold 1.25rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal bold 1.25rem Pretendard;
  letter-spacing: -0.0375rem;
  color: #d11118;
  text-transform: capitalize;
  opacity: 1;
  line-height: 1.4;
}

.stats-number {
  font: var(--unnamed-font-style-normal) normal bold 3.125rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal bold 3.125rem Pretendard;
  letter-spacing: -0.15625rem;
  color: #000000;
  opacity: 1;
}

.stats-unit {
  font: var(--unnamed-font-style-normal) normal 800 1.75rem/5.8125rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 800 1.75rem/1.1 Pretendard;
  letter-spacing: -0.0875rem;
  color: #000000;
  opacity: 1;
  margin-left: 0.5rem;
}

.stats-number-copy {
  font-size: clamp(2.125rem, 2.6vw, 2.75rem);
  line-height: 1.2;
  white-space: normal;
}

.stats-number-copy .stats-unit {
  font-size: clamp(1.25rem, 1.45vw, 1.5rem);
  line-height: inherit;
  white-space: nowrap;
}

/* Reference-style performance band: retain the existing metrics and markers,
   while presenting them as one continuous red information rail. */
.stats-band > .wrap {
  max-width: none;
  padding: 0;
}

.stats-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #df111b;
}

.stats-band .stats-item {
  min-height: clamp(9rem, 10vw, 10.125rem);
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.875rem, 1.5vw, 1.5rem);
  padding: clamp(1.5rem, 2vw, 2.25rem) clamp(1.25rem, 2.8vw, 3.625rem);
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.stats-band .stats-item-wrap + .stats-item-wrap .stats-item {
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.3);
}

.stats-band .stats-item:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -0.25rem 0 rgba(255, 255, 255, 0.68);
  transform: none;
}

.stats-band .stats-icon-wrap {
  flex: 0 0 auto;
  width: clamp(3.25rem, 4vw, 4.25rem);
  height: clamp(3.25rem, 4vw, 4.25rem);
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: none;
}

.stats-band .stats-icon,
.stats-band .stats-item-wrap:first-child .stats-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: none;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  z-index: 1;
}

.stats-band .stats-item-wrap:first-child .stats-icon-hover {
  filter: none;
}

.stats-band .stats-icon-default {
  display: block;
  opacity: 1;
}

.stats-band .stats-icon-hover {
  display: block;
  opacity: 0;
}

.stats-band .stats-item-wrap:first-child .stats-icon-hover {
  opacity: 0;
}

.stats-band .stats-item:hover .stats-icon-default {
  display: block;
  opacity: 0;
  transform: scale(0.92);
}

.stats-band .stats-item:hover .stats-icon-hover {
  display: block;
  opacity: 1;
  transform: scale(1.04);
}

.stats-band .stats-item:hover .stats-icon-wrap {
  border-color: transparent;
  background: transparent;
}

.stats-band .stats-bottom {
  min-width: 0;
  margin-top: 0;
}

.stats-band .stats-label {
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.stats-band .stats-number,
.stats-band .stats-unit,
.stats-band .stats-item:hover .stats-number,
.stats-band .stats-item:hover .stats-unit,
.stats-band .stats-item:hover .stats-label {
  color: #fff;
}

.stats-band .stats-number {
  font-size: clamp(2rem, 2.55vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.stats-band .stats-unit {
  margin-left: 0.35rem;
  font-size: clamp(1rem, 1.3vw, 1.375rem);
  line-height: inherit;
  letter-spacing: -0.05em;
}

.stats-band .stats-number-copy {
  font-size: clamp(1.65rem, 2.15vw, 2.3rem);
  white-space: normal;
}

.stats-band .stats-number-copy .stats-unit {
  font-size: clamp(0.9375rem, 1.15vw, 1.1875rem);
}

.stats-band .stats-bg-text {
  display: none;
}

/* #endregion SECTION 2 */

/* #region SECTION 2.5: OFFICIAL PARTNER */
.official-partner {
  position: relative;
  padding: clamp(6.5rem, 8vw, 8.5rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(226, 31, 38, 0.18), transparent 28rem),
    linear-gradient(135deg, #0c0c0d 0%, #181819 58%, #101011 100%);
  overflow: hidden;
}

.official-partner::after {
  content: "PARTNER";
  position: absolute;
  right: -0.05em;
  bottom: -0.22em;
  font: normal normal 900 clamp(8rem, 17vw, 18rem)/1 Montserrat;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.official-partner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-content-max);
}

.official-partner-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.official-partner-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 50rem;
  min-width: 0;
  text-align: center;
}

.official-partner-kicker {
  margin-bottom: 1.25rem;
  font: normal normal 800 1rem/1.2 Montserrat;
  letter-spacing: 0.08em;
  color: #ee242b;
  text-align: center;
}

.official-partner-title {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  font: normal normal 600 clamp(2.5rem, 3.35vw, 3.5rem)/1.22 Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #fff;
  text-align: center;
  word-break: keep-all;
}

.official-partner-title-line {
  display: block;
}

.official-partner-title strong {
  font-weight: 800;
}

.official-partner-lead {
  max-width: 46rem;
  margin: 2rem auto 0;
  font: normal normal 400 clamp(1rem, 1.1vw, 1.125rem)/1.8 Pretendard;
  letter-spacing: var(--type-body-tracking);
  color: #d2d2d4;
  text-align: center;
  word-break: keep-all;
  text-wrap: balance;
}

.official-partner-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2rem;
}

.official-partner-services li {
  position: relative;
  padding: 0 1.125rem;
  font: normal normal 700 1rem/1.4 Pretendard;
  color: #fff;
}

.official-partner-services li:first-child {
  padding-left: 0;
}

.official-partner-services li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.0625rem;
  height: 0.875rem;
  background: #4a4a4d;
  transform: translateY(-50%);
}

.official-partner-brand {
  width: min(100%, 34rem);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.official-partner-cert {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.13);
  font: normal normal 700 0.75rem/1.3 Montserrat;
  letter-spacing: 0.12em;
  color: #ee242b;
}

.official-partner-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 0;
  padding: 0;
}

.official-partner-hypork-logo {
  width: 9rem;
  height: 9rem;
  border-radius: 1rem;
  object-fit: cover;
  object-position: left center;
}

.official-partner-x {
  flex: 0 0 auto;
  font: normal normal 300 1.75rem/1 Montserrat;
  color: rgba(255, 255, 255, 0.55);
}

.official-partner-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 20rem);
  height: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.official-partner-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.official-partner-brand-note {
  display: inline-block;
  margin-top: 2rem;
  font: normal normal 500 0.9375rem/1.5 Pretendard;
  letter-spacing: var(--type-body-tracking);
  color: #b9b9bc;
  text-align: center;
}

.official-partner-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(4rem, 6vw, 6rem);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.official-partner-proof-item {
  min-width: 0;
  padding: 2rem clamp(1.25rem, 2vw, 2.25rem);
}

.official-partner-proof-item + .official-partner-proof-item {
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.official-partner-proof-value {
  display: block;
  margin-bottom: 0.625rem;
  font: normal normal 800 clamp(1.25rem, 1.55vw, 1.5rem)/1.25 Pretendard;
  letter-spacing: -0.03em;
  color: #fff;
}

.official-partner-proof-item p {
  font: normal normal 400 0.9375rem/1.65 Pretendard;
  letter-spacing: var(--type-body-tracking);
  color: #a9a9ad;
  word-break: keep-all;
}

.official-partner-proof-unit {
  white-space: nowrap;
}

.official-partner-promise {
  max-width: 46rem;
  margin: 2rem auto 0;
  padding-left: 0;
  border-left: 0;
  font: normal normal 600 clamp(1rem, 1.1vw, 1.125rem)/1.65 Pretendard;
  letter-spacing: var(--type-body-tracking);
  color: #ececee;
  text-align: center;
  word-break: keep-all;
}
/* #endregion SECTION 2.5: OFFICIAL PARTNER */

/* #region SECTION 3: MEDIA / VIDEO */
.media {
  position: relative;
  height: auto;
  padding: 7rem 0 8rem;
  background: #fff;
  overflow: hidden;
}

.media-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: auto;
  padding: 0;
}

.media-left {
  width: 100%;
  margin: 0 0 3.5rem;
  text-align: center;
}

.media-left .thin-title-black,
.media-left .bold-title-black {
  display: block;
  text-align: center;
}

.media-nav {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  margin: 0;
  pointer-events: none;
}

.media-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 21;
  width: 3.5rem;
  height: 3.5rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #ffffff;
  border: 0.0625rem solid #e21f26;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
}

.media-nav-prev {
  left: clamp(0.75rem, 2.5vw, 3rem);
}

.media-nav-next {
  right: clamp(0.75rem, 2.5vw, 3rem);
}

.media-nav-btn:hover {
  background: #ffffff;
}

.media-nav-icon {
  display: none;
}

.media-nav-btn::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #e21f26;
  border-right: 0.125rem solid #e21f26;
}

.media-nav-prev::before {
  transform: rotate(-135deg);
  margin-left: 0.1875rem;
}

.media-nav-next::before {
  transform: rotate(45deg);
  margin-right: 0.1875rem;
}

.media-slider-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
}

.media-swiper {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  overflow: hidden;
}

.media-swiper .swiper-wrapper {
  align-items: center;
}

.media-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.media-swiper .swiper-slide-active {
  opacity: 1;
}

.media-swiper .swiper-slide .media-card {
  transform: scale(0.9);
  transform-origin: center center;
  transition:
    transform 0.4s ease,
    margin 0.4s ease;
}

.media-swiper .swiper-slide-active .media-card {
  transform: scale(1);
  margin-left: 0;
  margin-right: 0;
}

.media-card {
  position: relative;
  width: 100%;
  max-width: 27.5rem;
  height: 48.875rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.media-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.media-card:hover .media-card-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.media-card-overlay iframe {
  /* pointer-events: none; */
}

.media-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.media-card-info p {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
/* #endregion SECTION 3: MEDIA / VIDEO */

/* #region SECTION 4: REAL REVIEW */
.review {
  height: auto;
  min-height: 0;
  margin: 0 auto;
  padding: var(--space-section) 0;
  display: block;
  background: #fef9f9;
  overflow: hidden;
}

.review-wrap {
  width: 100%;
  max-width: var(--container-page-max);
  margin: 0 auto;
  padding: 0 15rem;
  text-align: center;
}

.review-title-wrap {
  height: 6.25rem;
  margin-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}

.review-head.section-head.section-head-left {
  align-items: center;
  text-align: center;
}

.review-title-light {
  font: var(--unnamed-font-style-normal) normal normal 2.375rem/3.375rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 300 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #000000;
}

.review-title-bold {
  font: var(--unnamed-font-style-normal) normal 800 2.375rem/3.375rem
    var(--unnamed-font-family-pretendard);
  align-self: center;
  text-align: center;
  font: normal normal 800 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #000000;
}

.review-label-bottoom {
  margin-bottom: 1.25rem;
}

.review-slider-area {
  width: 100%;
  overflow: hidden;
  padding-left: 0;
}

.review-swiper {
  width: 100%;
  max-width: var(--container-content-max);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 3%, #000 8%, #000 92%, rgba(0, 0, 0, 0.7) 97%, rgba(0, 0, 0, 0.4) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 3%, #000 8%, #000 92%, rgba(0, 0, 0, 0.7) 97%, rgba(0, 0, 0, 0.4) 100%);
}

.review-swiper .swiper-wrapper {
  margin-left: 0;
}

.review-swiper .swiper-slide {
  width: 20.9375rem;
}

.review-card {
  position: relative;
  width: 20.9375rem;
  height: 28.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}

.review-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.review-card:hover .review-card-image {
  transform: scale(1.05);
}

.review-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 10rem;
  padding: 1.5rem 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(12, 12, 12, 0.86);
  color: #fff;
}

.review-quote {
  font: var(--unnamed-font-style-normal) normal bold 1.5rem/2rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal bold 1.5rem/2rem Pretendard;
  letter-spacing: -0.045rem;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 0.9375rem;
}

.review-store {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

.review-store-name {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    1rem/1.375rem var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 600 1rem/1.375rem Pretendard;
  letter-spacing: -0.03rem;
  color: #ffffff;
  opacity: 1;
}

.review-store-loc {
  font: var(--unnamed-font-style-normal) normal 300 1rem/1.375rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 300 1rem/1.375rem Pretendard;
  letter-spacing: -0.03rem;
  color: #ffffff;
  opacity: 1;
}

.review-logos {
  --review-logo-width: 10.5rem;
  --review-logo-height: 4rem;
  --review-logo-gap: 0.75rem;
  --review-logo-duration: 40s;
  margin-top: 4rem;
  width: 100%;
  overflow: hidden;
}

.review-logos-track {
  display: flex;
  flex-direction: column;
  gap: var(--review-logo-gap);
  width: 100%;
  overflow: hidden;
}

@keyframes review-logos-ticker-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes review-logos-ticker-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.review-logos-grid-1,
.review-logos-grid-2 {
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  gap: 0;
  width: max-content;
  margin: 0;
  overflow: visible;
  will-change: transform;
}

.review-logos-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--review-logo-gap);
  padding-right: var(--review-logo-gap);
}

.review-logos.is-ticker-ready .review-logos-grid-1 {
  animation: review-logos-ticker-left var(--review-logo-duration) linear infinite;
  animation-play-state: running;
}

.review-logos.is-ticker-ready .review-logos-grid-2 {
  animation: review-logos-ticker-right var(--review-logo-duration) linear infinite;
  animation-play-state: running;
}

.review-logo-item {
  flex: 0 0 var(--review-logo-width);
  width: var(--review-logo-width);
  height: var(--review-logo-height);
  padding: 0.625rem 1rem;
  box-sizing: border-box;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 0.625rem;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* #endregion SECTION 4: REAL REVIEW */

/* #region SECTION 5: WHY HYPORK */
.why {
  min-height: 58rem;
  padding: 7.5rem 0;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.why-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.why-title-wrap {
  height: auto;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.35rem;
  font: var(--unnamed-font-style-normal) normal 300 2.625rem/3.625rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 300 clamp(2rem, 2.2vw, 2.625rem)/1.38 Pretendard;
  letter-spacing: -0.07875rem;
  color: #ffffff;
}

.why-title-mb {
  display: none;
}

.why-head {
  width: 100%;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.375rem;
  width: 100%;
  max-width: none;
  padding: 0.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  margin: 0;
}

.why-label {
  text-align: left;
  font: var(--unnamed-font-style-normal) normal bold 1.25rem/1.5rem Montserrat;
  color: var(--unnamed-color-ffffff);
  font: normal normal bold 1.25rem/1.5rem Montserrat;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: capitalize;
  opacity: 1;
  margin-bottom: 1.875rem;
}

.why-bold-title {
  font: var(--unnamed-font-style-normal) normal 800 2.625rem/3.625rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 800 clamp(2rem, 2.2vw, 2.625rem)/1.38 Pretendard;
  letter-spacing: -0.07875rem;
  color: #ffffff;
}

.why-tab {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  padding: 1rem clamp(0.25rem, 0.5vw, 0.75rem);
  border-radius: 0.75rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    1.125rem var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 600 clamp(0.75rem, 1vw, 1.125rem)/1.25 Pretendard;
  letter-spacing: -0.03375rem;
  opacity: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.why-tab-active {
  background: #fff;
  color: #e21f26;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.25);
}

.why-tab:not(.why-tab-active):hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.why-tab:focus-visible {
  outline: 0.125rem solid #ffffff;
  outline-offset: 0.125rem;
}

.why-content {
  min-width: 0;
  min-height: 42rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: 0.75rem;
  background: #111111;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 1.75rem;
  box-shadow: 0 1.75rem 3.75rem rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.why-image-col {
  background: #000;
  border-radius: 1.125rem;
  overflow: hidden;
  flex: 0 0 21rem;
  width: 100%;
  height: 21rem;
  position: relative;
  align-self: stretch;
  opacity: 0;
  transform: translateY(-2.5rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.why-image-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-image {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* 데스크톱에서는 원본 그래픽(705x450)을 자르지 않고 크게 표시 */
@media (min-width: 769px) {
  .why-image-col {
    flex-basis: auto;
    height: auto;
    aspect-ratio: 705 / 450;
  }

  .why-image {
    object-fit: contain;
  }
}

.why-image-active {
  display: block;
}

.why-card-col {
  min-height: 19.5rem;
  background: #111111;
  border-radius: 0 0 1.125rem 1.125rem;
  padding: 2.25rem 2.5rem 2.5rem;
  box-shadow: none;
  color: #ffffff;
  position: relative;
  flex: 1 1 auto;
  opacity: 0;
  transform: translateY(-2.5rem);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
}

.why-card-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card {
  display: none;
  flex-direction: column;
  min-height: 100%;
}

.why-card-active {
  display: flex;
  animation: whyCardFadeIn 0.35s ease forwards;
}

/* PC 카드 높이는 활성 콘텐츠에 맞추고, 짧은 카드의 불필요한 하단 여백을 없앤다. */
@media (min-width: 769px) {
  .why-content {
    min-height: 0;
  }

  .why-card-col {
    min-height: 0;
    flex: 0 0 auto;
  }

  .why-card {
    min-height: 0;
  }
}

.why-card-label {
  font: var(--unnamed-font-style-normal) normal bold 1.25rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal bold 1.25rem Pretendard;
  letter-spacing: -0.0375rem;
  color: #e21f26;
  opacity: 1;
  margin-bottom: 0.75rem;
}

.why-card-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}

/* 설명문은 화면 폭에 맞춰 자연스럽게 줄바꿈 */
.why-card-desc-mb {
  display: none;
}

.why-card-desc-process-break {
  display: none;
}

.why-card-title {
  font: var(--unnamed-font-style-normal) normal normal 2.25rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal normal 2rem/2.65rem Pretendard;
  letter-spacing: -0.0675rem;
  color: #ffffff;
}

.why-card-title b {
  font: var(--unnamed-font-style-normal) normal 800 2.25rem/3rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 800 2rem/2.65rem Pretendard;
  letter-spacing: -0.0675rem;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .why-card-title {
    font-size: clamp(1.5rem, 2.15vw, 2rem);
    white-space: nowrap;
  }

  .why-card-title br {
    display: none;
  }

  .why-card-title b {
    font-size: inherit;
  }
}

.why-card-divider {
  border: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.24);
  margin: 0;
  height: 0;
  padding: 0;
}

/* #endregion SECTION 5: WHY HYPORK */

/* #region SECTION 6: PRIDE VIDEO */
.sticky-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
}

.sticky-hero-sticky {
  position: relative;
  top: auto;
  min-height: 0;
  padding: 6rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-hero-bg {
  position: absolute;
  inset: 0;
}

.sticky-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-hero-layer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.sticky-panel {
  position: relative;
  inset: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  opacity: 0;
  transform: translateY(3.75rem);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.sticky-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sitkck badage 페이드 인 효과 */
.sticky-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 624.9375rem;
  background: #e21f26;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(1.875rem);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.sticky-panel.is-visible .sticky-badge-pill {
  opacity: 1;
  transform: translateY(0);
}

.sticky-badge-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-badge-text {
  font: var(--unnamed-font-style-normal) normal bold 1rem Montserrat;
  color: var(--unnamed-color-ffffff);
  text-align: right;
  font: normal normal bold 1rem Montserrat;
  letter-spacing: -0.03rem;
  color: #ffffff;
  text-transform: capitalize;
  opacity: 1;
}

.sticky-badge-icon {
  width: 1.3rem;
  object-fit: contain;
}

/* Sitkck Title 페이드 인 효과 */
.sticky-title {
  font-size: 2.3rem;
  line-height: 1.4;
  font-weight: 400;
  opacity: 0;
  transform: translateY(1.875rem);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

.sticky-panel.is-visible .sticky-title {
  opacity: 1;
  transform: translateY(0);
}

.sticky-title strong {
  font-weight: 800;
}

.sticky-panel-video .sticky-video-card {
  margin-top: 2.5rem;
}

/* Sitkck video 페이드 인 효과 */
.sticky-video-card {
  position: relative;
  width: min(64rem, 100%);
  max-width: 64rem;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  background: black;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(3.75rem);
  transition:
    opacity 0.8s ease 0.4s,
    transform 0.8s ease 0.4s;
}

.sticky-panel.is-visible .sticky-video-card {
  opacity: 1;
  transform: translateY(0);
}

.sticky-video-card-body {
  width: 100%;
  height: 100%;
}

/* SECTION 7: HYPORK BLACK COMPARISON */
.black {
  padding: 7.5rem 0 8rem;
  background-image: url("images/section7/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.black-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.375rem;
  border-radius: 624.9375rem;
  margin-top: 0.8rem;
  margin-bottom: 3.5rem;
  background: #3b3a39;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.35);
}

.black-tab {
  border: none;
  background: transparent;
  border-radius: 624.9375rem;
  padding: 0.5rem 1.75rem;
  color: #b1b0b0;
  cursor: pointer;
}

.black-tab-active {
  background: #fff;
  color: #e21f25;
}

/* Hypork Black 패널 전환 */
.black-panel {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(-2.5rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.black-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.black-panel-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 1;
  transform: translateY(0);
}

.black-panel-active.black-tab-motion {
  animation: blackPanelDropIn 0.7s ease;
}

.black-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.black-panel img.black-panel-image-narrow {
  width: 60%;
}

.black-panel img.black-panel-tab3 {
  width: 60%;
}

/* 맛의 레이어: 생성 비주얼과 실제 텍스트를 함께 사용하는 에디토리얼 패널 */
.black-panel-layer.black-panel-active {
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 5rem);
  padding: clamp(1.5rem, 3.2vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(237, 28, 36, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(9, 9, 9, 0.94), rgba(24, 22, 21, 0.78));
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}

.black-layer-intro {
  align-self: center;
  min-width: 0;
}

.black-layer-kicker {
  margin: 0 0 1.25rem;
  color: #e21f25;
  font-family: Montserrat, Pretendard, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
}

.black-layer-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 1.12;
  word-break: keep-all;
}

.black-layer-title strong {
  color: #fff;
  font-weight: 800;
}

.black-layer-summary {
  margin: 2rem 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.65;
  word-break: keep-all;
}

.black-layer-copy {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.75;
  word-break: keep-all;
}

.black-layer-visual-wrap {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.black-layer-visual-frame {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  background: #080808;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.42);
}

.black-layer-visual-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.black-panel img.black-layer-visual {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.black-layer-callouts {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(1.5rem, 2.6vw, 2.75rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.black-layer-callout {
  --layer-accent: #e9b28d;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.625rem;
  min-width: 0;
  min-height: 0;
  padding: 0.8rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.black-layer-callout:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.black-layer-callout:nth-child(2) {
  --layer-accent: #e4d2c4;
}

.black-layer-callout:nth-child(3) {
  --layer-accent: #cf5e50;
}

.black-layer-callout:nth-child(4) {
  --layer-accent: #b5363e;
}

.black-layer-callout:nth-child(5) {
  --layer-accent: #d77e55;
}

.black-layer-callout-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid var(--layer-accent);
  border-radius: 50%;
  color: var(--layer-accent);
  font-family: Montserrat, Pretendard, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.black-layer-callout h4 {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  word-break: keep-all;
}

.black-layer-callout p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.45;
  word-break: keep-all;
}

.black-panel-arrow {
  display: flex;
  justify-content: center;
}

.black-panel-arrow img {
  width: auto;
  height: auto;
}

@keyframes blackPanelDropIn {
  from {
    opacity: 0;
    transform: translateY(-2.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes welfarePanelDropIn {
  from {
    opacity: 0;
    transform: translateY(-2.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* #endregion SECTION 7: HYPORK BLACK COMPARISON */

/* #region SECTION 8: HYPORK ANIMAL WELFARE */
.welfare {
  position: relative;
  padding: 7rem 0rem;
  overflow: hidden;
  background-color: #cadcaf;
}

.welfare-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.welfare-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1);
  opacity: 0.6;
}

.welfare-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.welfare-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  border-radius: 624.9375rem;
  background: #1f3f00;
  margin-top: 1rem;
}

.welfare-tab {
  border: none;
  background: transparent;
  border-radius: 624.9375rem;
  padding: 0.5rem 1.75rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.welfare-tab-active {
  background-color: #ffffff;
  color: #1f3f00;
}

.welfare-panels {
  position: relative;
}

/* 동물복지 섹션 페이드인 효과 */
.welfare-panel {
  display: none;
  height: 100%;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(-2.5rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.welfare-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.welfare-panel-active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
}

.welfare-panel-active.welfare-tab-motion {
  animation: welfarePanelDropIn 0.7s ease;
}

/* 패널1: 카드 + 하단 통계 이미지 */
.welfare-impact {
  width: 100%;
  border-radius: 1.5rem;

  padding: 2.25rem 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* 패널1 카드 3개 */
.welfare-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.welfare-card {
  background: #ffffff;
  border-radius: 0.875rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
  overflow: hidden;
  text-align: left;
}

.welfare-card-head {
  background: #00451e;
  color: #fff;
  padding: 0.3rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
}

.welfare-card-arrow {
  object-fit: contain;
}

.welfare-card-title {
  font-family: "Pretendard", sans-serif;
  font-size: var(--type-card-title-size);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: var(--type-heading-tracking);
}

.welfare-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  padding-left: 1.3rem;
  gap: 2.5rem;
}

.welfare-card-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  gap: 0.8rem;
}

.welfare-card-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 2.5rem;
  padding-left: 1rem;
}

.welfare-card-icon {
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.75rem;
  display: flex;
}

.welfare-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.welfare-card-text b{
  color: #1F3F00;
}

.welfare-impact-stats {
  margin-top: 0.5rem;
  border-radius: 1.5rem;
  border: 0.0625rem solid rgba(7, 60, 33, 0.18);
  background: #1a280f20;
  box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.welfare-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  padding: 3.5rem 3rem;
}

.welfare-stats-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.welfare-stats-chart {
  width: 27.5rem;
  height: 13.677rem;
  display: block;
  object-fit: cover;
}

.welfare-stats-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.welfare-stats-icon {
  width: 1.5rem;
}

.welfare-stats-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.welfare-stats-text {
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: #1f3f00;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

.welfare-stats-text strong {
  font-weight: 800;
}

.welfare-stats-source {
  font-size: 0.9375rem;
  color: #555555;
}

/* 패널2: 인증 라인 */
.welfare-cert {
  background: #ffffff;
  border-radius: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
  text-align: center;
  padding: 3rem 4rem;
  width: 73.125rem;
  height: 100%;
}

.welfare-cert-inner-flush {
  padding: 0;
  width: 73.125rem;
  height: 41.125rem;
  margin-top: 1.5rem;
}

.welfare-cert-lead {
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: #1f3f00;
  margin-bottom: 2.8rem;
}

.welfare-cert-lead strong {
  font-weight: 800;
}

.welfare-cert-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.welfare-cert-steps-spaced {
  padding: 0.75rem 2.5rem;
}

.welfare-cert-image {
  max-width: 57.75rem;
  height: auto;
  display: block;
}

/* #endregion SECTION 8: HYPORK ANIMAL WELFARE */

/* #region SECTION 9: OUR PRODUCT TABS */
.product {
  padding: 7.5rem 0 8.75rem;
  background: #fff;
}

.product-spec-section {
  padding: 7.5rem 0 8.75rem;
  background: #f7f8fa;
}

.product-spec-section-head {
  margin-bottom: 2.5rem;
}

.product-spec-layout {
  width: 100%;
}

.product-title-label {
  margin-bottom: 1.875rem;
}

.title-wrap.product-title-wrap {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2xs);
}

.product-thin-title {
  font: var(--unnamed-font-style-normal) normal 300 2.625rem/3.625rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 300 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #212121;
}

.product-bold-title {
  font: var(--unnamed-font-style-normal) normal 800 2.625rem/3.625rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 800 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #212121;
}

.product-head {
  margin-bottom: 2.3125rem;
}

.product-tabs-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 624.9375rem;
  background: #ffffff;
  border: 0.125rem solid #f0f0f0;
  box-shadow: 0 0.5rem 1.75rem rgba(0, 0, 0, 0.12);
  margin: 0 auto 3.25rem;
}

.product-tab {
  border: none;
  background: transparent;
  border-radius: 1.6875rem;
  padding: 0.9375rem 1.875rem;
  height: 3.1875rem;
  color: #a5a5a5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-tab-active {
  background: #e21f26;
  color: #ffffff;
}

.product-card {
  border-radius: 1.75rem;
  background: #ffffff;
  border: 0.125rem solid #f0f0f0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);

  width: 100%;
  max-width: var(--container-content-max);
  height: 36.25rem;
  display: flex;
}

.product-card-nav {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-card-nav > .product-card-arrow {
  display: none;
}

.product-panel {
  display: none;
  width: 100%;
  height: 36.25rem;
}

.product-panel-active {
  display: flex;
  height: 100%;
  width: 100%;
}

/* SECTION 9: Our Product - 카드 내부 레이아웃 (이미지 + 텍스트) */
.product-card-row {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1rem;
}

.product-card-row-image {
  border-radius: 1.75rem;
  overflow: hidden;
}

.product-card-row-image img {
  width: 34.375rem;
  height: 33.125rem;
  object-fit: cover;
  display: block;
}

.product-card-row-content {
  margin-top: 1.8125rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* SECTION 9: Our Product - 스펙서 탭 전용 레이아웃 */
.product-spec {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 36.25rem;
  gap: 1.875rem;
  padding: 1.875rem;
}

/* 공통사항 헤더 */
.product-spec-head {
  display: flex;
  align-items: stretch;
  gap: 0.9375rem;
  background: #f9f9f9;
  border-radius: 0.875rem;
  padding: 0.625rem;
  flex-shrink: 0;
  height: 6.125rem;
}

.product-spec-head-label {
  flex: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.8125rem 4.6875rem;
  background: #000000 0% 0% no-repeat padding-box;
  border-radius: 0.9375rem;
  white-space: nowrap;
  font: var(--unnamed-font-style-normal) normal bold 1.125rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal bold 1.125rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #ffffff;
  opacity: 1;
}

.product-spec-head-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.0625rem 2.8125rem;
  text-align: center;
  gap: 0.3rem;
  background: #fff;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 0.9375rem;
}

.product-spec-col-name {
  font: var(--unnamed-font-style-normal) normal bold 0.9375rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal bold 0.9375rem Pretendard;
  letter-spacing: -0.028125rem;
  color: #000000;
  opacity: 1;
}

.product-spec-col-value {
  font: var(--unnamed-font-style-normal) normal normal 0.9375rem/1.125rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal normal 0.9375rem/1.125rem Pretendard;
  letter-spacing: -0.028125rem;
  color: #000000;
  opacity: 1;
}

/* 상품 카드 리스트 (2열 그리드, 스크롤) */
.product-spec-list {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-right: 0.25rem;
}

/* 상품 카드 */
.product-spec-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem;
  border: 0.0625rem solid #e8e8e8;
  border-radius: 0.75rem;
  background: #fff;
}

img.product-spec-item-image {
  width: 13.125rem;
  height: 10.75rem;
  object-fit: cover;
}

.product-spec-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-spec-item-title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9375rem;
}

.product-spec-item-name {
  font: var(--unnamed-font-style-normal) normal bold 1.25rem/1.5rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal bold 1.25rem/1.5rem Pretendard;
  letter-spacing: -0.0375rem;
  color: #000000;
  opacity: 1;
}

.product-spec-item-usage {
  font: var(--unnamed-font-style-normal) normal bold 0.9375rem/1.125rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal bold 0.9375rem/1.125rem Pretendard;
  letter-spacing: -0.028125rem;
  font-weight: 600;
  color: #e21f26;
  opacity: 1;
}

.product-spec-item-desc {
  font: var(--unnamed-font-style-normal) normal normal 0.9375rem/1.4375rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal normal 0.9375rem/1.4375rem Pretendard;
  letter-spacing: -0.028125rem;
  color: #000000;
  opacity: 1;
}

.product-spec-item-weight {
  font: var(--unnamed-font-style-normal) normal normal 0.9375rem/1.4375rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal normal 0.9375rem/1.4375rem Pretendard;
  letter-spacing: -0.028125rem;
  color: #000000;
  opacity: 1;
}

/* 스펙 정보 박스 */
.product-spec-item-specs {
  background: #f9f9f9;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 0.5rem;
  padding: 1.25rem 0.9375rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-top: 0.9375rem;
}

.product-spec-item-spec-row {
  display: flex;
}

.product-spec-item-spec-cell {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.spec-label {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    0.8125rem/1rem var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 600 0.8125rem/1rem Pretendard;
  letter-spacing: -0.024375rem;
  color: #000000;
  opacity: 1;
}

.spec-value {
  font: var(--unnamed-font-style-normal) normal 300 0.8125rem/1rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 300 0.8125rem/1rem Pretendard;
  letter-spacing: -0.024375rem;
  color: #000000;
  opacity: 1;
}

.product-card-head {
  /* text-align: center; */
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  /* justify-content: center; */
  gap: 0.9375rem;
}

.product-card-title {
  font: var(--unnamed-font-style-normal) normal 800 2.75rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 800 2.75rem Pretendard;
  letter-spacing: 0;
  color: #000000;
  opacity: 1;
}

.product-card-meta {
  font: var(--unnamed-font-style-normal) normal bold 1.375rem
    var(--unnamed-font-family-pretendard);
  text-align: bottom;
  font: normal normal bold 1.375rem Pretendard;
  font-weight: 600;
  letter-spacing: -0.04125rem;
  color: #e21e26;
  opacity: 1;
}

.product-card-box {
  border: 0.0625rem solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.product-card-badge {
  height: auto;
  padding: 1rem 0;
  background: #e21f26;
  border-radius: 0.625rem;
  /* height: 3.5rem; */
  color: #fff;
  font: var(--unnamed-font-style-normal) normal bold 1.25rem/1.75rem
    var(--unnamed-font-family-pretendard);
  font-weight: 500 !important;
  text-align: center;
  font: normal normal bold 1.25rem/1.75rem Pretendard;
  letter-spacing: -0.0375rem;
  opacity: 1;
}

.product-card-content {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.product-card-lead {
  font: var(--unnamed-font-style-normal) normal 300 1.5rem/2.125rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 300 1.5rem/2.125rem Pretendard;
  letter-spacing: -0.045rem;
  color: #212121;
}

.product-card-lead strong {
  font-weight: 800;
  color: #111;
}

.product-card-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    1.125rem var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 600 1.125rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #000000;
  font-weight: 400;
  margin-top: 1.25rem;
  gap: 0.75rem;
}

.product-card-list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.625rem;

  font: var(--unnamed-font-style-normal) normal normal 18px
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal normal 18px Pretendard;
  letter-spacing: -0.54px;
  color: #000000;
}

.product-card-list-item-number {
  font: var(--unnamed-font-style-normal) normal bold 16px
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal bold 16px Pretendard;
  letter-spacing: -0.48px;
  color: #212121;
  opacity: 1;
}

.product-card-list-item b {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    18px var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 600 18px Pretendard;
  letter-spacing: -0.54px;
  color: #000000;
}

/* .product-card-list-item {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.3125rem;

  font: var(--unnamed-font-style-normal) normal normal 0.875rem/1.25rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Pretendard;
  letter-spacing: -0.02625rem;
  color: #000000;
}

.product-card-list-item b {
  font: var(--unnamed-font-style-normal) normal bold 0.8125rem/1.25rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal bold 0.8125rem/1.25rem Pretendard;
  letter-spacing: -0.024375rem;
  color: #212121;
  opacity: 1;
} */

.product-card-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10.9375rem;
  height: 3.125rem;
  border: 0.0625rem solid #000000;
  border-radius: 2.125rem;
  background: transparent;
  margin-top: 1.875rem;
  align-self: center;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    1rem var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 600 1rem Pretendard;
  letter-spacing: -0.015rem;
  color: #212121;
  opacity: 1;
}

.product-card-inquiry:hover {
  background: #111;
  color: #fff;
}

.why-card-desc {
  font: var(--unnamed-font-style-normal) normal normal 1.25rem/2rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal normal 1.0625rem/1.75rem Pretendard;
  letter-spacing: -0.0375rem;
  color: #f2f2f2;
}

/* PC에서는 설명문의 각 줄 길이를 균형 있게 배분합니다. */
@media (min-width: 1024px) {
  .why-card-desc {
    text-wrap: balance;
  }
}

.why-desc-box-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 1.25rem;
  gap: 1rem;
}

.why-desc-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.25rem;
  padding: 1.25rem 0;
}

.why-desc-box div:first-child {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    16px var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 600 16px Pretendard;
  letter-spacing: -0.48px;
  color: #ffffff;
}

.why-desc-box div:last-child {
  font: var(--unnamed-font-style-normal) normal bold 26px
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal bold 26px Pretendard;
  letter-spacing: -0.78px;
  color: #e21f26;
}

.why-card-dots {
  display: flex;
  gap: 0.375rem;
  height: 100%;
  align-items: center;
}

.why-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #eee;
  opacity: 0.8;
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.why-dot-active {
  background: #e21f26;
  opacity: 1;
  transform: scale(1.1);
}

.why-image-col.why-tab-motion,
.why-card-col.why-tab-motion {
  animation: whyTabDropIn 0.65s ease;
}

@keyframes whyTabDropIn {
  from {
    opacity: 0;
    transform: translateY(-2.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whyCardFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* #endregion SECTION 9: OUR PRODUCT TABS */

/* #region SECTION 10: Hypork Support */
.support {
  background: #fef9f9;
  padding: var(--space-section) 0;
}

.support-tabs {
  width: min(21rem, 100%);
  margin: 0 auto 3.25rem;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
  background: #f0e7e7;
  border-radius: 1rem;
}

.support-tab {
  min-width: 0;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: #6f6666;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.support-tab:hover:not(.support-tab-active) {
  background: rgba(255, 255, 255, 0.65);
  color: #212121;
}

.support-tab:focus-visible {
  outline: 0.125rem solid #e21f26;
  outline-offset: 0.125rem;
}

.support-tab-active {
  background: #e21f26;
  color: #ffffff;
  box-shadow: 0 0.75rem 1.75rem rgba(131, 10, 15, 0.2);
}

.support-tab-index {
  font: normal normal 700 0.875rem/1.2 Montserrat;
  letter-spacing: -0.02rem;
  text-transform: uppercase;
}

.support-tab-name {
  font: normal normal 700 1rem/1.3 Pretendard;
  letter-spacing: -0.03rem;
}

.support-card1-wrap {
  margin-bottom: 0;
}

/* Support 카드 공통 */
.support-card {
  width: 100%;
  padding: 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1.875rem;
  opacity: 1;
}

/* 독립 제품 스펙서: 게시물형 카탈로그 */
.product-spec-section .product-spec {
  width: 100%;
  height: auto;
  padding: 0;
  gap: 2rem;
  overflow: visible;
}

.product-spec-section .product-spec-common {
  width: 100%;
}

.product-spec-section .product-spec-head {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin: 0 auto;
  gap: 0;
  height: auto;
  padding: 0;
  border: 0.0625rem solid #dedede;
  border-radius: 0.75rem;
  background: transparent;
  overflow: hidden;
}

.product-spec-section .product-spec-head-col {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 1.5rem 0.875rem;
  border: 0;
  border-top: 0.0625rem solid #e5e5e5;
  border-radius: 0;
  background: transparent;
}

.product-spec-section .product-spec-head-col + .product-spec-head-col {
  border-left: 0;
}

.product-spec-section .product-spec-head-col + .product-spec-head-col::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.0625rem;
  height: 2.5rem;
  background: #dcdcdc;
  transform: translateY(-50%);
}

.product-spec-section .product-spec-head-intro {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0.625rem 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem 0.75rem 0 0;
  background: #161616;
}

.product-spec-section .product-spec-head-label {
  display: block;
  grid-column: 2;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #ffffff;
}

.product-spec-section .product-spec-head-desc {
  position: static;
  width: 100%;
  max-width: none;
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  box-sizing: border-box;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #777777;
  text-align: right;
}

.product-spec-catalog-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.product-spec-category-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border: 0.125rem solid #f0f0f0;
  border-radius: 624.9375rem;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.75rem rgba(0, 0, 0, 0.12);
}

.product-spec-category-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.1875rem;
  padding: 0.9375rem 1.875rem;
  border: none;
  border-radius: 1.6875rem;
  background: transparent;
  color: #a5a5a5;
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.product-spec-category-tab:hover,
.product-spec-category-tab-active {
  border-color: #e21f26;
  background: #e21f26;
  color: #fff;
}

.product-spec-navigation {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.product-spec-slider-shell {
  position: relative;
  padding: 0;
}

.product-spec-nav-button {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  background: #fff;
  color: #222;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.product-spec-nav-prev {
  left: 0;
}

.product-spec-nav-next {
  right: 0;
}

@media (min-width: 1025px) {
  .product-spec-nav-prev {
    left: -3.75rem;
  }

  .product-spec-nav-next {
    right: -3.75rem;
  }
}

.product-spec-nav-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.product-spec-nav-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.product-spec-nav-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-spec-nav-button:hover {
  border-color: #e21f26;
  color: #e21f26;
}

.product-spec-nav-button.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.product-spec-swiper {
  width: 100%;
  padding: 0.5rem 0 1.25rem;
  overflow: hidden;
}

.product-spec-section .product-spec-list {
  display: flex;
  gap: 0;
  padding: 0;
  overflow: visible;
}

.product-spec-swiper .swiper-wrapper {
  align-items: stretch;
}

.product-spec-swiper .swiper-slide {
  height: auto;
}

.product-spec-section .product-spec-item {
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 0.0625rem solid #e5e5e5;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-spec-section .product-spec-item:hover {
  transform: translateY(-0.375rem);
  border-color: rgba(226, 31, 38, 0.45);
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.1);
}

.product-spec-section img.product-spec-item-image {
  display: block !important;
  width: 100%;
  height: auto;
  aspect-ratio: 210 / 172;
  padding: clamp(0.75rem, 1.5vw, 0.875rem);
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: #111111;
}

.product-spec-section img.product-spec-item-image-mb {
  display: none !important;
}

.product-spec-section .product-spec-item-body {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.product-spec-section .product-spec-item-wrap-mb {
  display: block;
  margin: 0;
}

.product-spec-section .product-spec-item-title-row {
  margin-bottom: 1.125rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.product-spec-section .product-spec-item-name {
  font-size: 1.6875rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #111111;
}

.product-spec-section .product-spec-item-usage {
  width: auto;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 700;
  color: #e21f26;
}

.product-spec-section .product-spec-item-desc {
  min-height: 3.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: #333333;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.product-spec-section .product-spec-item-weight {
  margin: 0.75rem 0 1.25rem;
  padding-top: 0.75rem;
  border-top: 0.0625rem solid #eeeeee;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 700;
  color: #555555;
}

.product-spec-section .product-spec-item-specs {
  margin-top: auto;
  padding: 1rem 1.125rem;
  gap: 0;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 0.75rem;
  background: #fbfbfb;
}

.product-spec-section .product-spec-item-specs::before {
  content: "박스 상세";
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 800;
  color: #333333;
}

.product-spec-section .product-spec-item-spec-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-spec-section .product-spec-item-spec-cell {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6875rem 0;
  border-bottom: 0.0625rem solid #efefef;
}

.product-spec-section .product-spec-item-spec-row:last-child .product-spec-item-spec-cell:last-child {
  border-bottom: 0;
}

.product-spec-section .spec-label {
  width: auto;
  padding: 0;
  font-size: 0.6875rem;
  line-height: 1.3;
  font-weight: 600;
  color: #777777;
  white-space: nowrap;
}

.product-spec-section .spec-value {
  margin-left: auto;
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 800;
  color: #111111;
  text-align: right;
  white-space: nowrap;
}

.support-panel[hidden] {
  display: none;
}

.support-panel-active {
  animation: support-panel-fade 0.35s ease;
}

@keyframes support-panel-fade {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.support-card-badge {
  background: #e21f26;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  border-radius: 624.9375rem;
}

.support-card-badge span {
  font: var(--unnamed-font-style-normal) normal bold 1rem Montserrat;
  color: var(--unnamed-color-ffffff);
  text-align: right;
  font: normal normal bold 1rem Montserrat;
  letter-spacing: -0.03rem;
  color: #ffffff;
  text-transform: capitalize;
  opacity: 1;
}

.support-card-title {
  font: var(--unnamed-font-style-normal) normal normal 2.25rem/3rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal normal 2.25rem/3rem Pretendard;
  letter-spacing: -0.0675rem;
  color: #000000;
  text-transform: uppercase;
}

.support-card-title strong {
  font-weight: 800;
}

.support-head .bold-title-black {
  display: inline-block;
  padding: 0.05em 0.35em;
  border-radius: 0.3rem;
  background: #e21f26;
  color: #ffffff;
  line-height: 1.3;
}

.support-card-title-highlight {
  display: inline;
  margin-left: 0.15em;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #e21f26;
  font-weight: 800;
  line-height: inherit;
  white-space: nowrap;
}

.support-card-desc {
  font: var(--unnamed-font-style-normal) normal normal 1.125rem/1.75rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal normal 1.125rem/1.75rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #000000;
  text-transform: uppercase;
}

.support-card-desc strong {
  font-weight: 700;
  color: #222;
}

/* 판촉물 아이템 목록 */
.support-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  column-gap: 1.25rem;
  row-gap: 2rem;
  width: 83.75rem;
  height: auto;
  background-color: #f8f8f8;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1.5rem;
  padding: 2.25rem;
}

.support-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.support-item:hover {
  transform: translateY(-0.9375rem);
}

.support-item-images {
  width: 100%;
  min-height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 1rem;
  box-sizing: border-box;
}

.support-item-image {
  flex: 1 1 0;
  min-width: 0;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-item-single .support-item-image {
  flex: 0 1 70%;
}

.support-item-image img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.support-item-label {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600)
    1.125rem/2.6875rem var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 600 1.125rem/2.6875rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #000000;
  opacity: 1;
}

/* 실제 적용 사례 */
.support-case {
  width: 83.75rem;
  /* height: 21.3125rem; */
  background: #e21f26;
  border-radius: 1rem;
  padding: 1.875rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.support-case-title {
  font: var(--unnamed-font-style-normal) normal bold 1.625rem/1.75rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal bold 1.625rem/1.75rem Pretendard;
  letter-spacing: -0.04875rem;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
  font-weight: 600;
}

.support-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9375rem;
}

.support-case-item {
  cursor: pointer;
  border-radius: 0.9375rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.support-case-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.support-case-item:hover {
  transform: translateY(-0.9375rem);
  transition: transform 0.2s ease;
}

/* 여행 포상 카드 */
.support-travel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9375rem;
  height: 21.25rem;
  width: 100%;
}

/* 여행 포상 카드 페이드인 효과 */
.support-travel-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 8;
  background-color: #000;
  opacity: 0;
  transform: translateY(-2.5rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.support-travel-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.support-travel-card:nth-child(1) {
  transition-delay: 0s;
}

.support-travel-card:nth-child(2) {
  transition-delay: 0.15s;
}

.support-travel-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.5;
  transition: transform 0.4s ease;
}

.support-travel-card:hover img {
  transform: scale(1.06);
}

.support-travel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.support-travel-winner {
  font: var(--unnamed-font-style-normal) normal bold 1rem Montserrat;
  color: var(--unnamed-color-ffffff);
  font: normal normal bold 1rem Montserrat;
  letter-spacing: -0.03rem;
  color: #ffffff;
  opacity: 0.6;
  font-weight: 600;
}

.support-travel-dest {
  font: var(--unnamed-font-style-normal) normal bold 1.625rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal bold 1.625rem Pretendard;
  letter-spacing: -0.04875rem;
  color: #ffffff;
  opacity: 1;
  font-weight: 600;
}
/* #endregion SECTION 10: Hypork Support */

/* #region SECTION 11: Our Product / Marketing */
.marketing {
  padding: 7.5rem 0;
  /* background: #fff; */
  background: #141414 0% 0% no-repeat padding-box;
}

.marketing-wrap {
  margin-bottom: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.marketing-label {
  font: var(--unnamed-font-style-normal) normal bold 20px Montserrat;
  text-align: center;
  font: normal normal bold 20px Montserrat;
  letter-spacing: 0px;
  color: #e21f26;
  text-transform: capitalize;
  opacity: 1;
  margin-bottom: 1.875rem;
}

.marketing-thin-title {
  font: var(--unnamed-font-style-normal) normal 300 42px/58px
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 300 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #fff;
}

.marketing-bold-title {
  font: var(--unnamed-font-style-normal) normal 800 42px/58px
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 800 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #fff;
}

/* 바디 레이아웃: 상단 탭 → 미리보기 → 정보 바 */
.marketing-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.marketing-preview-nav {
  display: contents;
}

.marketing-preview-nav > .marketing-tab-arrow {
  display: none;
}

/* 탭 목록 */
.marketing-tabs {
  width: min(64rem, 100%);
  display: flex;
  flex-direction: row;
  gap: 0.625rem;
  order: 1;
}

.marketing-tabs-wrap {
  order: 1;
}

.marketing-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 4.6875rem;
  height: auto;
  background: #2E2E2E 0% 0% no-repeat padding-box;
  border: 0.0625rem solid #2E2E2E;
  border-radius: 1rem;
  color: #8e8e8e;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  padding: 0.875rem 1.125rem;

  font: var(--unnamed-font-style-normal) normal 800 1.25rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal 800 1.25rem Pretendard;
  letter-spacing: -0.0375rem;
  opacity: 1;
  font-weight: 600;
}

.marketing-tab:not(.marketing-tab-active):hover {
  color: #fff;
}

.marketing-tab-active {
  background: #FFFFFF;
  color: #212121;
  /* border-color: #FFFFFF; */
  border: 1px solid #E5E5E5;
}

.marketing-tab-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;

  font: var(--unnamed-font-style-normal) normal normal 32px
    var(--unnamed-font-family-pretendard);
  font: normal normal normal 32px Pretendard;
  letter-spacing: -0.96px;
  opacity: 1;

  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2E2E2E;
}

.marketing-tab-icon-symbol {
  display: inline-block;
  line-height: 1;
}

.marketing-tab-icon-symbol-open {
  display: none;
}

.marketing-tab-active .marketing-tab-icon {
  color: #FFFFFF;
  background-color: #E21F26;
}

.marketing-tab-active .marketing-tab-icon-symbol-closed {
  display: none;
}

.marketing-tab-active .marketing-tab-icon-symbol-open {
  display: inline-block;
}

/* 미리보기 영역, 페이드인 효과 */
.marketing-preview {
  border-radius: 1.875rem;
  background: #f0f0f0;
  overflow: hidden;
  order: 2;
  width: min(64rem, 100%);
  height: auto;
  aspect-ratio: 16 / 10;
  opacity: 0;
  transform: translateY(-2.5rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.marketing-preview.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.marketing-preview-image {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}

.marketing-preview-image-active {
  display: block;
}

/* 정보 카드, 페이드인 효과 */
.marketing-info {
  order: 3;
  width: min(64rem, 100%);
  height: auto;
  background: #e21f26;
  border-radius: 1.25rem;
  min-height: 11rem;
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 2.3fr);
  grid-template-areas: "title list";
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-2.5rem);
  transition:
    opacity 0.7s ease 0.15s,
    transform 0.7s ease 0.15s;
}

.marketing-info.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.marketing-info-panel {
  display: none;
}

.marketing-info-panel-active {
  display: contents;
}

.marketing-preview.marketing-tab-motion,
.marketing-info.marketing-tab-motion {
  animation: marketingPanelDropIn 0.7s ease;
}

.marketing-info-title {
  grid-area: title;
  position: relative;
  z-index: 1;
  font: var(--unnamed-font-style-normal) normal 800 1.875rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal 800 1.875rem Pretendard;
  letter-spacing: -0.05625rem;
  color: #ffffff;
  opacity: 1;
}

.marketing-info-divider {
  display: none;
}

.marketing-info-list {
  grid-area: list;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.marketing-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  min-width: 0;
  min-height: 5.5rem;
  padding: 0 1.5rem;
  justify-content: center;
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.28);
}

.marketing-info-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.marketing-info-item:last-child {
  padding-right: 0;
}

.marketing-info-label {
  font: var(--unnamed-font-style-normal) normal bold 18px
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal bold 18px Pretendard;
  letter-spacing: -0.54px;
  color: #fdd3d5;
  text-transform: uppercase;
  opacity: 1;
}

.marketing-info-value {
  font: var(--unnamed-font-style-normal) normal 800 24px
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal 800 24px Pretendard;
  letter-spacing: -0.72px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
}

.marketing-info-item:last-child .marketing-info-value {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  text-transform: none;
  word-break: keep-all;
  text-align: center;
}

.marketing-info-watermark {
  position: absolute;
  bottom: 1.4375rem;
  right: 1.6875rem;
  pointer-events: none;
  width: 13.25rem;
  height: 3.6175rem;
  opacity: 0.14;
}

.marketing-info-watermark img {
  width: 17rem;
  height: 3.625rem;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}
/* #endregion SECTION 11: Our Product / Marketing */

/* #region SECTION 12: Production Process */
.process {
  background: #fff;
  padding-top: 7.5rem;
  padding-bottom: var(--space-section);
  overflow: hidden;
}

.process-title-wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-2xs);
  height: auto;
  margin-bottom: 1.875rem;
}

.process-title-bold {
  font: var(--unnamed-font-style-normal) normal 800 2.625rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 800 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #000000;
}

.process-badge {
  background: #e21f26;
  padding: 0.75rem 1.5rem;
  border-radius: 6.1875rem;
  height: 2.875rem;
  margin-bottom: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-badge-text {
  font-family: "pretendard", sans-serif;
  text-align: right;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: capitalize;
  opacity: 1;
}

/* 카드 그리드 */
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  counter-reset: process-card;
}

.process-principles {
  width: min(100%, 44rem);
  margin: 0 auto 2rem;
}

.process-principles::before {
  content: none;
}

.process-principles-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.25rem minmax(0, 1fr);
  align-items: center;
  gap: 0.875rem;
}

.process-principle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(226, 31, 38, 0.18);
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0 0.375rem 0.875rem rgba(33, 33, 33, 0.06);
  color: #212121;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-align: center;
  white-space: normal;
}

.process-principle::before {
  width: 0.4375rem;
  height: 0.4375rem;
  flex: 0 0 auto;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: #e21f26;
  content: "";
}

.process-principle-divider {
  width: 2.5rem;
  height: 1px;
  justify-self: center;
  background: #e21f26;
}

.process-principle-divider::after {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  margin: -0.1875rem auto 0;
  border-top: 1px solid #e21f26;
  border-right: 1px solid #e21f26;
  content: "";
  transform: rotate(45deg);
}

.process-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 1rem 0.375rem 1rem 0.375rem;
  overflow: hidden;
  width: 20.625rem;
  height: 23.125rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  isolation: isolate;
  counter-increment: process-card;
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.14);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.process-card:nth-child(even) {
  border-radius: 0.375rem 1rem 0.375rem 1rem;
}

.process-card::before {
  content: counter(process-card, decimal-leading-zero);
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  width: 2.375rem;
  height: 2.375rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(226, 31, 38, 0.92);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(226, 31, 38, 0.72);
  box-shadow: 0 1.25rem 2.25rem rgba(0, 0, 0, 0.2);
}

.process-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.2) 38%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.process-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.25rem;
  color: #fff;
}

.process-card-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin-bottom: 0.6875rem;
}

.process-card-sub {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.process-card-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

/* 티커 배너 */
.process-ticker {
  background: #222222;
  /* height: 2.5625rem; */
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
}

.process-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 150s linear infinite;
}

.process-ticker-group {
  display: flex;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marketingPanelDropIn {
  from {
    opacity: 0;
    transform: translateY(-2.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-ticker-item {
  font-family: "Montserrat", sans-serif;
  /* font-size: 0.9rem; */
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1.5rem;
}
/* #endregion SECTION 12: Production Process */

/* #region SECTION 13: Hypork Newsroom */
.newsroom {
  padding: 7rem 0 4rem;
  background: #fff;
  overflow: hidden;
}

.newsroom-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  gap: 3.5rem;
}

.newsroom-left {
  width: 100%;
  max-width: var(--container-standard-shell-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter-pc);
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.newsroom-title-wrap {
  font: var(--unnamed-font-style-normal) normal 300 2.625rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 300 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #212121;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
  height: auto;
}

.newsroom-title-wrap b {
  font: var(--unnamed-font-style-normal) normal 800 2.625rem
    var(--unnamed-font-family-pretendard);
  text-align: center;
  font: normal normal 800 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #212121;
}

.newsroom-label-bottom {
  margin-bottom: 1.75rem;
}

.newsroom-nav {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  margin: 0;
  pointer-events: none;
}

.newsroom-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.96875rem;
  height: 2.96875rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: auto;
}

.newsroom-nav-prev {
  left: clamp(0.75rem, 2.5vw, 3rem);
}

.newsroom-nav-next {
  right: clamp(0.75rem, 2.5vw, 3rem);
}

.newsroom-nav-btn .nav-image {
  width: 3rem;
  height: 3rem;
  display: block;
  transition: opacity 0.2s;
}

/* prev 버튼: 기본 = _e(연한), hover = _a(진한) */
.newsroom-nav-btn .nav-image-hover {
  display: none;
}

.newsroom-nav-btn:hover .nav-image-default {
  display: none;
}

.newsroom-nav-btn:hover .nav-image-hover {
  display: block;
}

/* 슬라이더 */
.newsroom-slider-wrap {
  position: relative;
  flex: none;
  width: 100%;
  min-width: 0;
  padding: 0 clamp(4.5rem, 7vw, 8rem);
  overflow: hidden;
}

.newsroom-swiper {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  overflow: hidden;
  padding: 0.75rem 0.5rem 1.25rem;
}

.newsroom-swiper .swiper-wrapper {
  align-items: stretch;
}

.newsroom-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* 뉴스 카드 */
.news-card {
  background: #fff;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.875rem;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0.5rem;
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.news-card-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  background-color: #f3f3f3;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 0.375rem;
  position: relative;
  overflow: hidden;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 1rem 0.75rem 0.75rem;
  gap: 0.5rem;
  height: auto;
  min-height: 10rem;
}

.news-card-category {
  font-family: "pretendard", sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.03em;
  color: #a6a6a6;
  font-weight: 500;
}

.news-card-category em {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #e21f26;
}

.news-card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #212121;
  line-height: 1.55;
  letter-spacing: -0.03em;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-date {
  font-family: "pretendard", sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.03em;
  color: #a6a6a6;
  margin-top: auto;
}

/* #endregion SECTION 13: Hypork Newsroom */

/* #region SECTION 14: Q&A */
.faq {
  padding: 4rem 0 8rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.faq-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.35rem;
  height: auto;
  margin-bottom: 0;
}
.faq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

/* 상단 헤더 */
.faq-left {
  width: 100%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-left .thin-title-black,
.faq-left .bold-title-black {
  display: block;
  text-align: center;
}

.faq-watermark {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(226, 31, 38, 0.08);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* 하단: 아코디언 */
.faq-list {
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
  background: #fef9f9 0% 0% no-repeat padding-box;
  border-radius: 1.875rem;
  width: min(64rem, 100%);
  gap: 0.625rem;
}

.faq-item {
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border-radius: 0.9375rem;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s;
  border: 0.0625rem solid #f0f0f0;
}

.faq-item-active {
  border-color: #e21f26;
}

.faq-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.875rem;
  height: auto;
  min-height: 4.0625rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item-question {
  font: var(--unnamed-font-style-normal) normal bold 1.125rem/2.625rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal bold 1.125rem/2.625rem Pretendard;
  letter-spacing: -0.01125rem;
  color: #212121;
  opacity: 1;
}

.faq-item-question em {
  font: var(--unnamed-font-style-normal) normal bold 1.125rem/13.3125rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal bold 1.125rem/1.4 Pretendard;
  letter-spacing: -0.01125rem;
  color: #e21f26;
  opacity: 1;
  padding-right: 0.625rem;
}

.faq-item-icon {
  flex-shrink: 0;
  color: #999;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.faq-item-active .faq-item-icon {
  color: #222;
  transform: rotate(180deg);
}

/* 아코디언 본문 - max-height transition */
.faq-item-body {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
}

.faq-item-active .faq-item-body {
  max-height: 20rem;
}

.faq-item-divider {
  border: none;
  border-top: 0.0625rem solid #f0f0f0;
  margin: 0 1.875rem;
}

.faq-item-active {
  border-top-color: #e21f26;
}

.faq-item-answer {
  padding: 1.375rem 1.875rem 1.625rem 1.875rem;
  font: var(--unnamed-font-style-normal) normal normal 1rem/1.625rem
    var(--unnamed-font-family-pretendard);
  text-align: left;
  font: normal normal normal 1rem/1.625rem Pretendard;
  letter-spacing: -0.01rem;
  color: #212121;
  opacity: 1;
}

.faq-watermark {
  position: relative;
}
.faq-watermark div {
  position: absolute;
  bottom: 1.3125rem;
  left: 2.0625rem;
}
/* #endregion SECTION 14: Q&A */

/* #region SECTION 15: Contact Us */
.contact {
  background: #d3131a;
  height: auto;
  min-height: 79.1875rem;
  padding-bottom: clamp(3.75rem, 6.25vw, 7.5rem);
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 5rem;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(53.625rem, calc(100% - 2rem));
  margin-top: 7.5625rem;
}

.contact-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.contact-title-wrap {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2xs);
  margin-bottom: 3.75rem;
}

.contact-title-thin {
  font: var(--unnamed-font-style-normal) normal 300 2.625rem/3.625rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal 300 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #ffffff;
}

.contact-title-bold {
  font: var(--unnamed-font-style-normal) normal 800 2.625rem/3.625rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal 800 var(--type-section-title-size)/var(--type-section-title-line) Pretendard;
  letter-spacing: var(--type-heading-tracking);
  color: #ffffff;
}

/* 폼 */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 3rem;
  background: #ffffff;
  border: 0.0625rem solid #ededed;
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 3.5rem rgba(79, 0, 3, 0.2);
}

/* 폼 필드 */
.contact-field {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 0.0625rem solid #d6d6d6;
  border-radius: 0.625rem;
  opacity: 1;
  padding: 1.75rem 1.5625rem;
  height: 5rem;
  width: 100%;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field:focus-within {
  border-color: #9b9b9b;
  box-shadow: 0 0 0 0.1875rem rgba(0, 0, 0, 0.05);
}

.contact-field-area {
  align-items: flex-start;
  padding: 1.25rem;
  min-height: max-content;
  width: 100%;
}

.contact-field-label-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.25rem;
}

.contact-field-label {
  font: var(--unnamed-font-style-normal) normal bold 1.25rem/1.25rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal bold 1.25rem/1.25rem Pretendard;
  letter-spacing: -0.0375rem;
  color: #171717;
  opacity: 1;
  width: 6.75rem;
  min-width: 3.125rem;
  overflow: hidden;
}

.contact-field-divider {
  font: var(--unnamed-font-style-normal) normal normal 1.25rem/1.25rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal normal 1.25rem/1.25rem Pretendard;
  letter-spacing: -0.0375rem;
  color: #b5b5b5;
  opacity: 1;
  padding-right: 1.3125rem;
}

.contact-field-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font: var(--unnamed-font-style-normal) normal 500 1.125rem/1.25rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 500 1.125rem/1.25rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #6f6f6f;
}

.contact-field-input::placeholder {
  font: var(--unnamed-font-style-normal) normal 500 1.125rem/1.25rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 500 1.125rem/1.25rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #9a9a9a;
  opacity: 1;
}

.contact-field-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;

  font: var(--unnamed-font-style-normal) normal 500 1.125rem/1.25rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 500 1.125rem/1.25rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #6f6f6f;
  opacity: 1;
}

.contact-field-select.is-placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.contact-field-select option {
  background: #ffffff;
  color: #555555;
}

/* 문의폼 지역 선택: native select은 제출값만 유지하고 목록 UI는 공통으로 렌더링합니다. */
.inquiry-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.inquiry-select-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-family: Pretendard, sans-serif;
}

.contact-field .inquiry-select-trigger {
  flex: 1;
  height: 1.75rem;
  padding: 0 1.25rem 0 0;
  background: transparent;
  color: #6f6f6f;
  font: normal normal 500 1.125rem/1.25rem Pretendard;
  letter-spacing: -0.03375rem;
}

.sticky-form-wrap .inquiry-select-trigger {
  width: 12.6875rem;
  height: 3.125rem;
  padding: 0.9375rem 0.875rem;
  box-sizing: border-box;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.3125rem;
  background: #ffffff;
  color: #000000;
  font: normal normal 600 1rem/1.5625rem Pretendard;
  letter-spacing: -0.03rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-select-trigger.is-placeholder {
  color: #9a9a9a;
}

.sticky-form-wrap .inquiry-select-trigger.is-placeholder {
  color: #b2b2b2;
}

.inquiry-select-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inquiry-select-caret {
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.75rem;
  border-right: 0.125rem solid currentColor;
  border-bottom: 0.125rem solid currentColor;
  transform: rotate(45deg) translateY(-0.1875rem);
  transition: transform 0.18s ease;
  flex: 0 0 auto;
}

.inquiry-select-trigger[aria-expanded="true"] .inquiry-select-caret {
  transform: rotate(225deg) translateY(-0.0625rem);
}

.contact-field .inquiry-select-trigger:focus-visible {
  border-radius: 0.25rem;
  outline: 0.125rem solid rgba(0, 0, 0, 0.3);
  outline-offset: 0.1875rem;
}

.sticky-form-wrap .inquiry-select-trigger:hover,
.sticky-form-wrap .inquiry-select-trigger[aria-expanded="true"] {
  border-color: #aaaaaa;
}

.sticky-form-wrap .inquiry-select-trigger:focus-visible {
  border-color: #555555;
  box-shadow: 0 0 0 0.1875rem rgba(0, 0, 0, 0.1);
}

.inquiry-select-menu {
  position: fixed;
  z-index: 100020;
  display: none;
  gap: 0.125rem;
  padding: 0.375rem;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.625rem;
  background: #ffffff;
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.16);
}

.inquiry-select-menu.is-open:not([hidden]) {
  display: grid;
}

.inquiry-select-menu[hidden] {
  display: none !important;
}

.inquiry-select-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.625rem;
  padding: 0.625rem 0.75rem;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: #333333;
  cursor: pointer;
  font: normal normal 500 0.9375rem/1.3 Pretendard;
  letter-spacing: -0.02em;
  text-align: left;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.inquiry-select-option:hover,
.inquiry-select-option:focus-visible {
  background: #f6f6f6;
  color: #171717;
  outline: none;
}

.inquiry-select-option.is-selected {
  background: #fff0f1;
  color: #c9151e;
  font-weight: 700;
}

.inquiry-select-option.is-placeholder {
  min-height: 2.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #eeeeee;
  border-radius: 0;
  color: #9a9a9a;
  cursor: default;
  font-size: 0.875rem;
}

.inquiry-select-option:disabled {
  opacity: 1;
}

@media (max-width: 1536px) and (min-width: 1328px) {
  .sticky-form-wrap .inquiry-select-trigger {
    width: 25%;
  }
}

@media (max-width: 768px) {
  .contact-field .inquiry-select-trigger {
    padding-right: 0.875rem;
    font-size: 0.9375rem;
  }

  .inquiry-select-option {
    min-height: 2.75rem;
  }
}

.contact-field-textarea {
  flex: 1;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  resize: none;
  font-size: 0.9375rem;
  color: #6f6f6f;
  font-family: "Pretendard", sans-serif;
  line-height: 1.7;
  min-height: 8rem;
  margin-top: 0.25rem;
}

.contact-field-textarea::placeholder {
  color: #9a9a9a;
}

/* 동의 체크박스 */
.contact-agrees {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  margin: 0.125rem 0;
}

.contact-agree {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.contact-agree-check {
  display: none;
}

/* 기본 = 비어있는 상태 */
.contact-agree-box {
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* 기본 상태에서 체크 아이콘 숨김 */
.contact-agree-box svg {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}

/* 체크 상태 = 검정 */
.contact-agree-check:checked + .contact-agree-box {
  background: #000;
  border-color: #000;
}

/* 체크 아이콘 보이기 */
.contact-agree-check:checked + .contact-agree-box svg {
  opacity: 1;
  transform: scale(1);
}

/* 체크 아이콘 색 (흰색으로) */
.contact-agree-check:checked + .contact-agree-box svg path {
  stroke: #fff;
}
.contact-agree-text {
  font: var(--unnamed-font-style-normal) normal 500 1.125rem/1.25rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 500 1.125rem/1.25rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #333333;
  opacity: 1;
}

.contact-agree-link {
  color: #d3131a;
  font-weight: 700;
  text-decoration: underline;
}

/* 제출 버튼 */
.contact-submit {
  width: 100%;
  height: 5rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  font: var(--unnamed-font-style-normal) normal bold 1.25rem/1.25rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  font: normal normal bold 1.25rem/1.25rem Pretendard;
  letter-spacing: -0.0375rem;
  color: #ffffff;
  opacity: 1;
  font-weight: 600;
}
/* #endregion SECTION 15: Contact Us */

/* #region FOOTER */
.footer-wrap {
  position: relative;
  z-index: 2;
  margin-top: -3.125rem;
  background: #0b0b0b;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: #fff;
}

/* 상단 */

.footer-bottom {
  padding: 4.375rem 4.375rem calc(5.1875rem + var(--sticky-form-height));
  background:
    radial-gradient(circle at 100% 0, rgba(229, 7, 25, 0.12), transparent 25rem),
    #0b0b0b;
}

.footer-bottom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  width: 17.5rem;
  height: auto;
  display: block;
}

.footer-top-right {
  display: flex;
  align-items: center;
}

/* Family Site 드롭다운 (값은 네이티브 select, UI는 커스텀) */
.footer-family {
  position: relative;
  width: 15.75rem;
  flex-shrink: 0;
}

.footer-family-select-native {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  margin: -0.0625rem;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.footer-family-select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2.75rem;
  padding: 0 2.75rem 0 1.5625rem;
  box-sizing: border-box;
  background: #171717 url("images/footer/arrow_b.svg")
    no-repeat right 1.25rem center / 0.9375rem auto;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  border-radius: 0.375rem;
  outline: none;
  text-align: left;
  cursor: pointer;
  font: normal normal 500 1.125rem/1.25rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #ffffff;
}

.footer-family-select-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.footer-family.is-open .footer-family-select {
  border-color: rgba(255, 255, 255, 0.65);
}

.footer-family-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #1b1b1b;
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.375rem;
  overflow: hidden;
  z-index: 50;
  box-sizing: border-box;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
}

.footer-family.is-open .footer-family-dropdown {
  display: block;
}

.footer-family-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font: normal normal 500 1.125rem/1.25rem Pretendard;
  letter-spacing: -0.03375rem;
  color: #ffffff;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.footer-family-option:hover {
  background: rgba(0, 0, 0, 0.15);
}

/* SNS 아이콘 */

.footer-sns-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: 1.5rem;
}

.footer-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  opacity: 0.72;
  transition: opacity 0.25s, transform 0.25s;
}

.footer-sns:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-sns img {
  width: 2.75rem;
  height: 2.75rem;
  display: block;
  object-fit: contain;
}

.footer-admin-link {
  display: grid;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
  flex: 0 0 2.625rem;
  padding: 0;
  box-sizing: border-box;
  color: #e8ebed;
  border: 0.0625rem solid #46505a;
  border-radius: 0.5rem;
  background: #20272d;
  text-decoration: none;
  opacity: 1;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.footer-admin-link:hover {
  color: #ffffff;
  border-color: #6a7680;
  background: #2a333a;
}

.footer-admin-link:focus-visible {
  opacity: 1;
  color: #ffffff;
  border-color: #ffffff;
  outline: 0.125rem solid #e50719;
  outline-offset: 0.1875rem;
}

.footer-admin-link svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 구분선 */
.footer-divider {
  height: 0.0625rem;
  border: 0;
  background: linear-gradient(90deg, #e50719 0 7.5rem, #343434 7.5rem 100%);
  margin: 3.125rem 0;
}

/* 하단 */
.footer-bottom-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.footer-bottom-actions {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  width: fit-content;
  max-width: 100%;
  flex-shrink: 0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 75rem;
}

.footer-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font: var(--unnamed-font-style-normal) normal normal 1.125rem/1.875rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal normal 1rem/1.75rem Pretendard;
  letter-spacing: -0.03375rem;
  color: rgba(255, 255, 255, 0.68);
  opacity: 1;
}

.footer-info-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-info-item {
  display: inline-flex;
  align-items: center;
}

.footer-info-item + .footer-info-item::before {
  content: "|";
  margin: 0 0.625rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-copyright {
  font: var(--unnamed-font-style-normal) normal 500 1.125rem/1.875rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  font: normal normal 500 0.9375rem/1.5rem Pretendard;
  letter-spacing: -0.03375rem;
  color: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.04);
}

.footer-link {
  font: var(--unnamed-font-style-normal) normal bold 1.125rem/1.875rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 600 1rem/1.5rem Pretendard;
  letter-spacing: -0.03375rem;
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

.footer-link:hover {
  color: #e50719;
}

.footer-link-divider {
  font: var(--unnamed-font-style-normal) normal bold 1.125rem/1.875rem
    var(--unnamed-font-family-pretendard);
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal bold 1.125rem/1.875rem Pretendard;
  letter-spacing: -0.03375rem;
  color: rgba(255, 255, 255, 0.28);
  opacity: 1;
}
/* #endregion FOOTER */


.slider04_modal .modal-overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.80);display: none;z-index: 10000;}
.slider04_modal .modal {position: fixed;top: 50%;left: 50%;transform: translate(-50%, -50%);width:600px;max-width:calc(100vw - 4rem);height:665px;max-height:calc(100vh - 4rem);max-height:calc(100dvh - 4rem);background-color:white;border-radius:20px;display:none;z-index:10001;overflow:visible;}
.slider04_modal .modal-content {padding:30px;text-align: center;height:100%;overflow-y:auto;}
.slider04_modal .modal-close {position: absolute;top: -18px;right: -20px;font-size: 22px;font-weight: bold;background:#fff;width:45px;height:45px;border-radius:50px;border:1px solid#D9D9D9;padding:0px 0px 3px 1px;color: #333;cursor: pointer;}
.slider04_modal .modal-name, .modal-title, .modal-sub {margin-top: 10px;}
.slider04_modal .modal-name{font-size: 18px;font-weight: 700;background: #E21F26;width:100%;border-radius:5px;padding:9px 0px;color:#fff;}
.slider04_modal .modal-name span{opacity:0.5}
.slider04_modal .modal-title{font-size: 24px;font-weight: 800;margin-top:20px;text-align:left;}
.slider04_modal .modal-sub {font-size: 16px;font-weight: 500;text-align:left;margin-top:20px;color:#707070;}

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; overflow: hidden; background: rgba(0, 0, 0, 0.5); z-index: 99999; text-align: center}
.modal.on { display: block; overflow: auto; }

/* TOP */
.fb-top {
    position: fixed;
    top: auto;
    right: 2rem;
    bottom: 7rem;
    width: 3.75rem;
    height: 3.75rem;
    background: #111111;
    box-shadow: 0 0.25rem 0.875rem rgba(0, 0, 0, 0.24);
    border: 0.0625rem solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    opacity: 1;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    z-index: 1000;
    text-decoration: none;
}

/* 아이콘 공통 */
.fb-icon {
    width: 1.5rem;
    height: 1.25rem;
}

.fb-top:hover {
    background: #E50719;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.3);
}

.fb-top:focus-visible {
    outline: 0.125rem solid #ffffff;
    outline-offset: 0.1875rem;
}

.fb-btn {
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* TOP 아이콘 */
.fb-icon-top {
    background: transparent url('images/footer/bottom2.svg') center / contain no-repeat;
    opacity: 1;
}

/* TOP 텍스트 */
.fb-text-top {
    text-align: center;

    font-family: Pretendard;
    font-size: 0.6875rem;
    line-height: 0.875rem;
    font-weight: 700;

    letter-spacing: -0.015rem;
    color: #FFFFFF;
    opacity: 1;
}


/* 공통 버튼 */
.sf-btn {
    height: 2.75rem; /* 44px */
    border-radius: 0.3125rem; /* 5px */
    font-family: Pretendard;
    font-size: 0.875rem; /* 14px */
    font-weight: 700;
    letter-spacing: -0.02625rem; /* -0.42px */
    text-decoration: none;
}

/* 제품스펙서 */
.sf-btn-outline {
    width: 6.875rem; /* 110px */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 0.0625rem solid #EEEEEE;

    text-align: center;
    line-height: 2.75rem; /* 44px */
    color: #E50119;

    display: inline-block;
}

/* 상담신청하기 */
.sf-btn-dark {
    width: 7.5rem; /* 120px */
    background: #212121 0% 0% no-repeat padding-box;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
}

.sticky-form-wrap-mb {
    justify-content: center;
}

.sticky-form-wrap-mb .sticky-form-btn-wrap {
    width: min(100%, 32rem);
    margin: 0 auto;
}

.sticky-form-wrap-mb .sf-btn {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 0;
    cursor: pointer;
}

.sticky-form-wrap-mb .sf-btn-outline {
    border: 0.0625rem solid #eeeeee;
}

.mobile-inquiry-sheet {
    display: none;
}

/* 비실제 랜덤 접수 알림: 실제 문의 접수와 무관한 시각적 안내 */
.hypork-fake-inquiry-toast[hidden] {
  display: none;
}

.hypork-fake-inquiry-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--sticky-form-height) + 1.25rem);
  z-index: 10040;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  max-width: calc(100vw - 2rem);
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #575757;
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
  color: #ffffff;
  font: normal normal 700 1rem/1.2 Pretendard;
  letter-spacing: -0.025em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 1rem);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.65s;
}

.hypork-fake-inquiry-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.hypork-fake-inquiry-toast-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #575757;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.hypork-fake-inquiry-toast-message {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.mobile-inquiry-open .hypork-fake-inquiry-toast,
body.hypork-inquiry-success-open .hypork-fake-inquiry-toast {
  display: none;
}

.hypork-inquiry-toast {
  position: fixed;
  right: 24px;
  bottom: 112px;
  z-index: 10050;
  width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #171b20;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hypork-inquiry-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hypork-inquiry-toast.is-success {
  border-left: 5px solid #24b36b;
}

.hypork-inquiry-toast.is-warning {
  border-left: 5px solid #f0a229;
}

.hypork-inquiry-toast.is-error {
  border-left: 5px solid #ed1c24;
}

.hypork-inquiry-toast.is-loading {
  border-left: 5px solid #ffffff;
}

body.hypork-inquiry-success-open {
  overflow: hidden;
}

.hypork-inquiry-success[hidden] {
  display: none;
}

.hypork-inquiry-success {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hypork-inquiry-success-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(11, 13, 16, 0.58);
  cursor: default;
}

.hypork-inquiry-success-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 42px 34px 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  color: #111111;
  text-align: center;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hypork-inquiry-success.is-visible .hypork-inquiry-success-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hypork-inquiry-success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6d737b;
  cursor: pointer;
  place-items: center;
}

.hypork-inquiry-success-close:hover,
.hypork-inquiry-success-close:focus-visible {
  background: #f3f4f6;
  color: #111111;
}

.hypork-inquiry-success-close svg {
  width: 20px;
  height: 20px;
}

.hypork-inquiry-success-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ed1c24;
  color: #ffffff;
  place-items: center;
}

.hypork-inquiry-success-icon svg {
  width: 30px;
  height: 30px;
}

.hypork-inquiry-success-dialog h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.hypork-inquiry-success-dialog p {
  margin: 10px 0 26px;
  color: #626871;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.025em;
}

.hypork-inquiry-success-confirm {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: #ed1c24;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.hypork-inquiry-success-confirm:hover {
  background: #d9131b;
}

.hypork-inquiry-success-confirm:active {
  transform: translateY(1px);
}

.hypork-inquiry-success-confirm:focus-visible,
.hypork-inquiry-success-close:focus-visible {
  outline: 3px solid rgba(237, 28, 36, 0.24);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .hypork-fake-inquiry-toast {
    bottom: calc(var(--sticky-form-height) + 0.75rem);
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
  }

  .hypork-inquiry-toast {
    right: 16px;
    bottom: 92px;
    font-size: 14px;
  }

  .hypork-inquiry-success {
    padding: 18px;
  }

  .hypork-inquiry-success-dialog {
    padding: 38px 24px 24px;
    border-radius: 18px;
  }

  .hypork-inquiry-success-dialog h2 {
    font-size: 21px;
  }

  .hypork-inquiry-success-dialog p {
    margin-bottom: 22px;
    font-size: 15px;
  }
}

