/* ===== Design tokens (Figma: 대양F-G 메인) ===== */
:root {
  --color-white: #ffffff;
  --color-hero-sub: #e5e7eb;
  --color-accent: #00aeef;
  --color-accent-2: #23bdee;
  --color-accent-3: #29b9e7;
  --color-green: #33efa0;
  --color-heading: #1a202c;
  --color-text: #696984;
  --color-title: #2f327d;
  --color-nav: #384b5f;
  --color-support-bg: #252641;
  --color-footer-bg: #292e33;
  --color-footer-text: rgba(255, 255, 255, 0.7);
  --color-tag-bg: #1a1a1a;
  --color-lang: #4d4d4d;
  --container: min(1233px, calc(100% - 48px));
  --header-h: 90px;
  --font-pretendard:
    "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-noto: "Noto Sans KR", sans-serif;
  --font-inter: "Inter", sans-serif;
  --shadow-header: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-support-icon:
    0 4px 6px -4px rgba(41, 185, 231, 0.2),
    0 10px 15px -3px rgba(41, 185, 231, 0.2);

  --color-black: #000000;
  --color-nav-active: #40a6cf;
  --color-border: #e5e7eb;
  --color-quote-bg: #f8fafc;
  --color-quote-border: #f1f5f9;
  --color-role: #94a3b8;
  --color-banner-bg: #f4f4f4;
  --ceo-content: min(1233px, calc(100% - 48px));
  --shadow-photo: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --font-montserrat: "Montserrat", sans-serif;

  --color-history-blue: #0077ff;
  --color-history-bar: #0078cc;
  --color-history-bg: #fcfcfc;
  --color-timeline-line: #e5e7eb;
  --history-content: min(1000px, calc(100% - 48px));

  --color-pr-bg: #0a0a0a;
  --color-pr-card-bg: rgba(255, 255, 255, 0.02);
  --color-pr-card-border: rgba(255, 255, 255, 0.1);
  --color-pr-text-muted: rgba(255, 255, 255, 0.6);
  --color-pr-progress-track: rgba(255, 255, 255, 0.1);
  --color-pr-play-bg: rgba(64, 166, 207, 0.9);
  --color-pr-play-border: rgba(255, 255, 255, 0.2);
  --pr-section-max: min(1298px, calc(100% - 48px));
  --shadow-video: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-play: 0 0 40px rgba(64, 166, 207, 0.3);

  --color-text-primary: #111111;
  --color-feature-bullet: #dce2ef;
  --color-feature-divider: #dce2ef;
  --color-icon-green-dark: #24ad74;
  --color-icon-green-light: #23c681;
  --product-content: min(1233px, calc(100% - 48px));
  --color-label: #374151;
  --color-desc: #6b7280;
  --color-input-bg: #f9fafb;
  --color-placeholder: #9ca3af;
  --color-card-border: #f3f4f6;
  --color-section-bg: #f8fafc;
  --qna-card-max: min(1233px, calc(100% - 48px));
  --qna-form-max: 840px;
  --shadow-submit: 0 10px 12.5px rgba(64, 166, 207, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}
p {
  margin: 0;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
#wpadminbar{
  top: auto !important;
  bottom: 0 !important;
}
body {
  margin: 0;
  font-family: var(--font-pretendard);
  color: var(--color-heading);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ===== Top: Header + Hero ===== */
.top-area {
  position: relative;
  background: #f9fafb;
  padding-top: var(--header-h);
}

main {
  position: relative;
  z-index: 2;
  background: #fff;
}

.wipe-panel {
  position: relative;
  width: 100%;
}

.wipe-panel.hero {
  z-index: 1;
  min-height: calc(100dvh - var(--header-h));
}

.about.wipe-panel {
  z-index: 2;
  background: var(--color-white);
  box-shadow: 0 -24px 64px rgba(15, 23, 42, 0.1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-header);
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1400px;
  margin-inline: auto;
  padding: 17px 32px;
  min-height: var(--header-h);
}

.logo img {
  width: min(240px, 42vw);
  height: auto;
  min-width: 240px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  overflow: visible;
}

.site-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__item + .site-nav__item > .site-nav__link,
.site-nav__item + .site-nav__item > .site-nav__trigger {
  margin-left: 48px;
}

.site-nav__link,
.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 17px;
  line-height: 25.5px;
  letter-spacing: -0.025em;
  color: var(--color-nav);
  white-space: nowrap;
}

.site-nav__trigger {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.site-nav__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.site-nav__sub {
  position: absolute;
  top: 100%;
  left: 40px;
  z-index: 30;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  overflow: visible;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.site-nav__list li:first-child .site-nav__sub {
  left: 0;
}

.site-nav__sub--depth-3 {
  top: 0;
  left: calc(100% - 8px);
  min-width: 280px;
  z-index: 50;
  transform: none;
}

/* Mega menu: 2뎁스(좌) + 3뎁스(우) 2열 패널 */
.site-nav__mega {
  position: absolute;
  top: 100%;
  left: 40px;
  z-index: 40;
  display: flex;
  min-width: 520px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.site-nav__mega-categories {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 180px;
  border-right: 1px solid var(--color-border);
}

.site-nav__mega-category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: var(--color-nav);
  text-align: left;
  cursor: pointer;
}

.site-nav__mega-category.is-active .site-nav__mega-category-btn,
.site-nav__mega-category-btn:hover {
  color: var(--color-nav-active);
  background: #f8fafc;
}

.site-nav__mega-panel {
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.site-nav__mega-category.is-active > .site-nav__mega-panel,
.site-nav__mega-panel.is-active {
  display: block;
}

.site-nav__mega-link {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: var(--color-nav);
}

.site-nav__mega-link:hover {
  color: var(--color-nav-active);
  background: #f8fafc;
}

.site-nav__item--mega .site-nav__chevron--right {
  opacity: 0.7;
}

.site-nav__mega-category.is-active .site-nav__chevron--right {
  opacity: 1;
}

@media (min-width: 769px) {
  .site-nav__item--has-children {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .site-nav__mega {
    min-height: 120px;
  }

  .site-nav__mega-categories {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .site-nav__mega-panel {
    position: absolute;
    top: 0;
    left: 180px;
    right: 0;
    min-width: 280px;
    min-height: 100%;
    padding: 8px 0;
    background: var(--color-white);
    border-left: 1px solid var(--color-border);
    display: none;
  }

  .site-nav__mega-category.is-active > .site-nav__mega-panel {

  }

  .site-nav__mega-panel.is-active {
    display: block;
  }

  .site-nav__sub .site-nav__item--has-children {
    position: relative;
    padding-right: 16px;
    margin-right: -16px;
  }

  .site-nav__sub .site-nav__item--has-children::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 20px;
    height: 100%;
    margin-left: -12px;
  }

  .site-nav__sub .site-nav__item--has-children:hover,
  .site-nav__sub .site-nav__item--has-children.is-open {
    z-index: 45;
  }

  .site-nav__item--has-children:hover > .site-nav__sub,
  .site-nav__item--has-children:focus-within > .site-nav__sub,
  .site-nav__item--has-children.is-open > .site-nav__sub,
  .site-nav__item--mega:hover > .site-nav__mega,
  .site-nav__item--mega:focus-within > .site-nav__mega,
  .site-nav__item--mega.is-open > .site-nav__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__sub--depth-3 {
    transform: none;
  }
}

.site-nav__sub .site-nav__item {
  width: 100%;
}

.site-nav__sublink,
.site-nav__sub .site-nav__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 20px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: var(--color-nav);
  text-align: left;
  white-space: normal;
}

.site-nav__sub .site-nav__trigger {
  margin-left: 0;
}

.site-nav__sublink:hover,
.site-nav__sub .site-nav__trigger:hover,
.site-nav__sub .site-nav__item.is-open > .site-nav__trigger {
  color: var(--color-nav-active);
  background: #f8fafc;
}

.site-nav__link:hover,
.site-nav__trigger:hover {
  color: var(--color-nav-active);
}

.site-nav__sub .site-nav__chevron {
  transform: rotate(-90deg);
}

.site-nav__sub .site-nav__item.is-open > .site-nav__trigger .site-nav__chevron {
  transform: rotate(0deg);
}

@media (max-width: 768px) {
  .site-nav__item.is-open > .site-nav__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}
.wp-block-group{
  display: none !important;
}
.gt_black_overlay{
  min-height: 100vh !important;
}
.gt_white_content{
  margin-top: 0 !important;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid var(--color-hero-sub);
  border-radius: 9999px;
  background: var(--color-white);
  box-shadow: var(--shadow-header);
  flex-shrink: 0;
}

.lang-btn span {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-lang);
}

.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-btn span {
  display: block;
  height: 2px;
  background: var(--color-nav);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 80px 100px;
}

.hero__title {
  margin: 0 0 16px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.25;
  color: var(--color-white);
  max-width: 742px;
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__text-box .value {
  display: inline-block;
  min-height: 1.25em;
  vertical-align: top;
}

.hero__text-box .value.is-waiting {
  opacity: 0;
}

.hero__text-box .value.is-typing::after,
.hero__text-box .value.is-typed.is-fading::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -0.05em;
  animation: hero-typewriter-cursor 0.8s step-end infinite;
}

.hero__text-box .value.is-typed:not(.is-fading)::after {
  display: none;
}

.hero__text-box .value.is-fading {
  opacity: 0;
  transition: opacity 700ms ease;
}

@keyframes hero-typewriter-cursor {
  50% {
    opacity: 0;
  }
}

.hero__desc {
  margin: 0;
  max-width: 672px;
  font-family: var(--font-noto);
  font-weight: 350;
  font-size: 18px;
  line-height: 29.25px;
  color: var(--color-hero-sub);
}

/* ===== Sections ===== */
.section {
  padding-block: clamp(64px, 8vw, 100px);
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 66px);
}

.section-heading__line {
  display: block;
  width: 69px;
  height: 5px;
  margin: 0 auto 20px;
  background: linear-gradient(225deg, #23bdee 0%, #23bdee 100%);
  border-radius: 2px;
}

.section-heading__title {
  margin: 0 0 8px;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 35px);
  line-height: 55px;
  color: var(--color-heading);
}

.section-heading__desc {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 55px;
  color: var(--color-heading);
}

/* ===== About / Kitchen Guard (Figma 8:157) ===== */
.about {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 8vw, 100px);
  background: var(--color-white);
}

.about__stage {
  position: relative;
  width: 100%;
  max-width: 1233px;
  margin-inline: auto;
  aspect-ratio: 1233 / 512;
  min-height: 360px;
}

.about__ellipse {
  position: absolute;
  left: 0;
  top: 9.96%;
  width: 6%;
  max-width: 74px;
  aspect-ratio: 74 / 73;
  background: var(--color-green);
  border-radius: 50%;
  z-index: 1;
}

.about__title {
  position: absolute;
  left: 1.61%;
  top: 12.5%;
  width: 44.67%;
  max-width: 551px;
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 2.9vw, 36px);
  line-height: 1.6;
  color: var(--color-title);
  z-index: 2;
}

.about__desc {
  position: absolute;
  left: 1.61%;
  top: 26.95%;
  width: 47.19%;
  max-width: 582px;
  margin: 0;
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--color-text);
  z-index: 2;
}

.about__link {
  position: absolute;
  left: 1.62%;
  top: 63.28%;
  margin: 0;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.8;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
  z-index: 2;
}

.about__rect {
  position: absolute;
  border-radius: 20px;
  z-index: 1;
}

/* Rectangle 18 — cyan, video 좌상단 */
.about__rect--cyan {
  left: 51.84%;
  top: 0;
  width: 8.92%;
  height: 26.95%;
  max-width: 110px;
  max-height: 138px;
  background: var(--color-accent-2);
}

/* Rectangle 17 — green, video 우하단 */
.about__rect--green {
  left: 85.07%;
  top: 54.88%;
  width: 14.93%;
  height: 45.12%;
  max-width: 184px;
  max-height: 231px;
  background: var(--color-green);
}

.about__video {
  position: absolute;
  left: 53.5%;
  top: 3.96%;
  width: 44.96%;
  height: 91.21%;
  max-width: 554px;
  max-height: 467px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 2px 20px 60px rgba(61, 155, 185, 0.1);
  background: #000;
}

.about__video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.about__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(52px, 5.6vw, 69px);
  height: clamp(52px, 5.6vw, 69px);
  padding: 0;
  z-index: 3;
}

.about__play img {
  width: 100%;
  height: 100%;
}

/* About — ScrollMagic scroll reveal */
.about[data-scroll-animate] .about__title,
.about[data-scroll-animate] .about__desc,
.about[data-scroll-animate] .about__link,
.about[data-scroll-animate] .about__ellipse {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.about[data-scroll-animate] .about__rect--cyan {
  opacity: 0;
  transform: translate3d(0, -40px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.about[data-scroll-animate] .about__rect--green {
  opacity: 0;
  transform: translate3d(48px, 0, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.about[data-scroll-animate] .about__video {
  opacity: 0;
  transform: translate3d(96px, 0, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.about[data-scroll-animate]:not(.is-inview) .about__title,
.about[data-scroll-animate]:not(.is-inview) .about__desc,
.about[data-scroll-animate]:not(.is-inview) .about__link,
.about[data-scroll-animate]:not(.is-inview) .about__video,
.about[data-scroll-animate]:not(.is-inview) .about__ellipse,
.about[data-scroll-animate]:not(.is-inview) .about__rect--cyan,
.about[data-scroll-animate]:not(.is-inview) .about__rect--green {
  transition-delay: 0s;
}

.about[data-scroll-animate].is-inview .about__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.about[data-scroll-animate].is-inview .about__desc {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.45s;
}

.about[data-scroll-animate].is-inview .about__link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.75s;
}

.about[data-scroll-animate].is-inview .about__video {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.05s;
}

.about[data-scroll-animate].is-inview .about__ellipse {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.35s;
}

.about[data-scroll-animate].is-inview .about__rect--cyan {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.55s;
}

.about[data-scroll-animate].is-inview .about__rect--green {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.75s;
}

/* ===== Products ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 60px);
}

/* Products — ScrollMagic scroll reveal */
.products[data-scroll-animate] .section-heading,
.products[data-scroll-animate] .product-card {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.products[data-scroll-animate]:not(.is-inview) .section-heading,
.products[data-scroll-animate]:not(.is-inview) .product-card {
  transition-delay: 0s;
}

.products[data-scroll-animate].is-inview .section-heading {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.products[data-scroll-animate].is-inview .product-card:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.45s;
}

.products[data-scroll-animate].is-inview .product-card:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.75s;
}

.products[data-scroll-animate].is-inview .product-card:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.05s;
}

.products[data-scroll-animate].is-inview .product-card:nth-child(4) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.35s;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card__thumb {
  width: 100%;
  aspect-ratio: 254 / 175;
  object-fit: cover;
  border-radius: 10px;
  background: #c4c4c4;
}

.product-card__name {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 25px;
  color: #2d3748;
}

.product-card__name strong {
  font-weight: 700;
}

.product-card__desc {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 25px;
  color: #2d3748;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  align-self: flex-end;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-accent-2);
}

/* ===== Support / Customer Center ===== */
.support {
  padding-block: clamp(48px, 6vw, 80px);
}

.support__card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 64px;
  background: var(--color-support-bg);
  border-radius: 15px;
  color: var(--color-white);
}

.support__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.support__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent-3);
  border-radius: 50%;
}

.support__title {
  margin: 24px 0 16px;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 60px;
}

.support__desc {
  margin: 0;
  font-size: 20px;
  line-height: 32.5px;
  color: var(--color-footer-text);
}

.support__desc strong {
  color: var(--color-accent-3);
  font-weight: 600;
}

.support__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.support__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
  padding: 32px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  text-align: center;
}

.support__contact-icon {
  margin-bottom: 24px;
  filter: drop-shadow(var(--shadow-support-icon));
}

.support__contact-label {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.support__contact-value {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.025em;
}

/* Support — ScrollMagic scroll reveal */
.support[data-scroll-animate] .support__intro {
  opacity: 0;
  transform: translate3d(-72px, 0, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.support[data-scroll-animate] .support__contact {
  opacity: 0;
  transform: translate3d(72px, 0, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.support[data-scroll-animate]:not(.is-inview) .support__intro,
.support[data-scroll-animate]:not(.is-inview) .support__contact {
  transition-delay: 0s;
}

.support[data-scroll-animate].is-inview .support__intro {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.support[data-scroll-animate].is-inview .support__contact:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.45s;
}

.support[data-scroll-animate].is-inview .support__contact:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.75s;
}

.support[data-scroll-animate].is-inview .support__contact:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.05s;
}

/* ===== Portfolio (Figma 39:105) ===== */
.portfolio__stage {
  width: 100%;
  max-width: 1233px;
  margin-inline: auto;
}

/* Portfolio — ScrollMagic scroll reveal */
.portfolio[data-scroll-animate] .portfolio__heading {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.portfolio[data-scroll-animate] .portfolio-card--dongtan,
.portfolio[data-scroll-animate] .portfolio-card--byeollae,
.portfolio[data-scroll-animate] .portfolio-card--yeongwol,
.portfolio[data-scroll-animate] .portfolio-card--daegu {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center center;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.portfolio[data-scroll-animate]:not(.is-inview) .portfolio__heading,
.portfolio[data-scroll-animate]:not(.is-inview) .portfolio-card--dongtan,
.portfolio[data-scroll-animate]:not(.is-inview) .portfolio-card--byeollae,
.portfolio[data-scroll-animate]:not(.is-inview) .portfolio-card--yeongwol,
.portfolio[data-scroll-animate]:not(.is-inview) .portfolio-card--daegu {
  transition-delay: 0s;
}

.portfolio[data-scroll-animate].is-inview .portfolio__heading {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.portfolio[data-scroll-animate].is-inview .portfolio-card--dongtan {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.45s;
}

.portfolio[data-scroll-animate].is-inview .portfolio-card--byeollae {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.75s;
}

.portfolio[data-scroll-animate].is-inview .portfolio-card--yeongwol {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.05s;
}

.portfolio[data-scroll-animate].is-inview .portfolio-card--daegu {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.35s;
}

.portfolio__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(32px, 4vw, 97px);
  text-align: center;
}

.portfolio__heading-line {
  display: block;
  width: 69px;
  height: 5px;
  background: linear-gradient(225deg, #23bdee 0%, #23bdee 100%);
  border-radius: 2px;
}

.portfolio__heading-title {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 35px);
  line-height: 55px;
  color: var(--color-heading);
}

.portfolio__heading-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portfolio__heading-desc {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 55px;
  color: var(--color-heading);
}

.portfolio__row {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1215px;
}

.portfolio__row--1 {
  margin-bottom: 26px;
}

.portfolio__row--1 .portfolio-card--dongtan {
  flex: 0 1 732.66px;
  width: 60.3%;
  aspect-ratio: 732.66 / 612.83;
}

.portfolio__row--1 .portfolio-card--byeollae {
  flex: 0 1 458px;
  width: 37.7%;
  aspect-ratio: 458 / 613;
}

.portfolio__row--2 .portfolio-card--yeongwol {
  flex: 0 1 628px;
  width: 51.7%;
  aspect-ratio: 628 / 363.44;
}

.portfolio__row--2 .portfolio-card--daegu {
  flex: 0 1 563px;
  width: 46.3%;
  aspect-ratio: 563 / 363;
}

.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.portfolio-card__media {
  position: absolute;
  inset: 0;
}

.portfolio-card__base,
.portfolio-card__bg,
.portfolio-card__hover,
.portfolio-card__layer img {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-card__base,
.portfolio-card__bg {
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.portfolio-card__layer--top > img:not(.portfolio-card__hover),
.portfolio-card__layer--bottom {
  transition: opacity 0.35s ease;
}

.portfolio-card--dongtan .portfolio-card__base {
  object-fit: fill;
}

.portfolio-card--yeongwol .portfolio-card__bg,
.portfolio-card--daegu .portfolio-card__base {
  object-fit: fill;
}

.portfolio-card__hover {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.portfolio-card:hover .portfolio-card__hover {
  opacity: 1;
}

.portfolio-card--dongtan:hover .portfolio-card__base,
.portfolio-card--byeollae:hover .portfolio-card__base,
.portfolio-card--yeongwol:hover .portfolio-card__bg,
.portfolio-card--yeongwol:hover
  .portfolio-card__layer--top
  > img:not(.portfolio-card__hover),
.portfolio-card--yeongwol:hover .portfolio-card__layer--bottom,
.portfolio-card--daegu:hover .portfolio-card__base {
  opacity: 0;
}

.portfolio-card__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.35;
  pointer-events: none;
}

.portfolio-card__label {
  position: absolute;
  left: 23.73%;
  top: 34.5%;
  width: 52.4%;
  max-width: 240px;
  z-index: 2;
  pointer-events: none;
}

.portfolio-card__layer {
  position: absolute;
  z-index: 1;
}

.portfolio-card__layer--top {
  left: -3.42%;
  top: 0;
  width: 103.5%;
  height: 103.7%;
  overflow: hidden;
  border-radius: 16px;
}

.portfolio-card__layer--top > img:not(.portfolio-card__hover) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__layer--bottom {
  left: 0;
  top: 49.41%;
  width: 100%;
  height: 50.59%;
  object-fit: cover;
  z-index: 1;
}

.portfolio-card__tag {
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 3;
  padding: 8px 16px;
  background: var(--color-tag-bg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -0.0083em;
  color: var(--color-white);
}

.portfolio-card__tag--bottom {
  top: auto;
  bottom: 40px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 0;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.site-footer__info {
  margin: 0;
  font-size: 13px;
  line-height: 1.5em;
  color: var(--color-footer-text);
}
.site-footer__info strong {
  font-size: 18px;
}

.site-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.site-footer__social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__heading-title,
  .portfolio__heading-desc {
    line-height: 1.35;
  }
}

@media (max-width: 992px) {
  .about__stage {
    aspect-ratio: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 24px;
  }

  .about__ellipse,
  .about__title,
  .about__desc,
  .about__link,
  .about__rect,
  .about__video {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
  }

  .about__ellipse {
    width: 56px;
    flex-shrink: 0;
  }

  .about__rect--cyan,
  .about__rect--green {
    display: none;
  }

  .about__video {
    order: 2;
    aspect-ratio: 554 / 467;
    max-height: 420px;
  }

  .about__title {
    order: 0;
    margin-top: -48px;
    padding-left: 68px;
  }

  .about__desc {
    order: 1;
  }

  .about__link {
    order: 3;
  }

  .support__card {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 32px;
  }

  .support__contacts {
    width: 100%;
    justify-content: center;
  }

  .portfolio__row {
    flex-direction: column;
  }

  .portfolio__row--1,
  .portfolio__row--2 {
    margin-bottom: 24px;
  }

  .portfolio__row--1 .portfolio-card--dongtan,
  .portfolio__row--1 .portfolio-card--byeollae,
  .portfolio__row--2 .portfolio-card--yeongwol,
  .portfolio__row--2 .portfolio-card--daegu {
    width: 100%;
    flex: 1 1 auto;
    min-height: 280px;
    aspect-ratio: auto;
  }

  .portfolio__row--1 .portfolio-card--dongtan {
    min-height: 360px;
  }

  .portfolio__row--1 .portfolio-card--byeollae {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-toggle-btn {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-white);
    padding: 16px 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-nav__item + .site-nav__item > .site-nav__link,
  .site-nav__item + .site-nav__item > .site-nav__trigger {
    margin-left: 0;
  }

  .site-nav__link,
  .site-nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    white-space: normal;
  }

  .site-nav__sub {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    background: #f8fafc;
  }

  .site-nav__item.is-open > .site-nav__sub,
  .site-nav__item.is-open > .site-nav__mega {
    display: block;
  }

  .site-nav__mega {
    position: static;
    display: none;
    min-width: 0;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: #f8fafc;
    overflow: hidden;
  }

  .site-nav__mega-categories {
    min-width: 0;
    border-right: none;
    padding: 0;
  }

  .site-nav__mega-category-btn {
    color: var(--color-nav);
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__mega-category.is-active .site-nav__mega-category-btn {
    color: var(--color-nav-active);
    background: #eef6fa;
  }

  .site-nav__mega-panel {
    position: static;
    display: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: #f1f5f9;
    border-left: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__mega-category.is-active > .site-nav__mega-panel {
    display: block;
  }

  .site-nav__mega-link {
    color: var(--color-nav);
    padding: 10px 16px 10px 28px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__mega-panel-item:last-child .site-nav__mega-link {
    border-bottom: none;
  }

  .site-nav__mega-category.is-active .site-nav__chevron--right {
    transform: rotate(90deg);
  }

  .site-nav__sub--depth-2 {
    padding-left: 12px;
  }

  .site-nav__sub--depth-3 {
    padding-left: 12px;
    background: #f1f5f9;
  }

  .site-nav__sublink,
  .site-nav__sub .site-nav__trigger {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__sub .site-nav__chevron {
    transform: rotate(0deg);
  }

  .site-nav__item.is-open > .site-nav__trigger .site-nav__chevron {
    transform: rotate(180deg);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .nav-toggle:checked ~ .header-actions .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .header-actions .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .header-actions .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-inner {
    flex-wrap: nowrap;
    position: relative;
    gap: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: 480px;
  }

  .hero__title {
    font-size: 32px;
  }

  .section-heading__title,
  .section-heading__desc {
    line-height: 1.4;
  }

  .support__contact {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  .container {
    --container: calc(100% - 32px);
  }

  .header-inner {
    padding: 12px 16px;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .support__card {
    padding: 32px 20px;
  }

  .portfolio-card__tag {
    left: 20px;
    top: 20px;
    font-size: 16px;
  }

  .portfolio-card__tag--bottom {
    top: auto;
    bottom: 20px;
  }

  .portfolio-card__label {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
  }
}

/** 서브 css */

/* Page intro */
.page-intro {
  padding: 100px 16px 50px;
}

.page-intro__inner {
  max-width: 1233px;
  margin: 0 auto;
}

.page-intro__title {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.5;
  color: var(--color-black);
}

.page-intro__desc {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-black);
}

/* Sub navigation */
.subnav {
  padding: 0 16px;
  margin-top: 0;
}

.subnav__inner {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 60px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.subnav__category {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 15px;
  line-height: 22.5px;
  color: var(--color-heading);
  border-right: 1px solid var(--color-border);
  white-space: nowrap;
}

.subnav__tabs {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.subnav__scroll {
  display: none;
  align-items: center;
  justify-content: center;
  width: 70px;
  border-right: 1px solid var(--color-border);
  flex-shrink: 0;
}
.subnav__scroll img {
  transform: rotate(180deg);
}

.subnav__tab {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 213px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  color: var(--color-nav-active);
  background: var(--color-white);
}

.subnav__control {
  display: flex;
  align-items: stretch;
  min-width: 0;
  position: relative;
  z-index: 20;
}

.subnav__dropdown {
  position: relative;
  flex: 1;
  min-width: 0;
}

.subnav__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  color: var(--color-nav-active);
  background: var(--color-white);
  text-align: left;
  cursor: pointer;
  outline: none;
}

.subnav__trigger:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-accent-2);
}

.subnav__trigger-text {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.subnav__trigger-category {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--color-nav);
}

.subnav__trigger-sep {
  flex-shrink: 0;
  font-weight: 400;
  color: var(--color-text);
}

.subnav__trigger-leaf {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-nav-active);
}

.subnav__trigger-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.subnav__dropdown.is-open .subnav__trigger-chevron {
  transform: rotate(180deg);
}

.subnav__menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 50;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.subnav__dropdown.is-open .subnav__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.subnav__link {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: var(--color-nav);
  text-align: left;
  white-space: nowrap;
}

.subnav__link:hover,
.subnav__link.is-active {
  color: var(--color-nav-active);
  background: #f8fafc;
}

/* Subnav — 3depth mega (PRODUCTS) */
.subnav__mega {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 50;
  display: flex;
  min-width: 460px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.subnav__dropdown.is-open .subnav__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.subnav__mega-categories {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 180px;
  border-right: 1px solid var(--color-border);
  position: relative;
  flex-shrink: 0;
}

.subnav__mega-category {
  position: relative;
}

.subnav__mega-category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: var(--color-nav);
  text-align: left;
  cursor: pointer;
}

.subnav__mega-category.is-active .subnav__mega-category-btn,
.subnav__mega-category-btn:hover {
  color: var(--color-nav-active);
  background: #f8fafc;
}

.subnav__mega-chevron {
  flex-shrink: 0;
  opacity: 0.7;
}

.subnav__mega-category.is-active .subnav__mega-chevron {
  opacity: 1;
}

.subnav__mega-panel {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.subnav__mega-category.is-active > .subnav__mega-panel,
.subnav__mega-panel.is-active {
  display: block;
}

.subnav__mega-link {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: var(--color-nav);
}

.subnav__mega-link:hover,
.subnav__mega-link.is-active {
  color: var(--color-nav-active);
  background: #f8fafc;
}

@media (min-width: 769px) {
  .subnav__mega {
    min-height: 120px;
  }

  .subnav__mega-panel {
    position: absolute;
    top: 0;
    left: 180px;
    right: 0;
    min-width: 280px;
    min-height: 100%;
    background: var(--color-white);
    border-left: 1px solid var(--color-border);
  }
}

@media (max-width: 768px) {
  .subnav__mega {
    left: 0;
    right: 0;
    min-width: 0;
    flex-direction: column;
  }

  .subnav__mega-categories {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .subnav__mega-panel {
    position: static;
    min-width: 0;
    border-left: none;
    background: #f8fafc;
  }
  .subnav {
    padding: 0;
  }
}

/* CEO main */
.ceo-main {
  max-width: var(--ceo-content);
  margin: 0 auto;
  padding: 96px 24px 120px;
}

/* CEO message */
.ceo-message__inner {
  display: grid;
  grid-template-columns: minmax(280px, 506px) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: 128px;
}

.ceo-message__visual {
  position: relative;
}

.ceo-message__corner {
  position: absolute;
  width: 128px;
  height: 128px;
  border: 4px solid rgba(0, 204, 255, 0.3);
  pointer-events: none;
  z-index: 2;
}

.ceo-message__corner--tl {
  top: -24px;
  left: -24px;
  border-right: none;
  border-bottom: none;
  border-radius: 24px 0 0 0;
}

.ceo-message__corner--br {
  right: 0;
  bottom: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 24px 0;
}

.ceo-message__photo {
  position: relative;
  height: 640px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-photo);
}

.ceo-message__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.ceo-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ceo-message__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ceo-message__eyebrow-line {
  width: 48px;
  height: 4px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.ceo-message__eyebrow-text {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.025em;
  color: var(--color-heading);
}

.ceo-message__brand {
  margin: 0 0 48px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-accent);
}

.ceo-message__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
}

.ceo-message__text {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 350;
  font-size: 18px;
  line-height: 32.4px;
  color: var(--color-text);
}

.ceo-message__text strong {
  font-weight: 500;
  color: var(--color-heading);
}

.ceo-message__quote {
  margin: 0;
  padding: 23px 24px 24px;
  background: var(--color-quote-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
}

.ceo-message__quote p {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 17px;
  line-height: 28.9px;
  color: var(--color-heading);
}

.ceo-message__thanks {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 350;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-text);
}

.ceo-message__signoff {
  padding-top: 64px;
  border-top: 1px solid var(--color-quote-border);
}

.ceo-message__role {
  margin: 0 0 8px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-role);
}

.ceo-message__signature {
  width: min(320px, 100%);
  height: auto;
}

/* Values */
.ceo-values__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 64px;
  border-top: 1px solid var(--color-quote-border);
}

.ceo-value__num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-accent);
}

.ceo-value__title {
  margin: 0 0 7px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-heading);
}

.ceo-value__desc {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 350;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--color-text);
}
.page-banner {
  height: 360px;
  overflow: hidden;
  background: var(--color-banner-bg);
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Responsive */
@media (max-width: 1200px) {
  .ceo-values__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 992px) {
  .ceo-message__inner {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .ceo-message__photo {
    height: min(520px, 70vw);
  }

  .ceo-message__corner--br {
    display: none;
  }

  .page-intro {
    padding-top: 120px;
    padding-bottom: 32px;
  }
}
.wp-site-blocks{
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .nav-toggle-btn {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-white);
    padding: 16px 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-nav__item + .site-nav__item > .site-nav__link,
  .site-nav__item + .site-nav__item > .site-nav__trigger {
    margin-left: 0;
  }

  .site-nav__link,
  .site-nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    white-space: normal;
  }

  .site-nav__sub {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    background: #f8fafc;
  }

  .site-nav__item.is-open > .site-nav__sub,
  .site-nav__item.is-open > .site-nav__mega {
    display: block;
  }

  .site-nav__mega {
    position: static;
    display: none;
    min-width: 0;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: #f8fafc;
    overflow: hidden;
  }

  .site-nav__mega-categories {
    min-width: 0;
    border-right: none;
    padding: 0;
  }

  .site-nav__mega-category-btn {
    color: var(--color-nav);
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__mega-category.is-active .site-nav__mega-category-btn {
    color: var(--color-nav-active);
    background: #eef6fa;
  }

  .site-nav__mega-panel {
    position: static;
    display: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: #f1f5f9;
    border-left: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__mega-category.is-active > .site-nav__mega-panel {
    display: block;
  }

  .site-nav__mega-link {
    color: var(--color-nav);
    padding: 10px 16px 10px 28px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__mega-panel-item:last-child .site-nav__mega-link {
    border-bottom: none;
  }

  .site-nav__mega-category.is-active .site-nav__chevron--right {
    transform: rotate(90deg);
  }

  .site-nav__sub--depth-2 {
    padding-left: 12px;
  }

  .site-nav__sub--depth-3 {
    padding-left: 12px;
    background: #f1f5f9;
  }

  .site-nav__sublink,
  .site-nav__sub .site-nav__trigger {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__sub .site-nav__chevron {
    transform: rotate(0deg);
  }

  .site-nav__item.is-open > .site-nav__trigger .site-nav__chevron {
    transform: rotate(180deg);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .nav-toggle:checked ~ .header-actions .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .header-actions .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .header-actions .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-inner {
    flex-wrap: nowrap;
    position: relative;
    gap: 12px;
  }

  .header-actions {
    gap: 8px;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .logo img{
    min-width: 180px;
  }

  .page-banner {
    height: 240px;
  }

  .subnav__inner {
    max-width: 100%;
  }

  .subnav__category {
    border-right: none;
    padding: 16px;
  }
  .subnav__trigger {
    padding: 0 16px;
  }

  .ceo-main {
    padding: 64px 0 80px;
  }

  .ceo-values__inner {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
}

/* History main (Figma 29:101) */
.history-main {
  margin: 0;
  padding: 0;
}

.history-section {
  background: var(--color-history-bg);
  padding: 96px 24px;
}

.history-section__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: var(--history-content);
  margin: 0 auto;
  width: 100%;
}

.history-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.history-section__title {
  margin: 0;
  font-family: var(--font-inter), var(--font-noto), var(--font-pretendard);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
  color: var(--color-heading);
}

.history-section__bar {
  display: block;
  width: 80px;
  height: 6px;
  border-radius: 9999px;
  background: var(--color-history-bar);
}

/* Timeline */
.history-timeline {
  position: relative;
  width: 100%;
  padding-bottom: 48px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 148px;
  top: 15px;
  bottom: 48px;
  width: 2px;
  background: var(--color-timeline-line);
}

.history-year-group {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-end;
  margin-bottom: 96px;
}

.history-year-group:last-of-type {
  margin-bottom: 0;
}

.history-year {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.history-year__label {
  flex-shrink: 0;
  width: 150px;
  margin: 0;
  padding: 8px 48px 0 0;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -2px;
  text-align: right;
  color: var(--color-history-blue);
}

.history-year__content {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-left: 48px;
}

.history-year__marker {
  position: absolute;
  left: -9px;
  top: 14px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--color-history-blue);
  border-radius: 50%;
  background: var(--color-white);
  z-index: 1;
}

.history-year__events {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.history-year__divider {
  display: none;
  width: min(850px, calc(100% - 150px));
  margin-left: 150px;
  height: 1px;
}

.history-event {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.history-event--stack {
  align-items: flex-start;
}

.history-event--stack .history-event__month {
  padding-top: 3px;
}

.history-event__month {
  flex-shrink: 0;
  font-family: var(--font-inter), var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-history-blue);
}

.history-event__text {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 20px;
  line-height: 32.5px;
  color: var(--color-black);
  margin: 0;
  padding: 7px;
}

.history-event__texts {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.history-event__texts--sm {
  gap: 8px;
}

.history-event__texts--md {
  gap: 16px;
}

.history-event__texts p {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 20px;
  line-height: 32.5px;
  color: var(--color-black);
}

.board-container{
  max-width: var(--container);
  margin: 0 auto;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .board-container{
    box-sizing: border-box;
  }
  .history-section {
    padding: 64px 24px;
  }

  .history-section__inner {
    gap: 48px;
  }

  .history-timeline::before {
    left: -2px;
    top: 70px;
  }

  .history-year {
    flex-direction: column;
    gap: 24px;
  }

  .history-year__label {
    width: auto;
    padding: 0 0 0 48px;
    text-align: left;
    font-size: 32px;
    line-height: 32px;
  }

  .history-year__content {
    padding-left: 48px;
  }

  .history-year__marker {
    left: -9px;
  }

  .history-year__divider {
    margin-left: 24px;
    width: calc(100% - 24px);
  }

  .history-year-group {
    margin-bottom: 64px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
    align-items: flex-end;
  }
  .ceo-message__corner--tl {
    display: none;
  }

  .history-section {
    padding: 48px 16px;
  }

  .history-section__title {
    font-size: 28px;
    line-height: 34px;
  }

  .history-event {
    gap: 16px;
  }

  .history-event__month {
    font-size: 16px;
    line-height: 24px;
  }

  .history-event__text,
  .history-event__texts p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* PR main */
.pr-main {
  padding: 80px 24px 120px;
}

.pr-video-section {
  max-width: var(--pr-section-max);
  margin: 0 auto;
}

.pr-video-section__inner {
  background: var(--color-pr-bg);
  border-radius: 15px;
  padding: 12px 16px 48px;
}

/* Video player */
.pr-player {
  margin-bottom: 19px;
}

.pr-player__media {
  position: relative;
  height: min(703px, 56vw);
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-black);
  box-shadow: var(--shadow-video);
}

.pr-player__thumb {
  position: absolute;
  left: 0;
  top: -32%;
  width: 100%;
  height: 364%;
  max-width: none;
  object-fit: cover;
  opacity: 0.6;
}

.pr-player__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.pr-player__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 0 0 0 4px;
  border-radius: 50%;
  background: var(--color-pr-play-bg);
  border: 1px solid var(--color-pr-play-border);
  box-shadow: var(--shadow-play);
  backdrop-filter: blur(2px);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.pr-player__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(64, 166, 207, 1);
}

.pr-player__brand {
  position: absolute;
  left: 40px;
  bottom: 40px;
  opacity: 0.4;
  pointer-events: none;
}

.pr-player__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--color-pr-progress-track);
}

.pr-player__progress-bar {
  display: block;
  height: 100%;
  background: var(--color-nav-active);
}

.pr-player__time {
  position: absolute;
  right: 32px;
  bottom: 24px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.5);
}

/* Feature cards */
.pr-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.pr-feature {
  position: relative;
  padding: 32px;
  border: 1px solid var(--color-pr-card-border);
  border-radius: 12px;
  background: var(--color-pr-card-bg);
}

.pr-feature--active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-nav-active);
  border-radius: 12px 12px 0 0;
}

.pr-feature__title {
  margin-bottom: 8px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-white);
}

.pr-feature__desc {
  font-family: var(--font-noto);
  font-weight: 350;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-pr-text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
  .pr-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .pr-main {
    padding: 64px 24px 80px;
  }

  .pr-player__media {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .pr-main {
    padding: 48px 0 80px;
  }

  .pr-video-section__inner {
    padding: 12px 12px 32px;
  }

  .pr-player__play {
    width: 72px;
    height: 72px;
  }

  .pr-player__play img {
    width: 22px;
    height: auto;
  }

  .pr-player__brand {
    left: 20px;
    bottom: 28px;
    width: 120px;
    height: auto;
  }

  .pr-player__time {
    right: 16px;
    bottom: 16px;
    font-size: 12px;
  }

  .pr-feature {
    padding: 24px;
  }
}

.certified-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.certified-list li {
  width: calc(100% / 4 - 24px);
  height: auto;
  display: flex;
  padding: 0;
  margin: 0;
}
.certified-list li img {
  width: 100%;
}
.certified-list.type01 li img {
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Product main */
.product-main {
  max-width: var(--product-content);
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.product-detail__title {
  margin: 0 0 29px;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--color-text-primary);
}

.product-detail__visual {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.product-detail__visual img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.product-detail__desc {
  margin-bottom: 68px;
  max-width: 1284px;
}

.product-detail__desc p {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-primary);
  margin: 0;
}

/* Product features */
.product-features__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
}

.product-features__icon {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.product-features__icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.product-features__icon-cell--tl {
  background: var(--color-icon-green-dark);
}

.product-features__icon-cell--tr {
  background: var(--color-icon-green-light);
}

.product-features__icon-cell--bl {
  background: var(--color-icon-green-light);
}

.product-features__icon-cell--br {
  background: var(--color-icon-green-dark);
}

.product-features__icon-check {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-46%, -50%);
  width: 22px;
  height: auto;
}

.product-features__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.product-features__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
  margin-bottom: 34px;
  padding-bottom: 0;
  list-style: none;
}

.product-features__highlights li {
  position: relative;
  padding-left: 15px;
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-primary);
  list-style: none;
  margin: 0;
}
.product-features__highlights li::marker {
  display: none;
}

.product-features__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-feature-bullet);
}

.product-features__highlights li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 11px;
  width: 1px;
  height: 12px;
  background: var(--color-feature-divider);
}

.product-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

.product-features__list {
  margin: 0;
  padding: 0;
}
.product-features__list li {
  position: relative;
  margin-bottom: 34px;
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-primary);
  list-style: none;
  padding-left: 30px;
}

.product-features__list li:last-child {
  margin-bottom: 0;
}

.product-features__num {
  font-weight: 500;
  color: var(--color-heading);
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .product-features__highlights li:not(:last-child)::after {
    display: none;
  }

  .product-features__highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .product-main {
    padding: 64px 24px 80px;
  }

  .product-features__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .product-main {
    padding: 48px 0 80px;
  }

  .product-detail__visual img {
    height: min(220px, 44vw);
  }

  .product-detail__desc {
    margin-bottom: 48px;
  }

  .product-features__list li {
    margin-bottom: 24px;
  }
}

/* Q&A main */
.qna-main {
  background: var(--color-section-bg);
  padding: 80px 24px 120px;
}

.qna-card {
  max-width: var(--qna-card-max);
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.qna-card__inner {
  max-width: var(--qna-form-max);
  margin: 0 auto;
  padding: 64px;
}

.qna-card__header {
  margin-bottom: 40px;
}

.qna-card__title {
  margin: 0 0 8px;
  font-family: var(--font-inter), var(--font-noto), var(--font-pretendard);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-title);
}

.qna-card__desc {
  margin: 0;
  font-family: var(--font-inter), var(--font-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-desc);
}

/* Form */
.qna-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.qna-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.qna-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qna-field__label {
  font-family: var(--font-inter), var(--font-noto);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--color-label);
}

.qna-field__label-ko {
  font-family: var(--font-noto);
  font-weight: 700;
  color: var(--color-nav-active);
  text-transform: none;
  letter-spacing: 0;
}

.qna-field__control {
  position: relative;
}

.qna-field__icon {
  position: absolute;
  left: 16px;
  top: 23px;
  pointer-events: none;
  z-index: 2;
}
.location-map .cont{
  display: none !important;
}
.qna-field__icon--top {
  top: 20px;
  transform: none;
}
.qna-form br{
  display: none;
}
.qna-field__control input,
.qna-field__control textarea {
  width: 100%;
  padding: 16px 16px 16px 44px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--color-input-bg);
  font-family: var(--font-noto);
  font-weight: 350;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-title);
  transition: border-color 0.2s ease;
}

.qna-field__control input::placeholder,
.qna-field__control textarea::placeholder {
  color: var(--color-placeholder);
}

.qna-field__control input:focus,
.qna-field__control textarea:focus {
  outline: none;
  border-color: var(--color-nav-active);
}

.qna-field__control textarea {
  min-height: 152px;
  resize: vertical;
}

.qna-form__submit,
.wpcf7-form-control.wpcf7-submit.has-spinner{
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: var(--color-nav-active);
  box-shadow: var(--shadow-submit);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.1px;
  color: var(--color-white);
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}
.wpcf7-spinner{
  display: none;
}
.qna-form__submit:hover {
  background: #3699c4;
}

.qna-form__submit:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 992px) {
  .qna-main {
    padding: 64px 24px 80px;
  }

  .qna-card__inner {
    padding: 48px 40px;
  }
}

@media (max-width: 768px) {
  .qna-main {
    padding: 48px 0 80px;
  }

  .qna-card__inner {
    padding: 32px 24px;
  }

  .qna-form__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .certified-list {
    gap: 15px;
  }
  .certified-list li {
    width: calc(100% / 2 - 8px);
  }
}

/* ===== Location (Figma 217:865) ===== */
.location-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.location-info-container {
  width: 100%;
  max-width: 465px;
}
.location-map {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.location-info {
  padding: 32px;
  background: var(--color-white);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
#daumRoughmapContainer1788355943805{
  width: 100% !important;
  height: 414px !important;
}
#daumRoughmapContainer1788355943805 .wrap_map{
  height: 413px !important;
}
.location-info__title {
  margin: 0 0 24px;
  font-family: var(--font-inter), var(--font-noto), var(--font-pretendard);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #808080;
}

.location-info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.location-info__icon--blue {
  background: #eff6ff;
}

.location-info__icon--gray {
  background: #f8fafc;
}

.location-info__icon img {
  display: block;
  width: 16px;
  height: auto;
}

.location-info__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.location-info__label {
  font-family: var(--font-inter), var(--font-noto), var(--font-pretendard);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.location-info__value {
  margin: 0;
  font-family: var(--font-inter), var(--font-noto), var(--font-pretendard);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.08px;
  color: #292e33;
  word-break: keep-all;
}

.location-info__value a {
  color: inherit;
}

.location-info__value a:hover {
  color: var(--color-nav-active);
}

.location-info__sep {
  margin: 0 4px;
}

@media (max-width: 768px) {
  .location-info {
    padding: 24px;
  }

  .location-info__value {
    font-size: 16px;
    line-height: 24px;
  }
  html #wpadminbar{
    display: none !important;
  }
  .location-container{
    flex-direction: column;
  }
  .history-section__inner{
    max-width: 100%;
  }
  .qna-form__submit,
  .wpcf7-form-control.wpcf7-submit.has-spinner{
    padding: 10px;
  }
  .qna-field__control textarea{
    min-height: 80px;
    height: 120px;
  }
}
