/* ============================================
   TIMBOT — variables.css
   ✅ 컬러 변경은 여기서만 하면 전체 적용
   ============================================ */


:root {

  /* ── 브랜드 컬러 ─────────────────────────── */
  --color-black:       #000000;
  --color-white:       #ffffff;
  --white:             #ffffff;
  --black:             #000000;

  /* 블루 (#00A1FF) */
  --color-blue:        #00A1FF;
  --color-blue-light:  #00A1FF;
  --color-blue-dark:   #00A1FF;
  --color-blue-soft:   rgba(0, 161, 255, 0.12);
  --color-blue-glow:   rgba(0, 161, 255, 0.35);
  --color-blue-ring:   rgba(0, 161, 255, 0.22);
 
  /* 시안 (#1FE3FF) */
  --color-cyan:        #1fceff;
  --color-cyan-light:  #1fceff;
  --color-cyan-dark:   #1fceff;
  --color-cyan-soft:   rgba(31, 206, 255, 0.12);
  --color-cyan-glow:   rgba(31, 206, 255, 0.35);
  --color-cyan-ring:   rgba(31, 206, 255, 0.22);
 
  /* 그레이 스케일 */
  --color-gray-50:     #f7f7f7;
  --color-gray-100:    #f0f0f0;
  --color-gray-200:    #e0e0e0;
  --color-gray-300:    #c2c2c2;
  --color-gray-400:    #9e9e9e;
  --color-gray-500:    #6b6b6b;
  --color-gray-600:    #484848;
  --color-gray-700:    #2c2c2c;
  --color-gray-800:    #1a1a1a;
  --color-gray-900:    #0d0d0d;

  /* ── UI 시맨틱 컬러 ──────────────────────── */
  --color-bg:          var(--color-white);
  --color-bg-subtle:   var(--color-gray-50);
  --color-bg-dark:     var(--color-gray-900);
  --color-text:        var(--color-gray-800);
  --color-text-muted:  var(--color-gray-400);
  --color-text-faint:  var(--color-gray-300);
  --color-border:      var(--color-gray-200);
  --color-border-dark: rgba(255,255,255,0.07);

  /* ── 네비게이션 ──────────────────────────── */
  --nav-bg:            rgba(0, 0, 0, 0.9);
  --nav-text:          rgba(255,255,255,0.70);
  --nav-text-hover:    var(--color-white);
  --nav-border:        rgba(255,255,255,0.07);
  --nav-cta-bg:        var(--color-cyan);
  --nav-cta-text:      var(--color-black);

  /* ── 버튼 ────────────────────────────────── */
  --btn-primary-bg:    var(--color-cyan);
  --btn-primary-text:  var(--color-black);
  --btn-ghost-border:  var(--color-cyan);
  --btn-ghost-text:    var(--color-cyan);

  /* ── 제품 A (시안) ───────────────────────── */
  --product-s-primary: var(--color-cyan);
  --product-s-dark:    var(--color-cyan-dark);
  --product-s-glow:    var(--color-cyan-glow);
  --product-s-ring:    var(--color-cyan-ring);

  /* ── 제품 B (다크 그레이) ────────────────── */
  --product-d-primary: var(--color-gray-300);
  --product-d-dark:    var(--color-gray-500);
  --product-d-glow:    rgba(194, 194, 194, 0.2);
  --product-d-ring:    rgba(194, 194, 194, 0.15);

  /* ── 타이포그래피 ────────────────────────── */
  --font-sans:    'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Pretendard Variable', 'Pretendard', sans-serif;

  /* ── 레이아웃 ────────────────────────────── */
  --nav-h:      52px;
  --nav-padding:40px;
  /* --footer-h: 350px; */

  /* --container:  980px; */
  --container:  1200px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* ── 트랜지션 ────────────────────────────── */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.35s var(--ease);

}
/* ============================================
   TIMBOT — base.css
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html.is-main {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
  overflow-y: scroll; /* html이 스크롤 컨테이너임을 명확히 */
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
}

/* html이 snap 컨테이너일 때 body가 스크롤 가로채지 않도록 */
html.is-main body {
  overflow: visible;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: var(--font-sans);
}

/* ── 컨테이너 ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section{
  height: 100vh;
}

/* ── 섹션 레이블 ───────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── 섹션 타이틀 ───────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.section-title--light {
  color: var(--color-white);
}

/* ── Reveal 애니메이션 ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 다크 배경용 텍스트 컬러 override ─────── */
.on-dark .section-label {
  color: var(--color-cyan-light);
}

.on-dark .section-title {
  color: var(--color-white);
} 

/* ── 스크롤 스냅 유틸리티 ──────────────────── */
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 0; /* 항상 상단 기준으로 스냅 */
}

.snap-section--tall {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 0; /* 항상 상단 기준으로 스냅 */
  height: auto;
  min-height: 100vh;
}

/*메시지창*/
.Msg_Open {
  min-width: 200px;
  position: fixed;
  top: 0;
  right: 10px;
  color: #204EAC;
  background-color: #C7D6F5;
  border: 1px solid #497ADE;
  z-index: 9999999;
  border-radius: 4px;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
}

.Msg_Open.blue {
  color: #204EAC;
  background-color: #C7D6F5;
  border: 1px solid #497ADE;
}

.Msg_Open.red {
  color: #ffffff;
  background-color: #D9534F;
  border: 1px solid #9B2522;
}




iframe#hiddenFrame {
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  background-color: #fff;
  border: 0;
  display: none;
  position: fixed;
  z-index: 9999;
}

iframe#hiddenFrame.off {
  width: 0;
  height: 0;
  border: 0;
  display: none;
}

iframe#hiddenFrame.on {
  width: 100%;
  height: 300px;
  background-color: #fff;
  border: 3px solid #FF0000;
  display: block;
  resize: vertical;
  overflow: auto;
}/* ============================================
   TIMBOT — buttons.css
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 980px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}

/* Primary — 시안 */
.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}
.btn--primary:hover {
  background: var(--color-cyan-light);
  transform: scale(1.025);
  box-shadow: 0 6px 28px var(--color-cyan-glow);
}

/* Ghost — 시안 아웃라인 */
.btn--ghost {
  background: transparent;
  color: var(--btn-ghost-text);
  border: 1.5px solid var(--btn-ghost-border);
}
.btn--ghost:hover {
  background: var(--color-cyan);
  color: var(--color-black);
  box-shadow: 0 4px 20px var(--color-cyan-soft);
}

/* Ghost Light — 흰 테두리 (다크 배경용) */
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.70);
  border: 1.5px solid rgba(255,255,255,0.20);
}
.btn--ghost-light:hover {
  border-color: rgba(255,255,255,0.65);
  color: var(--color-white);
}

/* Ghost Dark — 회색 테두리 (라이트 배경용) */
.btn--ghost-dark {
  background: transparent;
  color: var(--color-gray-500);
  border: 1.5px solid var(--color-gray-200);
}
.btn--ghost-dark:hover {
  border-color: var(--color-gray-700);
  color: var(--color-gray-800);
}

/* Full width */
.btn--full { width: 100%; }
/* ============================================
   TIMBOT — nav.css
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--nav-padding);
  background: var(--nav-bg);
  opacity: 0.4;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--nav-border);
}

/* 로고 */
.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.75; }

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--color-white);
  display: flex;
  align-items: baseline;
}
.nav__logo-text .dot {
  color: var(--color-cyan);
  margin-left: 1px;
}
/* 링크 목록 */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--nav-text);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--color-cyan);
}

/* 언어 셀렉트 */
.nav__language {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 980px;
  color: rgba(255,255,255,0.70);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.8rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), color var(--transition);
}
.nav__language:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.nav__language option {
  background: #111;
  color: var(--color-white);
}

/* CTA 버튼 */
.nav__cta {
  background: var(--nav-cta-bg) !important;
  color: var(--nav-cta-text) !important;
  padding: 0.42rem 1.05rem;
  border-radius: 980px;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  transition: opacity var(--transition), box-shadow var(--transition) !important;
}
.nav__cta:hover {
  opacity: 0.88 !important;
  box-shadow: 0 4px 18px var(--color-cyan-glow) !important;
}
.nav__cta--active { opacity: 0.88; }

/* 햄버거 */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 2px;
}

/* 모바일 메뉴 */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 24px 1.5rem;
  transform: translateY(-150%);
  transition: transform 0.32s var(--ease);
  border-bottom: 1px solid var(--nav-border);
}
.mobile-menu.open { transform: translateY(10%); }

.mobile-menu a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-cyan); }
.mobile-menu li:last-child a { border-bottom: none; }

.mobile-menu select {
  display: block;
  width: 100%;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  outline: none;
  cursor: pointer;
  font-family: var(--font-sans);
  -webkit-appearance: none;
  appearance: none;
}
.mobile-menu select option {
  background: #111;
  color: var(--color-white);
}

/* 반응형 */
@media (max-width: 768px) {
  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }
}

/* Logo image size adjustment */
.nav__logo-img {
  height: 20px; /* Adjust to match nav height */
  width: auto;
}
/* ============================================
   TIMBOT — footer.css
   ============================================ */

.footer {
  /* height: var(--footer-h); */
  background: var(--color-black);
  color: var(--color-white);
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  transition: opacity var(--transition);
}
.footer__logo:hover { opacity: 0.7; }

/* ---- Mobile scroll hint & dot navigation ---- */
@media (max-width: 768px) {
  .scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 9999;
    transition: opacity .4s ease;
  }
  .scroll-hint.hidden { opacity: 0; }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
  }
  .dot-nav {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 9998;
  }
  .dot-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    transition: background .3s;
  }
  .dot-nav button.active {
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
  }
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--color-white);
  display: flex;
  align-items: baseline;
}
.footer__logo-text .dot {
  color: var(--color-cyan);
  margin-left: 1px;
}
.footer__brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1FE3FF;
  margin-bottom: 0.3rem;
}

.footer__col a {
  font-size: 0.85rem;
  font-weight: 400;
  color: white;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-cyan); }
.footer__logo-img {
  height: 80px;
  width: auto;
}










.footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1rem;
}

.footer__contact-img{
  height: 25px;
  width: auto;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color:#FF931F;
  font-weight:bold;
  font-size: 22px;
}










.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid white;
  padding: 30px 0;
}

.footer__bottom p {
  font-size: 13px;
  font-weight: 100;
  color: white;
}

.footer__legal {
  display: flex;
  gap: 0.5rem;
}

.footer__legal a {
  font-size: 13px;
  font-weight: 100;
  color: white;
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* 반응형 */
@media (max-width: 768px) {
  .footer__top    { flex-direction: column; gap: 2rem; }
  .footer__links  { gap: 2rem; flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}


/* ============================================
   TIMBOT — sections.css
   index.php 전용 섹션 스타일
   ============================================ */

/* ── HERO HEADER — 텍스트 영역 ─────────────── */
.hero-header {
  position: relative;
  width: 100%;
  background: var(--color-black);
  padding: calc(var(--nav-h) + 72px) 24px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-header__content {
  position: relative;
  z-index: 2;
}

.hero-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.2s forwards;
}

.hero-header__sub {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.82rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.5s forwards;
}

/* ── HERO VIDEO — 영상 영역 ─────────────────── */
.hero-video {
  position: relative;
  width: 100%;
  background: var(--color-black);
  overflow: hidden;
}

/* [이전 버전] 풀스크린 커버형 (헤더 겹침, height 100vh, object-fit: cover) */
.hero-video.hero-video--full {
  height: 100vh;
  margin-top: 0;
}
.hero-video.hero-video--full .hero__video {
  object-fit: cover;
}

/* [현재 버전] 16:9 비율 고정형 (헤더 오프셋, aspect-ratio 16/9, object-fit: contain) */
.hero-video.hero-video--fit {
  aspect-ratio: 16 / 9;
  max-height: 100vh;
  margin-top: var(--nav-h);
}
.hero-video.hero-video--fit .hero__video {
  object-fit: contain;
}

.hero-video .hero__video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video .hero__video-thumb {
  position: absolute;
  inset: 0;
  background: var(--color-black);
  transition: opacity 0.8s ease;
  z-index: 2;
}

.hero-video .hero__video-thumb.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hero-video .hero__video.ready {
  opacity: 1;
}

.hero-video .hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.45) 100%);
  z-index: 3;
}

/* ── HERO (기존 full-screen hero - 다른 페이지 호환) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: orbFloat 9s ease-in-out infinite;
}

.hero__orb--1 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--color-gray-600) 0%, transparent 70%);
  bottom: -140px;
  right: -100px;
  animation-delay: -4s;
  opacity: 0.2;
}

.hero__orb--3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--color-cyan-dark) 0%, transparent 70%);
  top: 55%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation-delay: -7s;
  opacity: 0.18;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(28px, -18px) scale(1.04);
  }

  66% {
    transform: translate(-18px, 14px) scale(0.97);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) forwards;
}

.hero__title-line:nth-child(1) {
  animation-delay: 0.35s;
}

.hero__title-line:nth-child(2) {
  animation-delay: 0.5s;
}

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

.hero__sub {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.65s forwards;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 1.1s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--color-cyan), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.9;
    transform: scaleY(1.18);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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























/* ── PRODUCT SHOWCASE (이미지 스타일 수평 레이아웃) ── */
.product-showcase {
  /* height: calc(100vh - var(--nav-h)); */
  height: 100vh;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
}

/* 텍스트 영역 */
.product-showcase__text {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vh, 100px) clamp(40px, 5vw, 80px) clamp(60px, 8vh, 100px) clamp(40px, 6vw, 100px);
}

/* "PRODUCT" 상단 레이블 */
.product-showcase__label {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

/* 큰 제목 "TIMBOT - S" */
.product-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

/* 설명 텍스트 */
.product-showcase__desc {
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  line-height: 1.4;
  color: var(--color-black-600);
  margin-top: clamp(1.8rem, 4vh, 3rem);
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
  word-break: keep-all;
}

.product-showcase__desc strong {
  font-weight: 700;
  color: var(--color-gray-900);
}

/* "View more →" 버튼 */
.product-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border: 1.5px solid var(--color-blue);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
  width: fit-content;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  letter-spacing: 0.02em;
  margin-top: clamp(1.8rem, 4vh, 3rem);
}

.product-showcase__btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/* 이미지 영역 */
.product-showcase__visual {
  flex: 1;
  position: relative;
  display: flex;
  padding: 0;
  background: var(--color-white);
  overflow: hidden;
}

.product-showcase__img {
  width: 80%;
  max-width: 840px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: -2%;
  transition: transform 0.7s var(--ease);
}

.product-showcase:hover .product-showcase__img {
  transform: translateY(-8px) scale(1.02);
}

/* 반응형 */
@media (max-width: 900px) {
  .product-showcase {
    flex-direction: column;
  }

  .product-showcase__text {
    flex: none;
    padding: 60px 32px 32px;
  }

  .product-showcase__visual {
    min-height: 380px;
    align-items: center;
  }

  .product-showcase__img {
    width: 80%;
    margin-bottom: 0;
  }
}






/* ── PRODUCT SHOWCASE - FULL BACKGROUND (텍스트 위에 이미지 꽉 채우는 full-width 레이아웃) ── */
.product-showcase-bgfull {
  width: 100%;
  min-height: 100vh;
  display: flex;  
  position: relative;
  overflow: hidden;
}

.product-showcase-bgfull__visual {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.product-showcase-bgfull__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-showcase-bgfull__text {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vh, 100px) clamp(40px, 6vw, 100px);  
  color: var(--color-black);
  display: flex;
  flex-direction: column;  
  justify-content: center;
  align-items: flex-start;  
  min-height: 100%;
  

  
}

.product-showcase-bgfull__title {
  font-family: var(--font-display); 
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;  
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

.product-showcase-bgfull__desc {
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  line-height: 1.4;  
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
}

.product-showcase-bgfull__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 2px solid var(--color-black);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;  
  letter-spacing: 0.05em;
  
  transition: background 0.3s, border-color 0.3s;
}

.product-showcase-bgfull__btn:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-gray-900);
}
.product-showcase-bgfull__actions {
  display: flex; 
  gap: 1.5rem;
  margin-top: clamp(1.8rem, 4vh, 3rem);
}
/* ── 768px 이하 ── */
@media (max-width: 768px) {
  .product-showcase__img {
    min-width: 100%;          
  }

  /* TIMBOT-D: 모바일에서 텍스트 먼저, 이미지 나중 */
  #products-v2 .product-showcase__visual {
    order: 2;
  }
  #products-v2 .product-showcase__text {
    order: 1;
  }
}
 
















/* ── PRODUCTS INTRO ────────────────────────── */
.products-intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(60px, 6vh, 100px) 0;
  background: var(--color-gray-50);
}

.products-intro .container {
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vh, 4rem);
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: all 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 42px 72px rgba(0, 0, 0, 0.07);
  border-color: var(--color-cyan-light);
}

/* Horizontal Card Structure */
.product-card--horizontal {
  flex-direction: row;
  align-items: stretch;
  text-align: left;
}

@media (max-width: 991px) {
  .product-card--horizontal {
    flex-direction: column;
  }
}

.product-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 980px;
}

.product-card__badge--new {
  background: var(--color-cyan-vibrant);
  color: var(--color-black);
}

.product-card__badge--pro {
  background: var(--color-gray-900);
  color: var(--white);
}

.product-card__visual {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #f8f9fa 0%, #eceef1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  overflow: hidden;
}

.product-card--horizontal .product-card__visual {
  flex: 0 0 42%;
  height: auto;
  min-height: 440px;
}

.product-card__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card__img {
  transform: scale(1.08) translateY(-4px);
}

.product-card__content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
}

.product-card--horizontal .product-card__content {
  padding: 3.5rem;
}

.product-card h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.product-card__desc {
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  word-break: keep-all;
  flex: none;
}

.product-card__link {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-cyan-vibrant);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease);
}

.product-card:hover .product-card__link {
  gap: 0.7rem;
}

/* Card Grid Versions */
.products-grid--v1 {
  /* 1 row, 2 columns */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.products-grid--v2 {
  /* 2 rows, 1 column */
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .products-grid--v1 {
    grid-template-columns: 1fr;
  }

  .product-card--horizontal .product-card__visual {
    flex: 0 0 35%;
  }
}

@media (max-width: 768px) {

  /* 카드 사이의 간격 줄이기 */
  .products-grid--v2 {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  /* 이미지 영역 높이 축소 */
  .product-card__visual {
    height: 200px;
    /* 기존 380px에서 대폭 축소 */
    padding: 1.5rem;
  }

  .product-card--horizontal .product-card__visual {
    min-height: auto;
    /* PC용 min-height 해제 */
    flex: none;
  }

  /* 텍스트 영역 패딩 축소 */
  .product-card__content {
    padding: 1.5rem;
  }

  .product-card--horizontal .product-card__content {
    padding: 1.5rem;
  }

  .product-card h3 {
    font-size: 1.4rem;
    /* 제목 크기 축소 */
    margin-bottom: 0.5rem;
  }

  .product-card__desc {
    font-size: 0.85rem;
    /* 설명 크기 축소 */
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
}






/* ── SPEC COMPARE ──────────────────────────── */
.spec-compare {
  height: 100vh;           /* 고정 — 뷰포트 딱 맞게 */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  text-align: center;
  overflow: hidden;        /* 섹션 자체는 넘치지 않게 */
}

/* 내부만 스크롤 */
.spec-compare__scroll {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  padding: 80px 0;
  -webkit-overflow-scrolling: touch;
}
.spec-compare .container {
  width: 100%;
}
.prs-train-wrap{
  min-height: auto;
  height: auto;
}
.spec-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 0.5rem 1.0rem;
  text-align: center;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
}

.spec-table th {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: 1.2rem 1.5rem;
}

.spec-table th:first-child,
.spec-table td:first-child {
  text-align: left;
}

.spec-table td:first-child {
  color: var(--color-gray-500);
  font-weight: 500;
}

.spec-table__highlight {
  color: var(--color-cyan-dark);
  font-weight: 700;
}

.spec-table th.spec-table__highlight {
  background: var(--color-cyan-dark);
  color: var(--color-black);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover td {
  background: var(--color-gray-50);
}

.spec-table tr:hover td.spec-table__highlight {
  background: var(--color-cyan-soft);
}

/* ── HISTORY ────────────────────────────────── */
.history {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-gray-900);
}

.history .container {
  width: 100%;
}

.history .section-label {
  color: var(--color-cyan);
}

.history .section-title {
  color: var(--color-white);
  margin-bottom: 4rem;
}

.history__timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.history__item {
  display: grid;
  grid-template-columns: 72px 28px 1fr;
  gap: 0 1.5rem;
  align-items: stretch;
}

.history__year {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  padding-top: 3px;
  text-align: right;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.4s var(--ease);
}

.history__year small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.1);
}

.history__item.visible .history__year {
  color: rgba(255, 255, 255, 0.55);
}

.history__item--now.visible .history__year {
  color: var(--color-cyan);
}

.history__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin-top: 3px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.history__item.visible .history__dot {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  box-shadow: 0 0 12px var(--color-cyan-glow);
}

.history__dot--now {
  width: 13px;
  height: 13px;
}

.history__item--now.visible .history__dot {
  animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--color-cyan-glow);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(31, 227, 255, 0);
  }
}

.history__line {
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  margin: 7px 0;
  min-height: 36px;
}

.history__content {
  padding-bottom: 2.75rem;
}

.history__item:last-child .history__content {
  padding-bottom: 0;
}

.history__content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.history__content p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.7rem;
}

.history__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 980px;
}

.history__tag--default {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.28);
}

.history__tag--launch {
  background: var(--color-cyan-soft);
  color: var(--color-cyan-light);
}

.history__tag--now {
  background: rgba(31, 227, 255, 0.16);
  color: var(--color-cyan);
}

/* ── 반응형 ─────────────────────────────────── */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .history__item {
    grid-template-columns: 56px 24px 1fr;
    gap: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   HERO — 배경 영상
   ============================================ */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__video-thumb {
  position: absolute;
  inset: 0;
  background: var(--color-black);
  transition: opacity 0.8s ease;
  z-index: 2;
}

.hero__video-thumb.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hero__video.ready {
  opacity: 1;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.28) 50%,
      rgba(0, 0, 0, 0.65) 100%);
  z-index: 3;
}

/* ── HERO CAPTION (영상 위 고정 텍스트) ─────── */
.hero__caption {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) 0.4s forwards;
}

.hero__caption-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
  margin-bottom: 0.45rem;
}

.hero__caption-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}







































/* ── BUSINESS INTRO ─────────────────────────── */
.business-intro {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background-color: var(--color-black);
}

/* 패널 영역 */
.business-intro__panels {
  flex: 1;
  display: flex;
}

.business-intro__panel {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: var(--business-bg);
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-intro__panel:nth-child(1) {
  background-position: 15% center;
}

.business-intro__panel:nth-child(2) {
  background-position: center;
}

.business-intro__panel:nth-child(3) {
  background-position: 40% center;
}

/* 오버레이 */
.business-intro__panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.6s ease;
  z-index: 1;
}

/* 내부 레이아웃 */
.business-intro__panel-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 번호 + 제목 묶음 — 상단 */
.business-intro__panel-mid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  transform: translateY(3px);
  will-change: transform;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 01 / - 번호 박스 */
.business-intro__panel-num {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: 'Pretendard Variable', 'Pretendard', var(--font-sans);
  font-size: clamp(22px, 2.2vw, 40px);
  font-weight: 700;
  color: #1fceff;
  line-height: 1;
  margin-bottom: 1rem;
}

/* 제목 */
.business-intro__panel-title {
  font-family: 'Pretendard Variable', 'Pretendard', var(--font-display);
  font-size: clamp(22px, 2.2vw, 40px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: 0;
}

/* 본문 — 하단 고정 */
.business-intro__panel-detail {
  margin: auto;
  text-align: left;
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-intro__panel-detail p {
  width: 80%;
  font-family: 'Pretendard Variable', 'Pretendard', var(--font-sans);
  font-size: clamp(17px, 1.95vw, 20px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0;
}

/* 2패널 — 밝은 배경용 텍스트 검정 */
.business-intro__panel--light .business-intro__panel-title {
  color: #000000;
}

.business-intro__panel--light .business-intro__panel-detail p {
  color: #000000;
}

/* Hover 및 Interaction */
.business-intro__panel:hover {
  flex: 1.5;
}

.business-intro__panel:hover .business-intro__panel-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.business-intro__panel:hover .business-intro__panel-mid {
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── [PC] HOVER ANIMATION (1025px ~) ──────────────────── */
@media (min-width: 1025px) {

  /* 호버 시 다른 패널들은 축소 */
  .business-intro__panels:hover .business-intro__panel {
    flex: 0.8;
  }

  /* 호버한 특정 패널만 확장 */
  .business-intro__panels .business-intro__panel:hover {
    flex: 1.4;
    z-index: 10;
  }

  /* 오버레이 어둡게 처리 */
  .business-intro__panel:hover .business-intro__panel-overlay {
    background: rgba(0, 0, 0, 0.75);
  }

  /* 텍스트 및 상세 내용 애니메이션 */
  .business-intro__panel:hover .business-intro__panel-mid {
    transform: translateY(0);
    transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* ── MOBILE (1024px 이하) ──────────────────── */
@media (max-width: 1024px) {
  .business-intro {
    flex-direction: column;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
  }

  .business-intro__panels {
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .business-intro__panel {
    flex: 1;
    width: 100%;
    height: 33.333%;
    min-height: 200px;
    scroll-snap-align: none;
    transition: none;
  }

  .business-intro__panel-overlay {
    background: rgba(0, 0, 0, 0.55);
  }

  .business-intro__panel-inner {
    padding: 2rem 2.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .business-intro__panel-mid {
    transform: translateY(0) !important;
    margin-bottom: 0.4rem;
  }

  .business-intro__panel-num {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .business-intro__panel-title {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .business-intro__panel-detail p {
    width: 100%;
    font-size: 0.92rem;
    line-height: 1.6;
    word-break: keep-all;
    color: rgba(255, 255, 255, 0.8);
  }

  /* 밝은 배경 패널(--light) 모바일 가독성 대응 */
  .business-intro__panel--light .business-intro__panel-num {
    color: #008bb4;
  }

  .business-intro__panel--light .business-intro__panel-title {
    color: #111111;
  }

  .business-intro__panel--light .business-intro__panel-detail p {
    color: #333333;
  }
}



















/* ── PR Section Base ── */
.prs-section {
  background: var(--color-gray-50);
  padding: 100px 0 0;
  overflow: hidden;
}

/* ── Intro Hero ── */
.prs-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 0 80px;
}

.prs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 1.25rem;
}

.prs-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-cyan);
}

.prs-hero__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-style: italic;
  line-height: 1.15;
  color: var(--color-gray-800);
  margin-bottom: 1.25rem;
}

.prs-hero__title em {
  color: var(--color-cyan);
  font-style: normal;
}

.prs-hero__desc {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 480px;
}

.prs-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.prs-robot-vis {
  position: relative;
  width: 220px;
  height: 220px;
}

.prs-robot-vis__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--color-cyan-ring);
  animation: prsPulse 3s ease-in-out infinite;
}

.prs-robot-vis__ring:nth-child(2) {
  inset: -20px;
  animation-delay: .4s;
  border-color: rgba(31, 227, 255, .08);
}

.prs-robot-vis__ring:nth-child(3) {
  inset: -42px;
  animation-delay: .8s;
  border-color: rgba(31, 227, 255, .04);
}

.prs-robot-vis__core {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(31, 227, 255, .12) 0%, transparent 70%);
  border-radius: 50%;
}

.prs-robot-vis__label {
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.prs-robot-vis__name {
  font-size: 2.4rem;
  font-style: italic;
  color: var(--color-gray-800);
  line-height: 1;
}

.prs-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.prs-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.prs-stat__v {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: -.02em;
}

.prs-stat__l {
  font-size: .65rem;
  color: var(--color-gray-400);
}

@keyframes prsPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.04);
    opacity: .6;
  }
}

/* ── Section Divider ── */
.prs-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.prs-divider__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.prs-divider__label {
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-cyan);
  white-space: nowrap;
}

/* ── Core Tech — Train Cards (4열) ── */
.prs-train-wrap {
  background: var(--color-white);
  padding: 72px 0;
}

.prs-train {
  display: flex;
  gap: 1rem;
  overflow: visible;
}

.prs-tcard {
  flex: 1;
  background: var(--color-gray-50);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 3rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-180px) skewX(-6deg) scale(.92);
  filter: blur(4px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1),
    filter .8s ease,
    background .3s,
    border-color .3s,
    box-shadow .3s;
}

.prs-tcard.prs-landed {
  opacity: 1;
  transform: translateX(0) skewX(0) scale(1);
  filter: blur(0);
}

.prs-tcard.prs-landed:hover {
  background: var(--color-white);
  border-color: var(--color-cyan-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  transform: translateY(-5px) !important;
}

.prs-tcard:nth-child(1) {
  transition-delay: .0s;
}

.prs-tcard:nth-child(2) {
  transition-delay: .1s;
}

.prs-tcard:nth-child(3) {
  transition-delay: .2s;
}

.prs-tcard:nth-child(4) {
  transition-delay: .3s;
}

.prs-tc-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3rem;
  color: rgba(0, 0, 0, .05);
  line-height: 1;
  transition: color .3s;
}

.prs-tcard:hover .prs-tc-num {
  color: rgba(31, 227, 255, .18);
}

.prs-tc-icon {
  width: 100px;
}

.prs-tc-title {
  padding-top: 10px;
  font-size: 1.5rem;
  color: var(--color-gray-800);
  line-height: 1.25;
}

.prs-tc-desc {
  font-size: .76rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.prs-tc-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.prs-tc-tag::before {
  content: '';
  width: 14px;
  height: 1px;
  background: currentColor;
}

/* ── Safety & Control — 2×2 Grid ── */
.prs-grid-wrap {
  background: #080c10;
  padding: 72px 0;
}

.prs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.prs-gcard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(.96);
  filter: blur(6px);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1),
    filter .75s ease,
    border-color .35s,
    box-shadow .35s,
    background .3s;
}

.prs-gcard.prs-landed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.prs-gcard.prs-landed:hover {
  border-color: var(--color-cyan-dark);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .08), 0 0 32px rgba(31, 227, 255, .06);
  background: linear-gradient(145deg, rgba(31, 227, 255, .04), var(--color-white));
}

.prs-gcard:nth-child(1) {
  transition-delay: .05s;
}

.prs-gcard:nth-child(2) {
  transition-delay: .15s;
}

.prs-gcard:nth-child(3) {
  transition-delay: .1s;
}

.prs-gcard:nth-child(4) {
  transition-delay: .2s;
}

.prs-gc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: var(--color-cyan-soft);
  border: 1px solid rgba(31, 227, 255, .15);
  transition: background .3s, border-color .3s;
}

.prs-gcard:hover .prs-gc-icon-wrap {
  background: rgba(31, 227, 255, .16);
  border-color: rgba(31, 227, 255, .3);
}

.prs-gc-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.prs-gc-title {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gray-800);
  line-height: 1.2;
}

.prs-gc-desc {
  font-size: .77rem;
  color: var(--color-text-muted);
  line-height: 1.72;
}

.prs-gc-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(31, 227, 255, .08), transparent 65%);
}

.prs-gcard:hover .prs-gc-glow {
  opacity: 1;
}





































/* =============================
   제품 섹션 2 & 3 공통
   ============================= */
.product-section-2,
.product-section-3 {
  background: var(--color-gray);
  width: 100%;
}

.product-section-2__inner,
.product-section-3__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-section-2__image img,
.product-section-3__image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.product-section-2__content,
.product-section-3__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content__item {
  color: var(--color-black);
}

.content__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.content__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--product-s-primary);
  border-radius: 50%;
}

.content__description {
  font-size: 1.2rem;
  color: var(--color-black);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-section-2__inner,
  .product-section-3__inner {
    grid-template-columns: 1fr;
  }

  .product-section-2__image img,
  .product-section-3__image img {
    height: 50vh;
  }
}


/* =============================
   제품 섹션 2 고유
   ============================= */

/* =============================
   제품 섹션 3 고유
   ============================= */

.product-section-3__image {
  grid-column: 2; 
  grid-row: 1;
}

.product-section-3__content {
  grid-column: 1;  
  margin-left: auto;
  grid-row: 1;
}/* ============================================
   TIMBOT — product-detail.css
   product-s.php / product-d.php 전용
   ============================================ */

/* ── PRODUCT HERO ──────────────────────────── */
.product-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--nav-h) + 72px) 6vw 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.product-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-hero__orb {
  position: absolute;
  width: 660px; height: 660px;
  border-radius: 50%;
  filter: blur(80px);
  top: -200px; right: -180px;
  opacity: 0.18;
}
.product-hero--a .product-hero__orb {
  background: radial-gradient(circle, var(--color-cyan), transparent 70%);
}
.product-hero--b .product-hero__orb {
  background: radial-gradient(circle, var(--color-gray-400), transparent 70%);
}

.product-hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.product-hero--a .product-hero__eyebrow { color: var(--color-cyan); }
.product-hero--b .product-hero__eyebrow { color: var(--color-gray-300); }

.product-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.product-hero--a .product-hero__title em { color: var(--color-cyan); font-style: normal; }
.product-hero--b .product-hero__title em { color: var(--color-gray-300); font-style: normal; }

.product-hero__sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.product-hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.product-hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── PRODUCT MOCKUP ────────────────────────── */
.product-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-mockup--sm { width: 200px; height: 200px; }
.product-mockup--md { width: 300px; height: 300px; }
.product-mockup--lg { width: 400px; height: 400px; }

.product-mockup__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringPulse 4.5s ease infinite;
}
.product-mockup--a .product-mockup__ring { border-color: var(--product-s-ring); }
.product-mockup--b .product-mockup__ring { border-color: var(--product-d-ring); }

.product-mockup__ring--1 { inset: 0;      animation-delay: 0s; }
.product-mockup__ring--2 { inset: -18px;  animation-delay: 0.9s; opacity: 0.95; }
.product-mockup__ring--3 { inset: -36px;  animation-delay: 1.8s; opacity: 0.75; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.03); opacity: 1; }
}

.product-mockup__core {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.product-mockup--sm .product-mockup__core { width: 128px; height: 128px; }
.product-mockup--md .product-mockup__core { width: 188px; height: 188px; }
.product-mockup--lg .product-mockup__core { width: 248px; height: 248px; }

.product-mockup--a .product-mockup__core {
  background: radial-gradient(135deg at 35% 35%, var(--color-cyan-light), var(--color-cyan-dark));
  box-shadow: 0 20px 60px var(--product-s-glow);
}
.product-mockup--b .product-mockup__core {
  background: radial-gradient(135deg at 35% 35%, var(--color-gray-300), var(--color-gray-600));
  box-shadow: 0 20px 60px var(--product-d-glow);
}

.product-mockup__core span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.product-mockup__core strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.product-mockup--sm .product-mockup__core strong { font-size: 3rem; }
.product-mockup--md .product-mockup__core strong { font-size: 4.5rem; }
.product-mockup--lg .product-mockup__core strong { font-size: 6rem; }

/* ── PD FEATURES ────────────────────────────── */
.pd-features {
  padding: 96px 0;
}
.pd-features--light { background: var(--color-gray-50); }
.pd-features--dark  { background: #0e0e0e; }

.pd-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pd-feature-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pd-feature-card:hover { transform: translateY(-4px); }

.pd-feature-card--light {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
.pd-feature-card--light:hover {
  box-shadow: 0 18px 38px rgba(0,0,0,0.07);
}

.pd-feature-card--dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.pd-feature-card--dark:hover {
  background: rgba(31, 227, 255, 0.04);
  border-color: rgba(31, 227, 255, 0.14);
  box-shadow: 0 18px 38px rgba(0,0,0,0.4);
}

.pd-feature-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.pd-feature-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}
.pd-feature-card--light h3 { color: var(--color-gray-800); }
.pd-feature-card--dark  h3 { color: var(--color-white); }

.pd-feature-card p {
  font-size: 0.83rem;
  line-height: 1.7;
}
.pd-feature-card--light p { color: var(--color-text-muted); }
.pd-feature-card--dark  p { color: rgba(255,255,255,0.35); }

/* ── PD SPEC ────────────────────────────────── */
.pd-spec { padding: 96px 0; }
.pd-spec--light { background: var(--color-white); }
.pd-spec--dark  { background: var(--color-gray-900); }

.pd-spec__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.pd-spec__grid--light { background: var(--color-gray-200); }
.pd-spec__grid--dark  { background: rgba(255,255,255,0.06); }

.pd-spec__item {
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pd-spec__grid--light .pd-spec__item { background: var(--color-gray-50); }
.pd-spec__grid--dark  .pd-spec__item { background: #111; }

.pd-spec__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pd-spec__grid--light .pd-spec__label { color: var(--color-text-muted); }
.pd-spec__grid--dark  .pd-spec__label { color: rgba(255,255,255,0.25); }

.pd-spec__value {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pd-spec__grid--light .pd-spec__value { color: var(--color-gray-800); }
.pd-spec__grid--dark  .pd-spec__value { color: var(--color-white); }

/* ── PD CTA ─────────────────────────────────── */
.pd-cta { padding: 96px 0; text-align: center; }
.pd-cta--light { background: var(--color-gray-50); }
.pd-cta--dark  { background: var(--color-black); }

.pd-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}
.pd-cta--light .pd-cta__inner h2 { color: var(--color-gray-800); }
.pd-cta--dark  .pd-cta__inner h2 { color: var(--color-white); }

.pd-cta__inner p {
  font-size: 1rem;
  margin-bottom: 2.25rem;
}
.pd-cta--light .pd-cta__inner p { color: var(--color-text-muted); }
.pd-cta--dark  .pd-cta__inner p { color: rgba(255,255,255,0.35); }

.pd-cta__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 반응형 ──────────────────────────────────── */
@media (max-width: 900px) {
  .pd-features__grid { grid-template-columns: repeat(2, 1fr); }
  .pd-spec__grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 48px);
    gap: 3rem;
  }
  .product-hero__actions { justify-content: center; }
  .product-mockup--lg { width: 280px; height: 280px; }
  .product-mockup--lg .product-mockup__core { width: 176px; height: 176px; }
  .product-mockup--lg .product-mockup__core strong { font-size: 4rem; }
  .pd-features__grid { grid-template-columns: 1fr; }
  .pd-spec__grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pd-cta__actions .btn { width: 100%; max-width: 280px; }
}





.product-mockup-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 460px;
}

.product-mockup__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,180,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.product-mockup-img {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,229,204,0.2);
  box-shadow: 0 0 40px rgba(0,200,180,0.15);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.product-mockup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-mockup-badge {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(0,229,204,0.1);
  border: 1px solid rgba(0,229,204,0.35);
  border-radius: 20px;
  padding: 6px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  backdrop-filter: blur(6px);
}

.product-mockup-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e5cc;
  animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.product-mockup-badge__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #00e5cc;
  text-transform: uppercase;
}

.product-mockup-badge__sub {
  font-size: 11px;
  color: rgba(0,229,204,0.6);
}

    





































/* ══════════════════════════════════════════════
   prm-  (PR Masonry MORPH)
   ══════════════════════════════════════════════ */

/* ── 섹션 ───────────────────────────────────── */
.prm-sec {
  background: var(--color-gray-900);
  position: relative;
  overflow: hidden;
}
.prm-sec__inner {
  margin: 10px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 배경 orb ────────────────────────────────── */
.prm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s var(--ease), transform 2s var(--ease);
}
.prm-orb--1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, var(--color-cyan-soft) 0%, transparent 65%);
  top: -280px; left: -200px;
  transform: translate(-40px, -40px);
  transition-delay: .2s;
}
.prm-orb--2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,40,50,.7) 0%, transparent 65%);
  bottom: -180px; right: -120px;
  transform: translate(40px, 40px);
  transition-delay: .5s;
}
.prm-orb--3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--color-cyan-soft) 0%, transparent 65%);
  top: 50%; left: 58%;
  transform: translate(-50%, -50%) scale(.7);
  transition-delay: .8s;
}
.prm-sec.prm-in .prm-orb { opacity: 1; transform: translate(0, 0) scale(1); }
.prm-sec.prm-in .prm-orb--3 { transform: translate(-50%, -50%) scale(1); }

/* ── 그리드 ──────────────────────────────────── */
.prm-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  height: 560px;
  width: 70%;
  position: relative;
  z-index: 2;
}

/* ── 공통 카드 ───────────────────────────────── */
.prm-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  clip-path: circle(0% at var(--prm-ox, 50%) var(--prm-oy, 50%));
  transition:
    opacity .01s,
    clip-path 1s cubic-bezier(.4, 0, .2, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s var(--ease);
  will-change: transform, clip-path;
}
.prm-sec.prm-in .prm-card {
  opacity: 1;
  clip-path: circle(150% at var(--prm-ox, 50%) var(--prm-oy, 50%));
  transform: translate(0, 0) rotate(0deg) scale(1) !important;
}
.prm-card:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}

/* ── 이미지 풀블리드 (공통) ──────────────────── */
.prm-card__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.prm-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.prm-card:hover .prm-card__img {
  transform: scale(1.04);
}
/* ── 공통 카드 ───────────────────────────────── */
/* ... 기존 코드 생략 ... */

/* ── 텍스트 오버레이 (공통) ──────────────────── */
.prm-card__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.8rem 2rem;
  
  /* [변경] 우측 정렬을 기본값(Default)으로 설정 */
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

/* ── Main: 왼쪽 하단 ────────────────────────── */
.prm-main {
  grid-row: span 2;
  --prm-ox: 10%; --prm-oy: 90%;
  transform: translate(-80px, 60px) scale(.9);
  transition-delay: .05s;
}
/* 메인 카드는 원래 기획대로 좌측 하단에 배치하기 위해 유지 */
.prm-main .prm-card__body {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

/* ── Mini: 오른쪽 중앙 ──────────────────────── */
.prm-mini--light {
  --prm-ox: 90%; --prm-oy: 5%;
  transform: translate(56px, -48px) rotate(3deg) scale(.88);
  transition-delay: .25s;
}
.prm-mini--dark {
  --prm-ox: 90%; --prm-oy: 95%;
  transform: translate(56px, 48px) rotate(-3deg) scale(.88);
  transition-delay: .4s;
}

/* 텍스트 정렬 유틸리티 */
.prm-card--left .prm-card__body {
  align-items: flex-start;
  text-align: left;
}
.prm-card--right .prm-card__body {
  align-items: flex-end;
  text-align: right;
}

/* 텍스트 뒤 그라데이션 오버레이 — 좌측 정렬용 */
.prm-card--left .prm-card__body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
}

/* 우측 정렬용 */
.prm-card--right .prm-card__body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
}



/* ── 반응형 ──────────────────────────────────── */
@media (max-width: 900px) {
  .prm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
    width: 100%;
  }
  .prm-main { grid-column: span 2; }
}

@media (max-width: 768px) {
  .prm-sec { padding: 80px 0 100px; }

  .prm-sec__inner {
    min-height: calc(100svh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    width: 100%;
  }

  .prm-main {
    grid-column: span 2;
    min-height: 380px;
  }

  .prm-grid .prm-mini--light,
  .prm-grid .prm-mini--dark {
    min-height: 240px;
  }

  .prm-card__title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .prm-grid {
    grid-template-columns: 1fr;
  }

  .prm-main {
    grid-column: span 1;
    min-height: 340px;
  }

  .prm-grid .prm-mini--light,
  .prm-grid .prm-mini--dark {
    min-height: 220px;
  }
}










/* ============================================
   TIMBOT — contact.css
   contact.php 전용
   ============================================ */

.contact-page {
  min-height: 100vh;
  background: var(--color-gray-50);
  padding: calc(var(--nav-h) + 80px) 24px 100px;
}

.contact-page__inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-page__header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border);
}

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

.qna-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Added vertical gap between form rows */
.qna-form__row {
  margin-bottom: 1.2rem;
}


.qna-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.qna-form__checkbox-group {
  margin-bottom: 1rem;
}

.qna-form__notice {
  margin-top: 0.5rem;
}

.qna-form__group label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gray-500);
  text-transform: uppercase;
}

.qna-form__group input,
.qna-form__group select,
.qna-form__group textarea {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--color-gray-50);
  color: var(--color-text);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.qna-form__group input:focus,
.qna-form__group select:focus,
.qna-form__group textarea:focus {
  border-color: var(--color-cyan);
  background: var(--color-white);
  box-shadow: 0 0 0 3px var(--color-cyan-soft);
}

.qna-form__group input::placeholder,
.qna-form__group textarea::placeholder {
  color: var(--color-gray-300);
}

.qna-form__group input:disabled,
.qna-form__group select:disabled,
.qna-form__group textarea:disabled {
  background: var(--color-gray-100);
  border-color: var(--color-gray-200);
  border-style: dashed;
  color: var(--color-text-faint);
  cursor: not-allowed;
  opacity: 0.7;
}

.qna-form__btn {
  margin-top: 1rem;
}

.qna-form__notice {
  font-size: 0.74rem;
  color: var(--color-text-faint);
  text-align: center;
  margin-top: 0.25rem;
}

/* Checkbox */
.qna-form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0 0.8rem;
}

.qna-form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
}

.qna-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--color-cyan);
}

.qna-form__checkbox span {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* Error */
.form-error {
  background: #fff3f3;
  border: 1px solid #ffcdd2;
  color: #c62828;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  margin-bottom: 1.25rem;
}

/* Success */
.qna-success {
  display: none;
  text-align: center;
  padding: 3.5rem 0;
}

.qna-success.show {
  display: block;
}

.qna-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-cyan);
  color: var(--color-black);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 24px var(--color-cyan-glow);
}

.qna-success h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.qna-success p {
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}

/* 반응형 */
@media (max-width: 600px) {
  .qna-form__row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.75rem;
  }
}/* ============================================
   TIMBOT — privacy.css
   개인정보처리방침 전용 스타일
   ============================================ */

.privacy-page {
  padding: calc(var(--nav-h) + 60px) 0 100px;
  background: var(--color-white);
  line-height: 1.7;
}

.container--narrow {
  max-width: 800px;
}

.privacy-header {
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--color-border);
}

.privacy-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.privacy-date {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.privacy-content section {
  margin-bottom: 3rem;
}

.privacy-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--color-cyan);
}

.privacy-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.privacy-content ul {
  margin-left: 1.25rem;
  list-style-type: none;
  margin-bottom: 1.5rem;
}

.privacy-content li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  position: relative;
}

.privacy-content li::before {
  content: "•";
  position: absolute;
  left: -1.25rem;
  color: var(--color-cyan);
}

.privacy-content strong {
  color: var(--color-black);
}

/* Privacy Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  background: var(--color-gray-50);
}

.privacy-table caption {
  display: none;
}

.privacy-table th,
.privacy-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.privacy-table th {
  background: var(--color-gray-100);
  font-weight: 700;
  color: var(--color-black);
  white-space: nowrap;
}

.privacy-table td {
  color: var(--color-text-muted);
  line-height: 1.5;
}

.privacy-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--color-border);
  font-weight: 600;
  color: var(--color-gray-600);
}

/* 반응형 */
@media (max-width: 640px) {
  .privacy-header h1 { font-size: 1.8rem; }
  .privacy-content h2 { font-size: 1rem; }
  .privacy-table th, .privacy-table td { padding: 0.65rem; font-size: 0.78rem; }
}
/* ============================================
   TIMBOT — main-mobile.css
   main.php 모바일 반응형 전용 스타일
   기존 sections.css 하단에 추가하거나
   별도 <link>로 불러오세요.
   ============================================ */
 


/* ══════════════════════════════════════════════
   1. BUSINESS INTRO — 세로 카드 스택
   ══════════════════════════════════════════════ */

/* ── 768px 이하 : 스택형 카드 ── */
@media (max-width: 768px) {
/* 모바일 */
.business-intro {
  min-height: 100vh;   /* unset 제거 */
  height: 100vh;       /* 고정 */
}

.business-intro__panels {
  flex-direction: column;
  height: 100%;        /* auto → 100% */
  flex: 1;
}

.business-intro__panel {
  flex: 1;             /* none → 1 : 3등분 */
  min-height: 0;       /* 260px 제거, flex가 알아서 분배 */
  height: auto;
}

  /* 오버레이 조금 더 어둡게 — 가독성 */
  .business-intro__panel-overlay {
    background: rgba(0, 0, 0, 0.62) !important;
  }

  /* 밝은 패널(02)은 오버레이 제거하고 텍스트만 어둡게 */
  .business-intro__panel--light .business-intro__panel-overlay {
    background: rgba(255, 255, 255, 0.45) !important;
  }

  /* 내부 레이아웃: 세로 중앙 정렬 */
  .business-intro__panel-inner {
    padding: 2.4rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }

  /* 번호 + 제목 묶음 */
  .business-intro__panel-mid {
    transform: none !important;
    transition: none !important;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
  }

  /* 01 / - 번호: 가로 배치 시 줄바꿈 제거 */
  .business-intro__panel-num {
    flex-direction: row;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: 0;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  /* "br" 숨기기: 가로 배치이므로 줄바꿈 불필요 */
  .business-intro__panel-num br {
    display: none;
  }

  /* 번호 뒤 구분선(대시) */
  .business-intro__panel-num::after {
    content: '—';
    margin-left: 4px;
    opacity: 0.4;
  }

  /* 제목 */
  .business-intro__panel-title {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    line-height: 1.2;
    color: var(--color-white);
    font-weight: 700;
  }

  /* 본문 */
  .business-intro__panel-detail {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    margin: 0;
  }

  .business-intro__panel-detail p {
    width: 100%;
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    word-break: keep-all;
  }

  /* --light 패널 텍스트 가독성 */
  .business-intro__panel--light .business-intro__panel-num {
    color: #008bb4;
  }

  .business-intro__panel--light .business-intro__panel-title {
    color: #111111;
  }

  .business-intro__panel--light .business-intro__panel-detail p {
    color: rgba(0, 0, 0, 0.78);
  }

  /* hover expand 효과 모바일에서 완전 비활성 */
  .business-intro__panel:hover {
    flex: none;
  }
}

/* ── 480px 이하 : 더 컴팩트 ── */
@media (max-width: 480px) {
  .business-intro__panel {
    min-height: 220px;
  }

  .business-intro__panel-inner {
    padding: 2rem 1.25rem;
  }

  .business-intro__panel-title {
    font-size: 1.1rem;
  }

  .business-intro__panel-detail p {
    font-size: 0.82rem;
  }
}


/* ══════════════════════════════════════════════
   2. PRODUCT SHOWCASE (TIMBOT-S / TIMBOT-D)
   ══════════════════════════════════════════════ */

/* ── 900px 이하 : 세로 스택 ── */
@media (max-width: 900px) {
  .product-showcase {
    flex-direction: column;
    height: 100vh;        /* 추가 */
    min-height: 100vh;    /* 추가 */
  }

  .product-showcase__text {
    flex: 1;              /* 텍스트 영역도 flex로 늘리기 */
  }

  .product-showcase__visual {
    flex: 1;              /* 이미지 영역도 동일 */
    min-height: 0;        /* flex child가 수축 가능하게 */
  }
}
/* ── 768px 이하 ── */
@media (max-width: 768px) {
  .product-showcase__text {
    padding: 2rem 1.25rem 0.5rem;
  }

  .product-showcase__visual {
    padding: 0.75rem 0 1.25rem;
  }

  .product-showcase__img {
    width: 52%;
    max-width: 240px;
  }
}

/* ── 480px 이하 ── */
@media (max-width: 480px) {
  .product-showcase__text {
    padding: 1.75rem 1rem 0.5rem;
  }

  .product-showcase__title {
    font-size: 1.65rem;
  }

  .product-showcase__desc {
    font-size: 0.83rem;
    margin-top: 0.6rem;
  }

  .product-showcase__btn {
    margin-top: 1rem;
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
  }

  .product-showcase__visual {
    padding: 0.5rem 0 1rem;
  }

  .product-showcase__img {
    width: 58%;
    max-width: 210px;
  }
}


/* ══════════════════════════════════════════════
   3. 하단 배너 이미지
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* main.php 마지막 <img> 태그 — inline style 보정 */
  img[alt="TIMBOT_MAIN_BOTTOM_IMG"] {
    max-height: 240px !important;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  img[alt="TIMBOT_MAIN_BOTTOM_IMG"] {
    max-height: 180px !important;
  }
}/* ============================================
   TIMBOT — mobile-product.css
   product-s.php / product-d.php 모바일 반응형
   브레이크포인트: 768px (모바일), 480px (소형)
   ============================================ */

/* ══════════════════════════════════════════
   1. HERO VIDEO / 영상 배너
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-video.hero-video--full,
  .hero-video.hero-video--fit {
    height: 100svh;
    min-height: 100svh;
    aspect-ratio: auto;
    max-height: none;
    margin-top: 0;
  }

  .hero-video.hero-video--fit .hero__video,
  .hero-video.hero-video--full .hero__video {
    object-fit: cover;   /* 세로 꽉 채우기 */
  }
}


/* ══════════════════════════════════════════
   2. PRODUCT SHOWCASE BGFULL — 섹션 1 (히어로)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .product-showcase-bgfull {
    min-height: 100svh;    /* safe-area 대응 */
    align-items: flex-end; /* 텍스트를 하단에 배치 */
  }

  /* 배경 이미지 — 상단 집중 */
  .product-showcase-bgfull__img {
    object-position: top center;
  }

  /* 텍스트 영역 — 반투명 오버레이로 가독성 확보 */
  .product-showcase-bgfull__text {
    padding: 2.5rem 1.5rem 3rem;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.40) 60%,
      transparent 100%
    );
    color: var(--color-white);
    align-items: flex-start;
    width: 100%;
  }

  .product-showcase-bgfull__title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    color: var(--color-white);
    margin-bottom: 0.75rem;
  }

  .product-showcase-bgfull__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 0;
  }

  .product-showcase-bgfull__actions {
    flex-direction: column !important;
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
  }

  .product-showcase-bgfull__btn {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--color-white);
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
  }

  .product-showcase-bgfull__btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--color-white);
    color: var(--color-white);
  }
}

@media (max-width: 480px) {
  .product-showcase-bgfull__text {
    padding: 2rem 1.25rem 2.5rem;
  }

  .product-showcase-bgfull__title {
    font-size: 1.9rem;
  }
}


/* ══════════════════════════════════════════
   3. CORE TECH TRAIN CARDS — 기술 카드 섹션
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .prs-train-wrap {
    padding: 48px 0 56px;
  }

  /* 컨테이너에 패딩 추가 (섹션 내부 패딩이 없을 수 있음) */
  .prs-train-wrap [data-prs="train"] {
    padding: 0 1.25rem;
  }

  .prs-divider {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .prs-divider__label {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    white-space: normal;
    text-align: center;
  }

  /* 4열 → 1열 그리드로 변환 */
  .prs-train {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    overflow: visible;
  }

  .prs-tcard {
    flex: none;             /* flex 해제 */
    padding: 1.75rem 1.25rem;
    border-radius: 14px;
  }

  .prs-tc-icon {
    width: 72px;
  }

  .prs-tc-title {
    font-size: 1.05rem;
    padding-top: 6px;
  }

  .prs-tc-num {
    font-size: 2.2rem;
    top: 0.75rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  /* 소형 기기 — 1열 유지, 패딩만 축소 */
  .prs-tcard {
    padding: 1.4rem 1rem;
  }

  .prs-tc-icon {
    width: 56px;
  }

  .prs-tc-title {
    font-size: 0.95rem;
  }
}


/* ══════════════════════════════════════════
   4. PRODUCT SECTION 2 & 3 — 이미지 + 텍스트
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .product-section-2,
  .product-section-3 {
    overflow: hidden;
  }

  /* 이미 1열로 변환되어 있으나 순서 정리 */
  .product-section-2__inner,
  .product-section-3__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* 섹션 2: 이미지 → 텍스트 순서 유지 */
  .product-section-2__image,
  .product-section-3__image {
    grid-column: 1;
    grid-row: 1;
  }

  .product-section-2__image img,
  .product-section-3__image img {
    height: 55vw;     /* 비율 유지, 최대 280px 정도 */
    min-height: 200px;
    max-height: 280px;
    width: 100%;
  }

  /* 섹션 3: 데스크탑에서 오른쪽에 있던 이미지를 위로 */
  .product-section-3__image {
    grid-column: 1;
    grid-row: 1;
  }

  .product-section-3__content {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;    /* 데스크탑 margin-left: auto 해제 */
    padding: 2rem 1.5rem 2.5rem;
  }

  .product-section-2__content {
    padding: 2rem 1.5rem 2.5rem;
    gap: 1.5rem;
  }

  .content__item {
    padding: 0;
  }

  .content__title {
    font-size: 1.15rem;
    padding-left: 1.25rem;
  }

  .content__description {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .product-section-2__content,
  .product-section-3__content {
    padding: 1.75rem 1.25rem 2rem;
    gap: 1.25rem;
  }
}


/* ══════════════════════════════════════════
   5. PRM MASONRY MORPH — 카드 그리드 섹션
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .prm-sec {
    padding: 56px 0 72px;
  }

  .prm-sec__inner {
    height: auto;
    margin: 0 1.25rem;
    padding: 0;
    align-items: stretch;
  }

  .prm-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    width: 100%;
    gap: 0.85rem;
  }

  /* 메인 카드 — span 해제 후 단독 행 */
  .prm-main {
    grid-row: auto;
    grid-column: 1;
    min-height: 300px;
  }

  /* 미니 카드 2개 — 나란히 배치 */
  .prm-grid .prm-mini--light,
  .prm-grid .prm-mini--dark {
    min-height: 200px;
  }

  /* 미니 카드 2개를 2열로 감싸기 위한 서브 그리드 효과 */
  .prm-grid {
    grid-template-areas:
      "main"
      "mini-a"
      "mini-b";
  }

  .prm-main       { grid-area: main; }
  .prm-mini--light { grid-area: mini-a; }
  .prm-mini--dark  { grid-area: mini-b; }

  /* 텍스트 오버레이 모바일 */
  .prm-card__body {
    padding: 1.25rem 1.5rem;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }

  .prm-card__title {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .prm-card__desc {
    font-size: 0.8rem;
    line-height: 1.55;
    opacity: 0.85;
  }

  /* 메인 카드 — 오른쪽 정렬 해제 */
  .prm-main .prm-card__body {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }
}

/* 미니 카드 2개 나란히 — 480px 이상일 때 */
@media (min-width: 481px) and (max-width: 768px) {
  .prm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main  main"
      "mini-a mini-b";
  }

  .prm-main { min-height: 280px; }
}

@media (max-width: 480px) {
  .prm-main { min-height: 260px; }

  .prm-grid .prm-mini--light,
  .prm-grid .prm-mini--dark {
    min-height: 180px;
  }
}


/* ══════════════════════════════════════════
   6. SPEC COMPARE TABLE — 스펙 비교 테이블
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .spec-compare {
    min-height: auto;        /* 모바일은 내용 크기만큼만 */
    height: auto;
    padding: 60px 0 72px;
    align-items: flex-start;
  }

  .spec-compare .section-label {
    font-size: 0.65rem;
  }

  .spec-compare .section-title {
    font-size: 1.6rem;
  }

  .spec-table-wrap {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    /* 테이블 좌우 스크롤 허용 */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .spec-table {
    min-width: 360px;      /* 최소 너비 확보 */
  }

  .spec-table th,
  .spec-table td {
    padding: 0.55rem 0.85rem;
    font-size: 0.80rem;
    white-space: normal;
    word-break: keep-all;
  }

  .spec-table th {
    font-size: 0.78rem;
    padding: 0.9rem 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  /* 스크롤 힌트 — 우측에 페이드 그라디언트 */
  .spec-table-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }

  /* spec-table-wrap을 relative로 */
  .spec-table-wrap {
    position: relative;
  }
}

@media (max-width: 480px) {
  .spec-table th,
  .spec-table td {
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
  }
}


/* ══════════════════════════════════════════
   7. PD CTA — 하단 CTA 섹션
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .pd-cta {
    padding: 64px 0;
  }

  .pd-cta__inner {
    padding: 0 1.5rem;
  }

  .pd-cta__inner h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .pd-cta__inner p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 2rem;
  }

  .pd-cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .pd-cta__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .pd-cta {
    padding: 52px 0;
  }

  .pd-cta__actions .btn {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════
   8. SECTION 공통 — section-label / section-title
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-label {
    font-size: 0.62rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    letter-spacing: -0.02em;
  }
}

/* ══════════════════════════════════════════
   9. snap-section — 모바일 스냅 유지
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
  }

  .snap-section--tall {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
    height: auto;
    min-height: 100svh;
  }

  /* prs-train-wrap: 스냅 유지하되 높이를 콘텐츠에 맞게 auto로 */
  .prs-train-wrap {
    min-height: 100svh;   /* 스냅이 걸릴 최소 높이는 확보 */
    height: auto;         /* 1열이라 넘치면 자연스럽게 늘어남 */
  }

  /* spec-compare는 내용이 너무 길어서 스냅 제외 유지 */
  .spec-compare {
    min-height: auto;
    scroll-snap-align: none;
  }
}

/* ══════════════════════════════════════════
   10. 공통 컨테이너 & 간격 보정
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/* ══════════════════════════════════════════
   11. 버튼 공통 — 모바일 탭 영역 확보
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;      /* 최소 탭 타겟 */
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
}


/* ══════════════════════════════════════════
   12. 미세 조정 — 애니메이션 모션 감소
   ══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .prs-tcard,
  .prm-card,
  .prm-orb,
  .product-mockup-img {
    transition: none !important;
    animation: none !important;
  }
}