@charset "UTF-8";
.suikon /* ============================================
   수익온 — Index 스타일
   다크/블루 그라데이션 + 자동매매 무드
   ============================================ */
/* ---- Variables ---- */
/* ---- Base ---- */
*{
  box-sizing: border-box;
}
body.suikon {
  background: #05070d;
  color: #e7ecf5;
  font-family: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "system-ui", "Apple SD Gothic Neo", "Roboto", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

.suikon /* 강조용 디스플레이 폰트 (히어로/섹션 헤드라인) */
.font-display,
.suikon #hero .text strong,
.suikon .scene-title strong,
.suikon .main-section-title,
.suikon .sec-about .about-headline,
.suikon .sec-products .sec-head strong,
.suikon .sec-cert .sec-head strong,
.suikon .sec-news .sec-head strong,
.suikon .sec-trial .trial-head strong {
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  letter-spacing: -0.045em;
}

.suikon /* 영문/숫자 강조 */
.font-mono {
  font-family: "JetBrains Mono", "Fira Code", "Roboto Mono", monospace;
}
.suikon #hero .text strong em {
  font-family: "Space Grotesk", "Pretendard Variable", inherit;
  font-weight: 700;
}

.suikon em {
  font-style: normal;
}

.suikon a {
  color: inherit;
}

.suikon button {
  background: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.suikon ::selection {
  background: #ff6a00;
  color: #fff;
}

.suikon /* ============================================
   인트로 오버레이
   ============================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.suikon #intro-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.suikon #intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

body.suikon.intro-active {
  overflow: hidden;
}

.suikon /* ============================================
   HEADER (PC + 모바일 햄버거)
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  background: rgba(5, 7, 13, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  transition: background 0.3s ease;
}
.suikon #header.scrolled {
  background: rgba(5, 7, 13, 0.92);
}
@media (max-width: 1280px) {
  .suikon #header {
    height: 64px;
  }
}

.suikon .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .suikon .header-inner {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .suikon .header-inner {
    padding: 0 18px;
  }
}
.suikon .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.suikon .header-inner .logo {
  flex-shrink: 0;
}
.suikon .header-inner .logo a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.suikon .header-inner .logo img {
  display: block;
  height: 60px;
  width: auto;
}
@media (max-width: 1280px) {
  .suikon .header-inner .logo img {
    height: 44px;
  }
}
.suikon .header-inner .gnb {
  flex: 1;
}
@media (max-width: 1280px) {
  .suikon .header-inner .gnb {
    display: none;
  }
}
.suikon .header-inner .gnb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
@media (max-width: 1440px) {
  .suikon .header-inner .gnb-list {
    gap: 24px;
  }
}
.suikon .header-inner .gnb-item {
  position: relative;
}
.suikon .header-inner .gnb-item > a {
  display: inline-block;
  padding: 30px 0;
  font-size: 17px;
  font-weight: 600;
  color: #e7ecf5;
  transition: color 0.2s ease;
}
.suikon .header-inner .gnb-item > a:hover {
  color: #ff8a3d;
}
.suikon .header-inner .gnb-item.has-sub:hover .sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.suikon .header-inner .sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 160px;
  padding: 12px 0;
  background: rgba(5, 7, 13, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.suikon .header-inner .sub li a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #98a2b8;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.suikon .header-inner .sub li a:hover {
  color: #fff;
  background: rgba(255, 122, 26, 0.12);
}
.suikon .header-inner .header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .suikon .header-inner .header-cta {
    display: none;
  }
}
.suikon .header-inner .header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.suikon .header-inner .header-cta a i {
  font-size: 17px;
}
.suikon .header-inner .header-cta a:hover {
  transform: translateY(-2px);
}
.suikon .header-inner .header-cta .btn-kakao {
  background: #fae100;
  color: #381e1f;
}
.suikon .header-inner .header-cta .btn-app {
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.suikon .header-inner .header-cta .btn-call {
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}
.suikon .header-inner .hamburger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  margin-left: auto;
}
.suikon .header-inner .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
@media (max-width: 1280px) {
  .suikon .header-inner .hamburger {
    display: flex;
  }
}

/* 햄버거 활성 시 (X 모양) */
body.suikon.menu-open .header-inner .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.suikon.menu-open .header-inner .hamburger span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0);
}
body.suikon.menu-open .header-inner .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.suikon /* ---- 모바일 메뉴 ---- */
.mobile-menu {
  position: fixed;
  top: 64px;
  right: 0;
  width: min(360px, 86vw);
  height: calc(var(--app-h, 100dvh) - 64px);
  background: rgba(5, 7, 13, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.35);
  padding: 24px 20px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
  z-index: 99;
}
.suikon .mobile-menu .m-list {
  display: flex;
  flex-direction: column;
}
.suikon .mobile-menu .m-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.suikon .mobile-menu .m-list > li > a,
.suikon .mobile-menu .m-list > li > .m-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  font-size: 17px;
  font-weight: 600;
  color: #e7ecf5;
}
.suikon .mobile-menu .m-list > li > a i,
.suikon .mobile-menu .m-list > li > .m-toggle i {
  font-size: 23px;
  color: #98a2b8;
  transition: transform 0.3s ease;
}
.suikon .mobile-menu .m-list > li.m-has-sub.open .m-toggle i {
  transform: rotate(180deg);
}
.suikon .mobile-menu .m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.suikon .mobile-menu .m-sub li a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #98a2b8;
}
.suikon .mobile-menu .m-has-sub.open .m-sub {
  max-height: 400px;
  padding-bottom: 8px;
}
.suikon .mobile-menu .m-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.suikon .mobile-menu .m-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
}
.suikon .mobile-menu .m-cta a i {
  font-size: 19px;
}
.suikon .mobile-menu .m-cta .btn-kakao {
  background: #fae100;
  color: #381e1f;
}
.suikon .mobile-menu .m-cta .btn-app {
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  color: #fff;
}
.suikon .mobile-menu .m-cta .btn-call {
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
}

body.suikon.menu-open .mobile-menu {
  transform: translateX(0);
}

.suikon /* 메뉴 딤 */
.menu-dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 98;
}

body.suikon.menu-open .menu-dim {
  opacity: 1;
  visibility: visible;
}

body.suikon.menu-open {
  overflow: hidden;
}

.suikon /* ============================================
   공통 — section-head / inner
   ============================================ */
.sec .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .suikon .sec .inner {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .suikon .sec .inner {
    padding: 0 18px;
  }
}

.suikon .sec {
  padding: 140px 0;
}
@media (max-width: 1024px) {
  .suikon .sec {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .suikon .sec {
    padding: 70px 0;
  }
}

.suikon .section-head {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .suikon .section-head {
    margin-bottom: 50px;
  }

}
.suikon .section-head .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #ff9a3d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.suikon .section-head .section-title {
  display: block;
  font-size: 57px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
}
.suikon .section-head .section-title em {
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) {
  .suikon .section-head .section-title {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .suikon .section-head .section-title {
    font-size: 26px;
  }
}
.suikon .section-head .section-desc {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: #98a2b8;
}
@media (max-width: 480px) {
  .suikon .section-head .section-desc {
    font-size: 16px;
  }
}

.suikon /* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  height:130vh;
  height: calc(var(--app-h, 100dvh) * 1.3);
}
.suikon #hero .hero-sticky {
  position: sticky;
  top: 0;
  height: var(--app-h, 100dvh);
  min-height: 640px;
  overflow: hidden;
}
.suikon #hero .hero-scroll-down {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 5;
  animation: heroScrollBob 2.2s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.suikon #hero .hero-scroll-down svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.suikon #hero .hero-scroll-down i {
  font-size: 26px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.suikon #hero .hero-scroll-down:hover {
  transform: translateX(-50%) scale(1.08);
}
@keyframes heroScrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 640px) {
  .suikon #hero .hero-scroll-down { width: 40px; height: 40px; bottom: 24px; }
  .suikon #hero .hero-scroll-down i { font-size: 22px; }
}
.suikon #hero .bg {
  position: absolute;
  inset: 0;
}
.suikon #hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 7, 13, 0.1) 0%,
    rgba(5, 7, 13, 0.25) 45%,
    rgba(5, 7, 13, 0.5) 80%,
    rgba(5, 7, 13, 0.7) 100%);
}
.suikon /* --- 히어로 원 마스크 (스크롤에 따라 원이 확장) --- */
#hero .hero-mask {
  --hero-r: 220px;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #05070d;
  pointer-events: none;
  -webkit-mask: radial-gradient(circle at center,
    transparent 0,
    transparent var(--hero-r),
    #000 calc(var(--hero-r) + 1px));
          mask: radial-gradient(circle at center,
    transparent 0,
    transparent var(--hero-r),
    #000 calc(var(--hero-r) + 1px));
}
.suikon #hero .hero-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center,
    transparent calc(var(--hero-r) - 2px),
    rgba(255, 180, 110, 0.95) var(--hero-r),
    rgba(255, 138, 61, 0.55) calc(var(--hero-r) + 6px),
    rgba(255, 138, 61, 0) calc(var(--hero-r) + 44px));
  mix-blend-mode: screen;
  animation: heroRingPulse 2.4s ease-in-out infinite;
}
@keyframes heroRingPulse {
  0%, 100% {
    opacity: 0.65;
    filter: blur(0.6px);
  }
  50% {
    opacity: 1;
    filter: blur(2.2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .suikon #hero .hero-mask { display: none; }
}

.suikon #hero .hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.suikon #hero .hero-rain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  mix-blend-mode: screen;
}
.suikon #hero .hero-circuit {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1600px, 110%);
  height: 100%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.7;
  mix-blend-mode: screen;
  animation: heroTreeBreath 6s ease-in-out infinite alternate;
}
.suikon #hero .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.suikon #hero .hero-orb--main {
  width: 720px;
  height: 720px;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 122, 26, 0.55) 0%, rgba(255, 106, 0, 0.18) 45%, transparent 70%);
  animation: heroOrbPulse 7s ease-in-out infinite;
}
.suikon #hero .hero-orb--sub {
  width: 480px;
  height: 480px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 154, 61, 0.45) 0%, rgba(255, 106, 0, 0.12) 50%, transparent 75%);
  animation: heroOrbPulse 9s ease-in-out infinite reverse;
}
.suikon #hero .hero-orb--accent {
  width: 320px;
  height: 320px;
  left: 18%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 220, 180, 0.28) 0%, rgba(255, 122, 26, 0.06) 60%, transparent 80%);
  filter: blur(80px);
  animation: heroOrbPulse 11s ease-in-out infinite;
}
@media (max-width: 768px) {
  .suikon #hero .hero-orb--main { width: 480px; height: 480px; right: -200px; }
  .suikon #hero .hero-orb--sub { width: 320px; height: 320px; }
  .suikon #hero .hero-orb--accent { display: none; }
  .suikon #hero .hero-rain { opacity: 0.32; }
}
@keyframes heroOrbPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.55; }
  50%      { transform: translateY(-50%) scale(1.08); opacity: 0.7; }
}
.suikon #hero .hero-orb--sub {
  animation-name: heroOrbPulseSub;
}
@keyframes heroOrbPulseSub {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50%      { transform: scale(1.1); opacity: 0.6; }
}
.suikon #hero .hero-orb--accent {
  animation-name: heroOrbPulseAccent;
}
@keyframes heroOrbPulseAccent {
  0%, 100% { transform: scale(1); opacity: 0.28; }
  50%      { transform: scale(1.15); opacity: 0.45; }
}
@keyframes heroTreeBreath {
  from { transform: translateX(-50%) scale(1);    opacity: 0.62; }
  to   { transform: translateX(-50%) scale(1.02); opacity: 0.78; }
}
.suikon #hero .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suikon #hero .text {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .suikon #hero .text {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .suikon #hero .text {
    padding: 0 18px;
  }
}
.suikon #hero .text {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.suikon #hero .hero-logo {
  display: block;
  width: auto;
  height: 110px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 12px 36px rgba(255, 106, 0, 0.45));
}
@media (max-width: 1024px) {
  .suikon #hero .hero-logo {
    height: 84px;
    margin-bottom: 22px;
  }
}
@media (max-width: 480px) {
  .suikon #hero .hero-logo {
    height: 64px;
    margin-bottom: 18px;
  }
}
.suikon #hero .text strong {
  font-size: 75px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.04em;
}
.suikon #hero .text strong em {
  background: linear-gradient(90deg, #ff6a00 0%, #ffb066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) {
  .suikon #hero .text strong {
    font-size: 49px;
  }
}
@media (max-width: 480px) {
  .suikon #hero .text strong {
    font-size: 31px;
    word-break: keep-all;
  }
}
.suikon #hero .text p {
  margin-top: 24px;
  font-size: 21px;
  line-height: 1.7;
  color: #c9d1e0;
}
.suikon #hero .text p em {
  color: #ff8a3d;
  font-weight: 700;
}
@media (max-width: 480px) {
  .suikon #hero .text p {
    font-size: 15px;
  }
}
.suikon #hero .hero-cta {
  margin-top: 40px;
}
.suikon #hero .hero-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.suikon #hero .hero-cta .btn-primary i {
  font-size: 19px;
  transition: transform 0.2s ease;
}
.suikon #hero .hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.5);
}
.suikon #hero .hero-cta .btn-primary:hover i {
  transform: translateX(4px);
}
@media (max-width: 480px) {
  .suikon #hero .hero-cta {
    margin-top: 28px;
  }
  .suikon #hero .hero-cta .btn-primary {
    padding: 14px 24px;
    font-size: 15px;
  }
}
.suikon #hero .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  z-index: 2;
}
.suikon #hero .scroll-down span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 12px);
    opacity: 0.3;
  }
}

.suikon .section-04 .s04-nav{
  display: none;
}
.suikon .section-04 .s04-btn-down { display: none !important; }
/* section-04 모바일: 슬라이더 모드 */
@media (max-width: 768px) {
  .suikon .section-04 { height: auto; }
  .suikon .section-04 .sticky { position: relative; height: auto; overflow: hidden; --s04-media-h: calc(var(--app-h, 100dvh) * 0.42); }
  .suikon .section-04 .s04-swiper {
    width: 100%;
    overflow: hidden;
  }
  .suikon .section-04 .s04-swiper .scene {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    height: auto;
    min-height: var(--app-h, 100dvh);
    padding-bottom: 90px;
    box-sizing: border-box;
  }
  .suikon .section-04 .numberProgress { display: none; }
  .suikon .section-04 .s04-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    /* right-section(영상) 세로 중앙 = scene 하단 padding(90px) + 영상 높이의 절반 */
    top: auto;
    bottom: calc(90px + var(--s04-media-h) / 2);
    left: 0;
    transform: translateY(50%);
    width: 100%;
    padding: 0 12px;
    z-index: 20;
  }
  .suikon .section-04 .s04-nav > div {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .suikon .section-04 .s04-nav > div svg {
    position: absolute;
    inset: 0;
    width: 48px;
    height: 48px;
  }
  .suikon .section-04 .s04-nav > div i {
    position: relative;
    z-index: 1;
    font-size: 22px;
    color: #f2f2f2;
  }
  .suikon .section-04 .s04-nav > div.is-disabled { opacity: 0.25; pointer-events: none; }
  /* right-section: video를 absolute로 채워서 flex height 계산 문제 해결 */
  .suikon .section-04 .s04-swiper .scene .right-section {
    padding: 0 !important;
    flex: 1 1 auto;
    min-height: 220px;
    position: relative;
  }
  .suikon .section-04 .s04-swiper .scene .right-section video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
}

.suikon .section-04 {
  position: relative;
  height: 500vh;
  height: calc(var(--app-h, 100dvh) * 5);
  background: #000;
}
.suikon .section-04 .sticky {
  position: sticky;
  height: var(--app-h, 100dvh);
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.suikon .section-04 .sticky .scene {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--app-h, 100dvh);
  opacity: 0;
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene {
    flex-direction: column;
    align-items: center;
  }
}
.suikon .section-04 .sticky .scene .left-section {
  position: relative;
  z-index: 2;
  width:50%;
  height: 100%;
  padding: 200px 4vw;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1500px) {
  .suikon .section-04 .sticky .scene .left-section {
    padding: 100px 4vw;
  }
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene .left-section {
    padding: 70px 4vw 15px;
    width: 100%;
    flex: 1 1 auto;
  }
}
.suikon .section-04 .sticky .scene .left-section .title-wrap span {
  display: block;
  border-bottom: 1px solid #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 1.05em;
  padding-bottom: 1.19em;
}
@media (max-width: 1500px) {
  .suikon .section-04 .sticky .scene .left-section .title-wrap span {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene .left-section .title-wrap span {
    font-size: 16px;
  }
}
.suikon .section-04 .sticky .scene .left-section .title-wrap p {
  font-weight: 800;
  font-size: 63px;
  letter-spacing: -0.04em;
  line-height: 1.1em;
  color:#ff801c;
}
@media (max-width: 1500px) {
  .suikon .section-04 .sticky .scene .left-section .title-wrap p {
    font-size: 51px;
  }
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene .left-section .title-wrap p {
    font-size: 34px;
  }
}
.suikon .section-04 .sticky .scene .left-section .content-wrap {
  margin-top: 90px;
}
@media (max-width: 1500px) {
  .suikon .section-04 .sticky .scene .left-section .content-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene .left-section .content-wrap {
    margin-top: 20px;
  }
}
.suikon .section-04 .sticky .scene .left-section .content-wrap p {
  display: inline-block;
  padding: 4px 13px;
  color: #fff;
  background-color: #292929;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.45em;
  word-break: keep-all;
}
@media (max-width: 1500px) {
  .suikon .section-04 .sticky .scene .left-section .content-wrap p {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene .left-section .content-wrap p {
    font-size: 16px;
    padding: 5px 10px;
  }
}
.suikon .section-04 .sticky .scene .left-section .content-wrap ul {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  font-size: 21px;
  line-height: 1.48em;
  font-weight: 300;
  letter-spacing: -0.04em;
}
@media (max-width: 1500px) {
  .suikon .section-04 .sticky .scene .left-section .content-wrap ul {
    font-size: 19px;
    gap: 1.3em;
  }
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene .left-section .content-wrap ul {
    font-size: 16px;
    gap: 1.25em;
    padding: 0 10px;
    margin-top: 20px;
  }
}
.suikon .section-04 .sticky .scene .left-section .content-wrap ul li {
  word-break: keep-all;
}
@media (max-width: 1500px) {
  .suikon .section-04 .sticky .scene .left-section .content-wrap ul li br {
    display: none;
  }
}
.suikon .section-04 .sticky .scene .right-section {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .scene .right-section {
    width: 100%;
  }
}
.suikon .section-04 .sticky .scene .right-section video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.suikon .section-04 .sticky .scene-01 {
  z-index: 1;
  opacity: 1;
}
.suikon .section-04 .sticky .numberProgress {
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  height: var(--app-h, 100dvh);
  z-index: 2;
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .numberProgress {
    width: 100%;
    bottom: 0;
    top: initial;
  }
}
.suikon .section-04 .sticky .numberProgress canvas {
  position: absolute;
  width: min(200px, 88%);
  height: 46px;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .suikon .section-04 .sticky .numberProgress canvas {
    width: min(320px, 92%);
    min-width: 280px;
    height: 40px;
    bottom: 22px;
  }
}

.suikon .section-06 {
  position: relative;
  height: 300vh;
  height: calc(var(--app-h, 100dvh) * 3);
  min-height: 3240px;
}
.suikon .section-06 .sticky {
  position: sticky;
  top: 0;
  height: var(--app-h, 100dvh);
  overflow: hidden;
}
.suikon .section-06 .sticky .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.suikon .section-06 .sticky .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.suikon .section-06 .sticky .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suikon .section-06 .sticky .inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suikon .section-06 .sticky .inner .text {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 180px;
}
@media (max-width: 1500px) {
  .suikon .section-06 .sticky .inner .text {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .suikon .section-06 .sticky .inner .text {
    gap: 100px;
    width: 100%;
  }
}
.suikon .section-06 .sticky .inner .text div {
  display: flex;
  flex-direction: column;
  gap: 49px;
}
.suikon .section-06 .sticky .inner .text div span {
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.04em;
  opacity: 0;
}
.suikon .section-06 .sticky .inner .text div span:nth-child(1) {
  text-align: left;
}
.suikon .section-06 .sticky .inner .text div span:nth-child(2) {
  text-align: center;
}
.suikon .section-06 .sticky .inner .text div span:nth-child(3) {
  text-align: right;
}
@media (max-width: 1500px) {
  .suikon .section-06 .sticky .inner .text div span {
    font-size: 61px;
  }
}
@media (max-width: 768px) {
  .suikon .section-06 .sticky .inner .text div span {
    font-size: 34px;
  }
}
.suikon .section-06 .sticky .inner .text p {
  text-align: center;
  font-size: 29px;
  letter-spacing: -0.01em;
  line-height: 1.47em;
  opacity: 0;
}
@media (max-width: 1500px) {
  .suikon .section-06 .sticky .inner .text p {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .suikon .section-06 .sticky .inner .text p {
    font-size: 17px;
  }
}
.suikon .section-06 .sticky .paths {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.suikon .section-06 .sticky .paths .path {
  width: 33.3333333333%;
  height: 100%;
  background-color: #0b0d10;
  position: relative;
  overflow: hidden;
}
.suikon .section-06 .sticky .paths .path span {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: #000;
}
@media (max-width: 768px) {
  .suikon .section-06 .sticky .paths .path span {
    width: 12px;
  }
}


.suikon .our-cert {
  background-color: #fff;
  padding: 140px 0;
  overflow: hidden;
}
@media (max-width: 1500px) {
  .suikon .our-cert {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .suikon .our-cert {
    padding: 70px 0;
  }
}
.suikon .our-cert .scene-title {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1500px) {
  .suikon .our-cert .scene-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .suikon .our-cert .scene-title {
    margin-bottom: 40px;
  }
}
.suikon .our-cert .scene-title  p{
  display: block;
    color: #555;
    letter-spacing: -0.01em;
    font-size: 22px;
    text-align: center;
    line-height: 1.5em;
    margin-top: 1.3em;
}
.suikon .our-cert .scene-title strong {
  display: block;
  font-weight: 700;
  color: #232323;
  letter-spacing: -0.01em;
  font-size: 91px;
}
@media (max-width: 1500px) {
  .suikon .our-cert .scene-title strong {
    font-size: 71px;
  }
}
@media (max-width: 768px) {
  .suikon .our-cert .scene-title strong {
    font-size: 51px;
  }
}
.suikon .our-cert .cert-slide-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* flex-column 안에서 swiper가 콘텐츠 너비(min-content)로 펼쳐지면
   snapGrid가 1개가 되어 드래그/슬라이드가 잠긴다. 화면 폭으로 가둔다. */
.suikon .our-cert .cert-slide-wrap .swiper {
  width: 100%;
  min-width: 0;
  overflow: visible; /* 양옆 슬라이드 미리보기 */
}
@media (max-width: 1500px) {
  .suikon .our-cert .cert-slide-wrap {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .suikon .our-cert .cert-slide-wrap {
    gap: 10px;
  }
}
.suikon .our-cert .cert-slide-wrap .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suikon .our-cert .cert-slide-wrap .swiper-slide img {
  display: block;
  width: 280px;
  object-fit: cover;
  padding: 0;
}
@media (max-width: 1500px) {
  .suikon .our-cert .cert-slide-wrap .swiper-slide img {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .suikon .our-cert .cert-slide-wrap .swiper-slide img {
    width: 140px;
  }
}

.suikon /* ============================================
   NEWS (뉴스 + 유튜브)
   ============================================ */
.sec-news {
  background: #05070d;
}
.suikon .sec-news .news-block,
.suikon .sec-news .youtube-block {
  margin-bottom: 80px;
}
.suikon .sec-news .news-block:last-child,
.suikon .sec-news .youtube-block:last-child {
  margin-bottom: 0;
}
.suikon .sec-news .block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.suikon .sec-news .block-head h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}
/* 슬라이더 래퍼 — swiper는 overflow:hidden 이므로 버튼은 래퍼 기준 바깥에 배치 */
.suikon .slider-wrap {
  position: relative;
}
.suikon .sec-news .nav-btns {
  position: absolute;
  top: 50%;
  left: -90px;
  right: -90px;
  transform: translateY(calc(-50% - 13.5px));
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
  z-index: 10;
}
.suikon .sec-news .news-block .nav-btns{
  transform: translateY(calc(-50% - 24.5px));
}
.suikon .sec-news .nav-btns button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  position: relative;
  background: rgba(10, 12, 18, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.suikon .sec-news .nav-btns button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.suikon .sec-news .nav-btns button.btn-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.suikon .sec-news .nav-btns button.btn-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}
.suikon .sec-news .nav-btns button:hover {
  background: #ff6a00;
  border-color: #ff6a00;
}
.suikon .sec-news {
  /* 뉴스 카드 */
}
/* 뉴스 카드 = 유튜브 카드와 동일한 디자인 (썸네일 라운드 + 제목 아래 작성일) */
.suikon .sec-news .news-slide .swiper-slide a {
  display: block;
}
.suikon .sec-news .news-slide .swiper-slide a .thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}
.suikon .sec-news .news-slide .swiper-slide a .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.suikon .sec-news .news-slide .swiper-slide a:hover .thumb img {
  transform: scale(1.05);
}
.suikon .sec-news .news-slide .swiper-slide a .title {
  display: block;
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suikon .sec-news .news-slide .swiper-slide a .date {
  display: block;
  margin-top: 8px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #98a2b8;
}
.suikon .sec-news {
  /* 유튜브 카드 */
}
.suikon .sec-news .youtube-slide .swiper-slide a {
  display: block;
}
.suikon .sec-news .youtube-slide .swiper-slide a .thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}
.suikon .sec-news .youtube-slide .swiper-slide a .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.suikon .sec-news .youtube-slide .swiper-slide a .thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6) url('/img/suickon_logo.png') center / 60% no-repeat;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}
.suikon .sec-news .youtube-slide .swiper-slide a .thumb .play-icon i { display: none; }
.suikon .sec-news .youtube-slide .swiper-slide a:hover .thumb img {
  transform: scale(1.05);
}
.suikon .sec-news .youtube-slide .swiper-slide a:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}
.suikon .sec-news .youtube-slide .swiper-slide a .title {
  display: block;
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suikon /* ============================================
   CERTIFICATES
   ============================================ */
.sec-cert {
  background: #0b1020;
}
.suikon .sec-cert .cert-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .suikon .sec-cert .cert-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .suikon .sec-news .nav-btns{
    left: 0;
    right:0;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .suikon .sec-cert .cert-list {
    grid-template-columns: 1fr;
  }
}
.suikon .sec-cert .cert-list li {
  background: #11172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.suikon .sec-cert .cert-list li:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
}
.suikon .sec-cert .cert-list .cert-img {
  aspect-ratio: 3/4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.suikon .sec-cert .cert-list .cert-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.suikon .sec-cert .cert-list .cert-name {
  padding: 18px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #e7ecf5;
}

.suikon /* ============================================
   TRIAL (무료체험 폼)
   ============================================ */
.sec-trial {
  background: #05070d;
  position: relative;
}
.suikon .sec-trial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(32, 156, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.suikon .sec-trial .inner {
  position: relative;
}
.suikon .sec-trial .trial-form {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px;
  background: #11172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .suikon .sec-trial .trial-form {
    padding: 32px 24px;
  }
}
.suikon .sec-trial .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
@media (max-width: 600px) {
  .suikon .sec-trial .form-grid {
    grid-template-columns: 1fr;
  }
}
.suikon .sec-trial .form-row.full {
  grid-column: 1/-1;
}
.suikon .sec-trial .form-row label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #e7ecf5;
}
.suikon .sec-trial .form-row label .req {
  color: #ff3b3b;
  margin-left: 2px;
}
.suikon .sec-trial .form-row input,
.suikon .sec-trial .form-row select,
.suikon .sec-trial .form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #e7ecf5;
  font-size: 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.suikon .sec-trial .form-row input::placeholder,
.suikon .sec-trial .form-row select::placeholder,
.suikon .sec-trial .form-row textarea::placeholder {
  color: #6b7384;
}
.suikon .sec-trial .form-row input:focus,
.suikon .sec-trial .form-row select:focus,
.suikon .sec-trial .form-row textarea:focus {
  outline: none;
  border-color: #ff6a00;
  background: rgba(32, 156, 255, 0.06);
}
.suikon .sec-trial .form-row select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #98a2b8 50%), linear-gradient(135deg, #98a2b8 50%, transparent 50%);
  background-position: right 18px center, right 13px center;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.suikon .sec-trial .form-row textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.suikon .sec-trial .form-agree {
  margin: 24px 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.suikon .sec-trial .form-agree input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #ff6a00;
  cursor: pointer;
}
.suikon .sec-trial .form-agree label {
  font-size: 15px;
  color: #98a2b8;
  cursor: pointer;
}
.suikon .sec-trial .form-agree label a {
  color: #ff9a3d;
  text-decoration: underline;
  margin-left: 4px;
}
.suikon .sec-trial .btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.suikon .sec-trial .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(32, 156, 255, 0.55);
  filter: brightness(1.05);
}
.suikon .sec-trial .btn-submit:active {
  transform: translateY(0);
}

.suikon /* ============================================
   FOOTER (기존 마크업 보강)
   ============================================ */
#footer {
  background: #050608;
  color: #98a2b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 40px;
}
.suikon #footer .bh_wrap{
  position: relative;
}
.suikon #footer .footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .suikon #footer .footer {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .suikon #footer { padding: 0; }
}
@media (max-width: 480px) {
  .suikon #footer .footer {
    padding: 0 18px;
  }
}
.suikon #footer .bh_row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.suikon #footer .footer_logo img {
  max-height: 76px;
  /* filter: brightness(1.2); */
  margin-top: -16px;
}
.suikon #footer .copyright {
  flex: 1;
  min-width: 280px;
}
.suikon #footer .footer_menu ul {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}
.suikon #footer .footer_menu ul li a {
  font-size: 15px;
  color: #e7ecf5;
  font-weight: 600;
}
.suikon #footer .footer_menu ul li a:hover {
  color: #ff9a3d;
}
.suikon #footer .f_info .flex_box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 6px;
}
.suikon #footer .f_info .flex_box p {
  font-size: 15px;
  color: #98a2b8;
  line-height: 1.6;
}
.suikon #footer .f_info .flex_box .bh_color_white {
  color: #fff;
}
.suikon #footer .f_info .lg\:ds-n {
  display: none;
}
@media (max-width: 1024px) {
  .suikon #footer .f_info .lg\:ds-f {
    display: none;
  }
  .suikon #footer .f_info .lg\:ds-n {
    display: flex;
  }
}
.suikon #footer .f_info .mt-10 {
  margin-top: 14px;
}
.suikon #footer .f_info span {
  font-size: 14px;
  color: #6b7384;
  line-height: 1.7;
}
.suikon #footer .sns_link_box .ds-f {
  display: flex;
  gap: 10px;
  position: absolute;
  right:0;
  top:0;
}
.suikon #footer .sns_link_box a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.suikon #footer .sns_link_box a i {
  font-size: 19px;
  color: #fff;
}
.suikon #footer .sns_link_box a img {
  width: 18px;
  /* filter: invert(1) brightness(2); */
}
.suikon #footer .sns_link_box a:hover {
  background: #ff6a00;
  transform: translateY(-2px);
}

.suikon /* 헤더 높이만큼 본문 시작 위치 보정 */
#hero {
  margin-top: 0;
}

.suikon .sec[id] {
  scroll-margin-top: 84px;
}

@media (max-width: 1280px) {
  .suikon .sec[id] {
    scroll-margin-top: 64px;
  }
}
.suikon /* ============================================
   GSAP 진입 효과용 초기 상태
   js-* 클래스가 붙으면 GSAP가 잡아서 애니메이션
   ============================================ */
.js-fade-up {
  opacity: 0;
  transform: translateY(60px);
}

.suikon .js-fade-in {
  opacity: 0;
}

.suikon .js-scale-in {
  opacity: 0;
  transform: scale(0.92);
}

.suikon /* hero parallax */
#hero .bg {
  will-change: transform;
}

.suikon #hero .text {
  will-change: transform, opacity;
}

.suikon /* products stagger 초기 상태 */
.sec-products .product-item.js-stagger {
  opacity: 0;
  transform: translateY(80px);
}

.suikon /* certificates stagger */
.sec-cert .cert-list li.js-stagger {
  opacity: 0;
  transform: translateY(60px);
}

.suikon /* trial 카드 진입 */
.sec-trial .trial-form.js-trial {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
}


.suikon /* ============================================
   플로팅 무료체험 신청 + 모달
   ============================================ */
.trial-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  width: 200px;
  box-sizing: border-box;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fabFloat 3.6s ease-in-out infinite;
}
.suikon .trial-fab i { font-size: 21px; }
.suikon .trial-fab__label-mo { display: none; }
.suikon .trial-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 106, 0, 0.55);
}
.suikon .trial-fab--app {
  bottom: 92px;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
  animation: none;
}
.suikon .trial-fab--app:hover {
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.55);
}
@media (max-width: 480px) {
  .suikon .trial-fab {
    right: 16px;
    bottom: 16px;
    padding: 14px 18px;
    font-size: 15px;
  }
  .suikon .trial-fab i { font-size: 19px; }
  .suikon .trial-fab--app {bottom: 74px;}
}
@keyframes fabFloat {
  0%, 100% { box-shadow: 0 16px 40px rgba(255, 106, 0, 0.45); }
  50%      { box-shadow: 0 20px 56px rgba(255, 106, 0, 0.65); }
}

.suikon .trial-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.suikon .trial-modal.is-open { display: block; }
.suikon .trial-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: trialFadeIn 0.25s ease;
}
.suikon .trial-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 92vw);
  padding: 32px;
  background: linear-gradient(180deg, #131a2e 0%, #0b1020 100%);
  border: 1px solid rgba(255, 138, 61, 0.2);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: #e7ecf5;
  animation: trialPanelIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.suikon .trial-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #98a2b8;
  font-size: 23px;
  border-radius: 8px;
  border:0;
  transition: color 0.2s ease, background 0.2s ease;
}
.suikon .trial-modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.suikon .trial-modal h2 {
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.suikon .trial-modal__desc {
  margin-top: 12px;
  font-size: 15px;
  color: #98a2b8;
}
.suikon .trial-form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.suikon .trial-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.suikon .trial-field > span {
  font-size: 14px;
  font-weight: 600;
  color: #c9d1e0;
}
.suikon .trial-field input {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.suikon .trial-field input::placeholder { color: #5d6679; }
.suikon .trial-field input:focus {
  outline: none;
  border-color: #ff8a3d;
  background: rgba(255, 138, 61, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.18);
}
.suikon .trial-agree-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.suikon .trial-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c9d1e0;
  cursor: pointer;
  user-select: none;
}
.suikon .trial-agree input {
  width: 16px;
  height: 16px;
  accent-color: #ff6a00;
  flex-shrink: 0;
}
.suikon .trial-terms {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 12.5px;
  color: #c9d1e0;
  line-height: 1.6;
  max-height: 220px;
  overflow-y: auto;
}
.suikon .trial-terms h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.suikon .trial-terms dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.suikon .trial-terms dl > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
}
.suikon .trial-terms dt {
  color: #98a2b8;
  font-weight: 600;
}
.suikon .trial-terms dd { color: #e7ecf5; }
.suikon .trial-terms__note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #98a2b8;
}
.suikon .trial-submit {
  margin-top: 6px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.suikon .trial-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.4);
}

body.suikon.trial-open { overflow: hidden; }

@keyframes trialFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes trialPanelIn {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.suikon /* ============================================
   QUICK MENU — 자주묻는질문 / 오시는길 / 공지사항
   ============================================ */
.sec-quick {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
  background: #05070d;
}
.suikon .sec-quick .quick-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.78) 0%, rgba(5, 7, 13, 0.58) 50%, rgba(5, 7, 13, 0.92) 100%),
    radial-gradient(ellipse 60% 70% at 30% 50%, rgba(255, 122, 26, 0.22) 0%, transparent 65%),
    #05070d;
}
.suikon .sec-quick .quick-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.suikon .sec-quick .quick-item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 56px 24px;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.suikon .sec-quick .quick-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0) 0%, rgba(255, 122, 26, 0) 50%, rgba(255, 138, 61, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.suikon .sec-quick .quick-item a:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 61, 0.4);
  background: rgba(255, 122, 26, 0.06);
  box-shadow: 0 20px 50px rgba(255, 106, 0, 0.25);
}
.suikon .sec-quick .quick-item a:hover::before { opacity: 1; }
.suikon .sec-quick .quick-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.15) 0%, rgba(255, 154, 61, 0.08) 100%);
  border: 1px solid rgba(255, 138, 61, 0.3);
  color: #ff9a3d;
  font-size: 43px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.suikon .sec-quick .quick-item a:hover .quick-ico {
  transform: scale(1.08);
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  border-color: transparent;
}
.suikon .sec-quick .quick-label {
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.suikon .sec-quick .quick-arrow {
  display: none;
  display: noe;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #98a2b8;
  font-size: 19px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.suikon .sec-quick .quick-item a:hover .quick-arrow {
  color: #ff9a3d;
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .suikon .sec-quick { padding: 80px 0; }
  .suikon .sec-quick .quick-list { gap: 18px; }
  .suikon .sec-quick .quick-item a { padding: 40px 20px; min-height: 180px; }
  .suikon .sec-quick .quick-ico { width: 60px; height: 60px; font-size: 27px; }
  .suikon .sec-quick .quick-label { font-size: 19px; }
}
@media (max-width: 640px) {
  .suikon .sec-quick { padding: 60px 0; }
  .suikon .sec-quick .quick-list { grid-template-columns: 1fr; gap: 14px; }
  .suikon .sec-quick .quick-item a { padding: 32px 20px; min-height: 0; gap: 14px; }
  .suikon .sec-quick .quick-ico { width: 52px; height: 52px; font-size: 25px; }
  .suikon .sec-quick .quick-label { font-size: 18px; }
}

.suikon /* ============================================
   OUR-CERT — 인증기관 서류 공증 카드 그리드
   ============================================ */
.our-cert {
  padding: 140px 0;
  background: #05070d;
}
.suikon .our-cert .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.suikon .our-cert .scene-title {
  text-align: center;
  margin-bottom: 60px;
}
.suikon .our-cert .scene-title strong {
  display: block;
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.25;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}
.suikon .our-cert .scene-title p {
  margin-top: 18px;
  font-size: 17px;
  color: #98a2b8;
  line-height: 1.7;
}
.suikon .our-cert .cert-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.suikon .our-cert .cert-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.suikon /* .our-cert .cert-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 61, 0.35);
  box-shadow: 0 20px 50px rgba(255, 106, 0, 0.18);
} */
.our-cert .cert-img {
  aspect-ratio: 3 / 4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.suikon .our-cert .cert-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.suikon .our-cert .cert-logo {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}
.suikon .our-cert .cert-logo img {
  max-width: 80%;
  max-height: 36px;
  object-fit: contain;
  /* filter: brightness(0) invert(1) opacity(0.85); */
}
@media (max-width: 1024px) {
  .suikon .our-cert { padding: 100px 0; }
  .suikon .our-cert .scene-title strong { font-size: 35px; }
  .suikon .our-cert .cert-list { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 640px) {
  .suikon .our-cert { padding: 70px 0; }
  .suikon .our-cert .inner { padding: 0 18px; }
  .suikon .our-cert .scene-title strong { font-size: 27px; }
  .suikon .our-cert .scene-title p { font-size: 15px; }
  .suikon .our-cert .cert-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .suikon .our-cert .cert-logo { min-height: 56px; padding: 12px; }
  .suikon .our-cert .cert-logo img { max-height: 28px; }
}

.suikon /* ============================================
   TRIAL — 무료체험 폼 약관 박스
   ============================================ */
.sec-trial .form-terms {
  margin-top: 24px;
}
.suikon .sec-trial .form-terms h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.suikon .sec-trial .terms-box {
  max-height: 220px;
  overflow-y: auto;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #c9d1e0;
}
.suikon .sec-trial .terms-box:focus {
  outline: none;
  border-color: rgba(255, 138, 61, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.16);
}
.suikon .sec-trial .terms-box::-webkit-scrollbar { width: 6px; }
.suikon .sec-trial .terms-box::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 6px; }
.suikon .sec-trial .terms-box::-webkit-scrollbar-thumb { background: rgba(255, 138, 61, 0.4); border-radius: 6px; }
.suikon .sec-trial .terms-box::-webkit-scrollbar-thumb:hover { background: rgba(255, 138, 61, 0.7); }
.suikon .sec-trial .terms-box p { margin: 0 0 10px; }
.suikon .sec-trial .terms-box p:last-child { margin-bottom: 0; }
.suikon .sec-trial .terms-box .terms-effective {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 18px;
  padding: 4px 10px;
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 6px;
  color: #ff9a3d;
  font-size: 12.5px;
  font-weight: 600;
}
.suikon .sec-trial .terms-box h5 {
  margin: 16px 0 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.suikon .sec-trial .terms-box .terms-toc,
.suikon .sec-trial .terms-box ol,
.suikon .sec-trial .terms-box ul {
  margin: 8px 0 14px;
  padding-left: 22px;
}
.suikon .sec-trial .terms-box .terms-toc { color: #e7ecf5; }
.suikon .sec-trial .terms-box .terms-toc li,
.suikon .sec-trial .terms-box ol li,
.suikon .sec-trial .terms-box ul li {
  margin-bottom: 4px;
}
.suikon .sec-trial .terms-box .terms-toc { list-style: decimal; }
.suikon .sec-trial .terms-box ul { list-style: disc; }
.suikon .sec-trial .section-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ff6a00 0%, #ffb066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.suikon /* ============================================
   SECTION-04 — 제품소개 (5개 항목 그리드)
   ============================================ */
.sec-product-intro {
  padding: 140px 0;
  background: #05070d;
  position: relative;
  overflow: hidden;
}
.suikon .sec-product-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(255, 122, 26, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(255, 154, 61, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.suikon .sec-product-intro .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.suikon .sec-product-intro .section-head {
  text-align: center;
  margin-bottom: 60px;
}
.suikon .sec-product-intro .section-head .eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 138, 61, 0.14);
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 999px;
  color: #ff9a3d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.suikon .sec-product-intro .section-head .section-title {
  display: block;
  margin-top: 18px;
  font-size: 49px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}
.suikon .sec-product-intro .section-head .section-desc {
  margin-top: 14px;
  font-size: 17px;
  color: #98a2b8;
  line-height: 1.7;
}
.suikon .sec-product-intro .pi-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.suikon .sec-product-intro .pi-item {
  position: relative;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.suikon .sec-product-intro .pi-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top left, rgba(255, 138, 61, 0.18), transparent 70%);
  pointer-events: none;
}
.suikon .sec-product-intro .pi-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 61, 0.35);
  background: rgba(255, 122, 26, 0.05);
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.18);
}
.suikon .sec-product-intro .pi-num {
  display: inline-block;
  font-family: "Space Grotesk", "Pretendard Variable", "Pretendard", sans-serif;
  font-size: 33px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6a00 0%, #ffb066 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.suikon .sec-product-intro .pi-title {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}
.suikon .sec-product-intro .pi-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #c9d1e0;
}
.suikon .sec-product-intro .pi-ico {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 138, 61, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.22);
  color: #ff9a3d;
  font-size: 23px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.suikon .sec-product-intro .pi-item:hover .pi-ico {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, #ff6a00, #ff9a3d);
  color: #fff;
}

.suikon /* 가로로 펼치는 wide 카드 (4, 5번) */
.sec-product-intro .pi-wide {
  grid-column: span 3;
  padding: 44px 40px;
}
.suikon .sec-product-intro .pi-wide .pi-feature {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
.suikon .sec-product-intro .pi-wide .pi-feature li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #c9d1e0;
  line-height: 1.6;
}
.suikon .sec-product-intro .pi-wide .pi-feature li i {
  color: #ff9a3d;
  font-size: 19px;
  flex-shrink: 0;
  margin-top: 1px;
}
.suikon .sec-product-intro .pi-exchanges {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.suikon .sec-product-intro .pi-exchanges li {
  padding: 8px 18px;
  background: rgba(255, 138, 61, 0.08);
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: 999px;
  color: #ffd5a6;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .suikon .sec-product-intro { padding: 100px 0; }
  .suikon .sec-product-intro .section-head .section-title { font-size: 39px; }
  .suikon .sec-product-intro .pi-list { grid-template-columns: repeat(2, 1fr); }
  .suikon .sec-product-intro .pi-wide { grid-column: span 2; }
  .suikon .sec-product-intro .pi-wide .pi-feature { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .suikon .sec-product-intro { padding: 70px 0; }
  .suikon .sec-product-intro .inner { padding: 0 18px; }
  .suikon .sec-product-intro .section-head .section-title { font-size: 29px; }
  .suikon .sec-product-intro .section-head .section-desc { font-size: 15px; }
  .suikon .sec-product-intro .pi-list { grid-template-columns: 1fr; gap: 14px; }
  .suikon .sec-product-intro .pi-wide { grid-column: 1; padding: 32px 24px; }
  .suikon .sec-product-intro .pi-item { padding: 28px 22px; }
  .suikon .sec-product-intro .pi-num { font-size: 27px; margin-bottom: 12px; }
  .suikon .sec-product-intro .pi-title { font-size: 20px; }
  .suikon .sec-product-intro .pi-ico { width: 38px; height: 38px; font-size: 19px; top: 22px; right: 22px; }
}

.suikon /* ============================================
   OUR-CERT (Light) — 흰 배경 + 흘러가는 슬라이드 + 호버 zoom
   ============================================ */
.our-cert--light {
  padding: 120px 0;
  background: #05070d;
  color: #e7ecf5;
  overflow: hidden;
}
.suikon .our-cert--light .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media all and (max-width:480px){
  .suikon .our-cert--light .inner{
    padding:0 18px;
  }
}
.suikon .our-cert--light .scene-title {
  text-align: center;
  margin-bottom: 60px;
}
.suikon .our-cert--light .scene-title .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 14px;
  background: rgba(255, 138, 61, 0.14);
  border: 1px solid rgba(255, 138, 61, 0.35);
  border-radius: 999px;
  color: #ff7a1a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.suikon .our-cert--light .scene-title strong {
  display: block;
  font-size: 49px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.22;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}
.suikon .our-cert--light .scene-title p {
  margin-top: 18px;
  font-size: 19px;
  color: rgba(231, 236, 245, 0.7);
  line-height: 1.75;
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  .suikon .our-cert--light .scene-title { margin-bottom: 44px; }
  .suikon .our-cert--light .scene-title strong { font-size: 39px; }
  .suikon .our-cert--light .scene-title p { font-size: 17px; }
}
@media (max-width: 640px) {
  .suikon .our-cert--light .scene-title { margin-bottom: 32px; }
  .suikon .our-cert--light .scene-title .eyebrow { font-size: 13px; margin-bottom: 14px; }
  .suikon .our-cert--light .scene-title strong { font-size: 27px; line-height: 1.3; }
  .suikon .our-cert--light .scene-title p { font-size: 15px; margin-top: 12px; line-height: 1.65; }
}
.suikon .our-cert--light .cert-slide-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.suikon .our-cert--light .cert-slide {
  margin: 0 auto;
}
.suikon .our-cert--light .cert-slide .swiper-wrapper {
  /* justify-content: center; */
  /* transition-timing-function: linear !important; */
}
.suikon .our-cert--light .cert-slide .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suikon .our-cert--light .cert-item {
  position: relative;
  /* background: #fff; */
  /* border: 1px solid #e6e8ee; */
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.suikon .our-cert--light .cert-item:hover {
  
}
.suikon .our-cert--light .cert-img {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.suikon .our-cert--light .cert-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* padding: 10px; */
}
.suikon .our-cert--light .cert-logo {
  padding: 12px 14px 0;
  background: none;
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: unset;
}
.suikon .our-cert--light .cert-logo img {
  width: 80px !important;
  height: 30px !important;
  object-fit: contain !important;
  z-index: revert;
  /* opacity: 0.85; */
  transition: opacity 0.3s ease;
}
.suikon .our-cert--light .cert-item:hover .cert-logo img {
  opacity: 1;
}
.suikon .our-cert--light .cert-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 122, 26, 0.28);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.suikon .our-cert--light .cert-item:hover::before {
  opacity: 1;
}
@media (max-width: 1024px) {
  .suikon .our-cert--light { padding: 90px 0; }
  .suikon .our-cert--light .scene-title strong { font-size: 35px; }
  /* .suikon .our-cert--light .cert-slide .swiper-slide { width: 180px; } */
}
@media (max-width: 640px) {
  .suikon .our-cert--light { padding: 60px 0; }
  .suikon .our-cert--light .scene-title strong { font-size: 27px; }
  .suikon .our-cert--light .scene-title p { font-size: 15px; }
  /* .suikon .our-cert--light .cert-slide .swiper-slide { width: 150px; } */
  .suikon .our-cert--light .cert-slide .swiper-wrapper{
    justify-content: unset;
  }
}

.suikon /* ============================================
   유튜브 재생 모달
   ============================================ */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
}
.suikon .yt-modal.is-open { display: block; }
.suikon .yt-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.suikon .yt-modal__panel {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 92vw);
  max-width: 92vw;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: ytZoomIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes ytZoomIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.suikon .yt-modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.suikon .yt-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.suikon .yt-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, transform 0.3s ease, border-color 0.2s ease;
}
.suikon .yt-modal__close:hover {
  background: linear-gradient(135deg, #ff6a00, #ff9a3d);
  border-color: transparent;
  transform: rotate(90deg);
}
body.suikon.yt-open { overflow: hidden; }
@media (max-width: 640px) {
  .suikon .yt-modal__panel { width: 94vw; }
  .suikon .yt-modal__close { width: 36px; height: 36px; font-size: 21px; }
}

.suikon /* section-04 PRODUCT INTRO 숫자만 강조 */
.section-04 .scene .title-wrap span em {
  color: #ff801c;
  font-style: normal;
  font-weight: 700;
}

.suikon /* sec-quick 헤드 */
.sec-quick .quick-head {
  text-align: center;
  margin-bottom: 48px;
}
.suikon .sec-quick .quick-head .eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 138, 61, 0.14);
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 999px;
  color: #ff9a3d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.suikon .sec-quick .quick-head .quick-title {
  display: block;
  margin-top: 16px;
  font-size: 45px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}
@media (max-width: 1024px) {
  .suikon .sec-quick .quick-head { margin-bottom: 36px; }
  .suikon .sec-quick .quick-head .quick-title { font-size: 35px; }
}
@media (max-width: 640px) {
  .suikon .sec-quick .quick-head { margin-bottom: 28px; }
  .suikon .sec-quick .quick-head .quick-title { font-size: 27px; }
}

.suikon /* sec-quick hover desc */
.sec-quick .quick-item a {
  flex-wrap: wrap;
}
.suikon /* desc는 항상 자리를 차지(높이 고정), opacity/transform만 토글 */
.sec-quick .quick-desc {
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #c9d1e0;
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.suikon .sec-quick .quick-label {
  transition: transform 0.3s ease, color 0.3s ease;
}
.suikon .sec-quick .quick-item a:hover .quick-label {
  transform: translateY(-2px);
  color: #ffd5a6;
}
.suikon .sec-quick .quick-item a:hover .quick-desc {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .suikon .sec-quick .quick-desc {
    opacity: 1;
    transform: none;
    font-size: 14px;
  }
}

.suikon /* trial-modal .trial-terms 약관 (긴 본문) */
.trial-modal .trial-terms {
  max-height: 240px;
  overflow-y: auto;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.65;
  color: #c9d1e0;
}
.suikon .trial-modal .trial-terms:focus {
  outline: none;
  border-color: rgba(255, 138, 61, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.18);
}
.suikon .trial-modal .trial-terms::-webkit-scrollbar { width: 6px; }
.suikon .trial-modal .trial-terms::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 6px; }
.suikon .trial-modal .trial-terms::-webkit-scrollbar-thumb { background: rgba(255, 138, 61, 0.4); border-radius: 6px; }
.suikon .trial-modal .trial-terms h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.suikon .trial-modal .trial-terms h5 {
  margin: 14px 0 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}
.suikon .trial-modal .trial-terms p { margin: 0 0 8px; }
.suikon .trial-modal .trial-terms p:last-child { margin-bottom: 0; }
.suikon .trial-modal .trial-terms .terms-effective {
  display: inline-block;
  margin: 4px 0 14px;
  padding: 3px 10px;
  background: rgba(255, 138, 61, 0.14);
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 6px;
  color: #ff9a3d;
  font-size: 13px;
  font-weight: 600;
}
.suikon .trial-modal .trial-terms .terms-toc,
.suikon .trial-modal .trial-terms ol,
.suikon .trial-modal .trial-terms ul {
  margin: 6px 0 12px;
  padding-left: 20px;
}
.suikon .trial-modal .trial-terms .terms-toc { list-style: decimal; color: #e7ecf5; }
.suikon .trial-modal .trial-terms ol { list-style: decimal; }
.suikon .trial-modal .trial-terms ul { list-style: disc; }
.suikon .trial-modal .trial-terms .terms-toc li,
.suikon .trial-modal .trial-terms ol li,
.suikon .trial-modal .trial-terms ul li {
  margin-bottom: 3px;
}

/* ============================================
   모바일 반응형 보강 (페이지 전반)
   ============================================ */
@media (max-width: 768px) {
  .suikon /* 헤더 로고 */
  .header-inner .logo img { height: 36px; }

  .suikon /* 히어로 카피/CTA */
  #hero .hero-logo {height: 76px;margin-bottom: 14px;}
  .suikon #hero .text strong {font-size: 49px;}
  .suikon #hero .text p {font-size: 19px;margin-top: 16px;}
  .suikon #hero .hero-cta .btn-primary { padding: 13px 22px; font-size: 15px; }
  .suikon #hero .hero-orb--main { width: 360px; height: 360px; right: -180px; }
  .suikon #hero .hero-orb--sub { width: 240px; height: 240px; left: -100px; bottom: -100px; }

  .suikon /* section-04 sticky : 좌측 텍스트 콘텐츠를 좁고 영상은 작게 */
  .section-04 .sticky .scene {flex-direction: column;justify-content: space-between;}
  .suikon .section-04 .sticky .scene .left-section {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    padding: 80px 22px 16px;
  }
  .suikon .section-04 .sticky .scene .left-section .title-wrap span { font-size: 14px; padding-bottom: 0.8em; margin-bottom: 0.8em; }
  .suikon .section-04 .sticky .scene .left-section .title-wrap p { font-size: 29px; }
  .suikon .section-04 .sticky .scene .left-section .content-wrap { margin-top: 14px; }
  .suikon .section-04 .sticky .scene .left-section .content-wrap p { font-size: 15px; }
  .suikon .section-04 .sticky .scene .left-section .content-wrap ul {
    font-size: 14px;
    gap: 0.7em;
    margin-top: 14px;
    padding: 0 4px;
  }
  .suikon .section-04 .sticky .scene .right-section {width: calc(100vw - 36px);height: var(--s04-media-h);flex: 0 0 var(--s04-media-h);min-height: 0;}
  .suikon .section-04 .sticky .scene .right-section video { height: 100%; min-height: 0; }

  .suikon /* numberProgress 위치 조정 */
  .section-04 .sticky .numberProgress canvas { bottom: 12px; }

  .suikon /* 무료체험 폼 */
  .sec-trial .trial-form { padding: 28px 18px; border-radius: 16px; }
  .suikon .sec-trial .terms-box { max-height: 200px; padding: 14px; font-size: 13px; }
  .suikon .sec-trial .btn-submit { padding: 16px; font-size: 17px; }

  .suikon /* trial-modal */
  .trial-modal__panel { padding: 22px 18px; width: min(94vw, 420px); }
  .suikon .trial-modal h2 { font-size: 20px; }
  .suikon .trial-modal__desc { font-size: 14px; }
  .suikon .trial-modal .trial-terms { max-height: 180px; font-size: 11.5px; }

  .suikon /* 플로팅 CTA */
  .trial-fab {
    /* flex-direction: column; */
    gap: 4px;
    padding: 10px 12px;
    width: 96px;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
  .suikon .trial-fab i { display: block; font-size: 18px; }
  .suikon .trial-fab .trial-fab__label { display: none; }
  .suikon .trial-fab .trial-fab__label-mo { display: block; }
  .suikon .trial-fab .trial-fab__label-mo br{display: none;}

  .suikon /* sec-quick 헤드 */
  .sec-quick { padding: 60px 0; }
  .suikon .sec-quick .inner { padding: 0 18px; }
  .suikon .sec-quick .quick-list { grid-template-columns: 1fr; gap: 12px; }
  .suikon .sec-quick .quick-item a { padding: 28px 18px; min-height: 0; }

  .suikon /* footer */
  #footer .footer { padding: 36px 18px; }
  .suikon #footer .footer_logo img { max-width: 140px; }
  .suikon #footer .copyright,
.suikon #footer .copyright * { text-align: left; }
  .suikon #footer .footer_menu ul { justify-content: flex-start; }
  .suikon #footer .f_info,
.suikon #footer .f_info .flex_box,
.suikon #footer .f_info .flex_box p,
.suikon #footer .f_info span {
    text-align: left;
    justify-content: flex-start;
    font-size: 13px;
    line-height: 1.35;
  }
  .suikon #footer .f_info .flex_box { gap: 0 12px; row-gap: 0; margin: 0; }
  .suikon #footer .f_info .flex_box p { margin: 0; padding: 0; }
  .suikon #footer .f_info .mt-10 {margin-top: 14px !important;}
  .suikon #footer .f_info p { margin: 0; }
  .suikon #footer .f_info > * + * { margin-top: 2px; }

  .suikon /* yt modal */
  .yt-modal__panel { width: 94vw; }
}

@media (max-width: 480px) {
  .suikon /* 더 작은 폰 */
  #hero .text strong {/* font-size: 25px; */}
  .suikon #hero .text p {/* font-size: 13px; */}
  .suikon #hero .hero-logo {/* height: 48px; */}

  .suikon /* section-04 더 작게 */
  .section-04 .sticky .scene .left-section { padding: 70px 18px 12px; }
  .suikon .section-04 .sticky .scene .left-section .title-wrap p { font-size: 25px; }
  .suikon .section-04 .sticky .scene .right-section { min-height: 180px; }

  .suikon /* news/youtube 카드 폭 */
  .sec-news .news-block,
.suikon .sec-news .youtube-block {/* padding: 0 18px; */}

  .suikon /* our-cert title */
  .our-cert--light .scene-title strong { font-size: 23px; }
  .suikon .our-cert--light .scene-title p { font-size: 12.5px; }

  .suikon /* product-intro 영문 라벨 */
  .section-04 .sticky .scene .left-section .title-wrap span em { font-weight: 800; }
}

.suikon /* news / youtube 슬라이더 양옆 살짝 보이게 */
.sec-news{
  overflow: hidden;
}
.suikon .sec-news .news-slide,
.suikon .sec-news .youtube-slide {
  /* overflow: visible; */
}
/* .sec-news .news-block,
.sec-news .youtube-block {
  overflow: hidden;
} */

/* section-06 모바일: non-sticky, 일반 flow */
@media (max-width: 768px) {
  .suikon .section-06 {
    height: auto;
    min-height: 0;
  }
  .suikon .section-06 .sticky {
    position: relative;
    /* height: var(--app-h, 100dvh); */
    min-height: 560px;
  }
  .suikon .section-06 .sticky .inner .text > div {
    padding: 0 15px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
  }
  .suikon .section-06.is-in .sticky .inner .text > div {
    opacity: 1;
    transform: translateY(0);
  }
  .suikon /* section-04 모바일에서 right-section 영상 패딩 */
  .section-04 .sticky .scene .right-section { padding: 18px 12px; }
  .suikon #news{
    overflow: hidden;
  }
  .suikon .sec-news .news-block,
.suikon .sec-news .youtube-block{
    overflow: unset;
  }
}

.suikon /* ============================================
   SECTION-01 — 회사소개 (sticky scroll)
   배경 영상 fade in/out + 좌→우 dim
   ============================================ */
.sec-about {
  position: relative;
  height: 100vh;
  height: var(--app-h, 100dvh);
  background: #000;
  color: #fff;
}
.suikon .sec-about .sticky {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.suikon .sec-about .section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease-out;
}
.suikon .sec-about.is-in .section-bg {
  opacity: 0.55;
}
.suikon .sec-about .section-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.suikon /* 좌→우 dim : 왼쪽 완전 불투명, 오른쪽 투명 */
.sec-about .section-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.92) 20%,
      rgba(0, 0, 0, 0.7) 45%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.15) 100%),
    radial-gradient(ellipse 60% 80% at 35% 50%, rgba(255, 122, 26, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.suikon .sec-about .section-title {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.suikon .sec-about .title-head,
.suikon .sec-about .title-body {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.suikon .sec-about .title-head { transition-delay: 0.2s; }
.suikon .sec-about .title-body { transition-delay: 0.45s; }
.suikon .sec-about.is-in .title-head,
.suikon .sec-about.is-in .title-body {
  opacity: 1;
  transform: translateY(0);
}
.suikon .sec-about .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.suikon .sec-about .title-head .eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 5px 14px;
  background: rgba(255, 138, 61, 0.14);
  border: 1px solid rgba(255, 138, 61, 0.35);
  border-radius: 999px;
  color: #ff9a3d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.suikon .sec-about .title-head .head-line {
  display: block;
  font-size: 57px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: #fff;
}
.suikon .sec-about .title-head .head-line em {
  font-style: normal;
  background: linear-gradient(90deg, #ff6a00 0%, #ffb066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.suikon .sec-about .title-body {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 700px;
}
.suikon .sec-about .title-body p {
  font-size: 19px;
  line-height: 1.85;
  color: rgba(231, 236, 245, 0.88);
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  .suikon .sec-about .title-head .head-line { font-size: 43px; }
  .suikon .sec-about .title-body p { font-size: 17px; }
}
@media (max-width: 640px) {
  .suikon .sec-about .inner { padding: 0 22px; }
  .suikon .sec-about .title-head .eyebrow { font-size: 13px; }
  .suikon .sec-about .title-head .head-line { font-size: 29px; }
  .suikon .sec-about .title-body { margin-top: 26px; gap: 16px; }
  .suikon .sec-about .title-body p { font-size: 15px; line-height: 1.75; }
  .suikon .sec-about .title-body br { display: none; }
  .suikon /* 모바일에서 dim 더 짙게 (가독성) */
  .sec-about .section-dim {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
  }
}

.suikon /* 모바일 전용 줄바꿈 */
.br-mobile { display: none; }
@media (max-width: 640px) {
  .suikon .br-mobile { display: inline; }
}

.suikon /* ============================================
   서브페이지 공통 (sub-*)
   ============================================ */
body.sub-page { background: #05070d; color: #e7ecf5; }

.suikon .sub-hero {
  position: relative;
  min-height: 480px;
  padding: 200px 0 120px;
  background:
    radial-gradient(ellipse 70% 80% at 30% 40%, rgba(255, 122, 26, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 70%, rgba(255, 154, 61, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #0b0d10 0%, #05070d 100%);
}
.suikon .sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 154, 61, 0.06) 50%, transparent 50.5%) 0 0 / 80px 80px,
    linear-gradient(0deg, transparent 49.5%, rgba(255, 154, 61, 0.06) 50%, transparent 50.5%) 0 0 / 80px 80px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  z-index: 1;
}

.suikon /* 서브 히어로 배경 이미지 (페이지별로 --sub-hero-bg 변수 지정) */
.sub-hero.has-bg {
  background-image:
    var(--sub-hero-bg),
    linear-gradient(180deg, #0b0d10 0%, #05070d 100%);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat;
}
.suikon .sub-hero.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.88) 0%, rgba(5, 7, 13, 0.55) 45%, rgba(5, 7, 13, 0.15) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.4) 0%, transparent 30%, rgba(5, 7, 13, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 640px) {
  .suikon .sub-hero.has-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.7) 0%, rgba(5, 7, 13, 0.55) 50%, rgba(5, 7, 13, 0.85) 100%);
  }
}
.suikon .sub-hero .inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.suikon .sub-hero .eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 138, 61, 0.4);
  border-radius: 999px;
  color: #ff9a3d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.suikon .sub-hero h1 {
  font-size: 65px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.suikon .sub-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ff6a00 0%, #ffb066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.suikon .sub-hero .lead {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(231, 236, 245, 0.78);
  max-width: 720px;
}
.suikon .sub-hero .crumb {
  margin-top: 36px;
  font-size: 14px;
  color: rgba(231, 236, 245, 0.5);
  letter-spacing: 0.04em;
}
.suikon .sub-hero .crumb a { color: inherit; }
.suikon .sub-hero .crumb a:hover { color: #ff9a3d; }
.suikon .sub-hero .crumb span { margin: 0 10px; opacity: 0.5; }

.suikon .sub-hero .sub-selects {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
}
.suikon .sub-hero .sub-selects.is-single {
  grid-template-columns: 1fr;
  max-width: 360px;
}
.suikon .sub-select {
  position: relative;
}
.suikon .sub-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.suikon .sub-select__trigger:hover {
  border-color: rgba(255, 154, 61, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.suikon .sub-select__trigger i {
  font-size: 21px;
  color: rgba(231, 236, 245, 0.6);
  transition: transform 0.25s ease, color 0.2s ease;
}
.suikon .sub-select.is-open .sub-select__trigger {
  border-color: rgba(255, 154, 61, 0.6);
  background: rgba(255, 154, 61, 0.08);
}
.suikon .sub-select.is-open .sub-select__trigger i {
  transform: rotate(180deg);
  color: #ff9a3d;
}
.suikon .sub-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: rgba(13, 16, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 30;
}
.suikon .sub-select.is-open .sub-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.suikon .sub-select__menu li { margin: 0; }
.suikon .sub-select__menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 9px;
  color: rgba(231, 236, 245, 0.75);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}
.suikon .sub-select__menu a:hover {
  color: #fff;
  background: rgba(255, 154, 61, 0.1);
}
.suikon .sub-select__menu a.is-active {
  color: #ff9a3d;
  background: rgba(255, 154, 61, 0.12);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .suikon .sub-hero { padding: 160px 0 90px; min-height: 380px; }
  .suikon .sub-hero h1 { font-size: 45px; }
  .suikon .sub-hero .lead { font-size: 17px; }
}
@media (max-width: 640px) {
  .suikon .sub-hero { padding: 130px 0 40px; min-height: 300px; }
  .suikon .sub-hero .inner { padding: 0 22px; }
  .suikon .sub-hero h1 { font-size: 31px; }
  .suikon .sub-hero .lead { font-size: 15px; line-height: 1.7; margin-top: 20px; }
  .suikon .sub-hero .eyebrow { font-size: 12px; padding: 5px 12px; margin-bottom: 18px; }
  .suikon .sub-hero .sub-selects { margin-top: 28px; gap: 10px; }
  .suikon .sub-select__trigger { padding: 13px 16px; font-size: 15px; }
  .suikon .sub-select__trigger i { font-size: 19px; }
  .suikon .sub-select__menu a { padding: 11px 14px; font-size: 14px; }
}

.suikon /* 서브 페이지 콘텐츠 섹션 */
.sub-section {
  padding: 120px 0;
  background: #05070d;
  position: relative;
}
.suikon .sub-section.alt { background: #0b0d10; }
.suikon .sub-section.has-bg {
  background-image:
    var(--sub-section-bg),
    linear-gradient(180deg, #0b0d10 0%, #05070d 100%);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat;
}
.suikon .sub-section.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.9) 50%, rgba(5, 7, 13, 0.98) 100%),
    rgba(5, 7, 13, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
.suikon .sub-section.has-bg .inner { position: relative; z-index: 1; }
.suikon .sub-section.has-bg-video { overflow: hidden; padding: 70px 0; }
.suikon .sub-section.has-bg-video .sec-head h2 {
  font-size: 40px;
  line-height: 1.45em;
  word-break: keep-all;
}
@media (max-width: 1024px) {
  .suikon .sub-section.has-bg-video .sec-head h2 { font-size: 29px; line-height: 1.5em; }
}
@media (max-width: 640px) {
  .suikon .sub-section.has-bg-video .sec-head { margin-bottom: 0 !important; }
  .suikon .sub-section.has-bg-video .sec-head h2 { font-size: 21px; line-height: 1.55em; }
  .suikon .sub-section.has-bg-video .sec-head h2 br { display: none; }
}
.suikon .sub-section.has-bg-video .bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.suikon .sub-section.has-bg-video .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.suikon .sub-section.has-bg-video .bg-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,13,0.92) 0%, rgba(5,7,13,0.85) 50%, rgba(5,7,13,0.95) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.suikon .sub-section.has-bg-video .inner { position: relative; z-index: 1; }
.suikon .sub-section .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.suikon .sub-section .sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.suikon .sub-section .sec-head .eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.35);
  border-radius: 999px;
  color: #ff9a3d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.suikon .sub-section .sec-head h2 {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.suikon .sub-section .sec-head h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #ff6a00 0%, #ffb066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.suikon .sub-section .sec-head p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(231, 236, 245, 0.72);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.suikon .sub-section .sec-head .sec-sub:only-child {
  margin-top: 0;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: none;
}
@media (max-width: 1024px) {
  .suikon .sub-section { padding: 90px 0; }
  .suikon .sub-section .sec-head h2 { font-size: 33px; }
  .suikon .sub-section .sec-head p { font-size: 16px; }
  .suikon .sub-section .sec-head .sec-sub:only-child { font-size: 27px; }
}
@media (max-width: 640px) {
  .suikon .sub-section {padding: 40px 0;overflow: hidden;}
  .suikon .sub-section .inner { padding: 0 22px; }
  .suikon .sub-section .sec-head { margin-bottom: 40px; }
  .suikon .sub-section .sec-head h2 { font-size: 25px; word-break: keep-all;line-height: 1.35em;}
  .suikon .sub-section .sec-head p {font-size: 15px;margin-top: 14px;word-break: keep-all;line-height: 1.45em;}
  .suikon .sub-section .sec-head .sec-sub:only-child {font-size: 21px;margin-top: 0;word-break: keep-all;}
}

.suikon /* 카드 공통 */
.sub-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.suikon .sub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 61, 0.4);
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.suikon .sub-card .icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.18) 0%, rgba(255, 138, 61, 0.04) 100%);
  border: 1px solid rgba(255, 138, 61, 0.3);
  color: #ff9a3d;
  font-size: 27px;
  margin-bottom: 22px;
}
.suikon .sub-card h3 {
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.suikon .sub-card p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(231, 236, 245, 0.72);
}
@media (max-width: 640px) {
  .suikon .sub-card { padding: 28px 22px; }
  .suikon .sub-card .icon { width: 48px; height: 48px; font-size: 23px; margin-bottom: 16px; }
  .suikon .sub-card h3 { font-size: 19px; }
  .suikon .sub-card p { font-size: 15px; }
}

.suikon /* 카드 배경 이미지 옵션 */
.sub-card.has-bg {
  position: relative;
  overflow: hidden;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
}
.suikon .sub-card.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.55) 0%, rgba(8, 12, 22, 0.82) 100%);
  z-index: 0;
  transition: background 0.4s ease;
}
.suikon .sub-card.has-bg > * { position: relative; z-index: 1; }
.suikon .sub-card.has-bg:hover {
  background-image: var(--card-bg);
}
.suikon .sub-card.has-bg:hover::before {
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.4) 0%, rgba(8, 12, 22, 0.72) 100%);
}

.suikon /* 그리드 유틸 */
.sub-grid {
  display: grid;
  gap: 24px;
}
.suikon .sub-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.suikon .sub-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.suikon .sub-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .suikon .sub-grid.cols-3,
.suikon .sub-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .suikon .sub-grid.cols-2,
.suikon .sub-grid.cols-3,
.suikon .sub-grid.cols-4 { grid-template-columns: 1fr; }
}

.suikon /* 비전 페이지 */
.vision-statement {
  max-width: 900px;
  margin: 0 auto;
}
.suikon .vision-card h3 {
  word-break: keep-all;
}
.suikon .vision-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.suikon .vision-points li {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(231, 236, 245, 0.78);
  word-break: keep-all;
}
.suikon .vision-points li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9a3d;
  font-weight: 700;
}
@media (max-width: 640px) {
  .suikon .vision-points { gap: 8px; margin-top: 12px; }
  .suikon .vision-points li { font-size: 15px; line-height: 1.65; }
}

.suikon /* 인사말 페이지 — 중앙 이미지 (주황 글로우) */
.greeting-figure {
  position: relative;
  margin: 0 auto 64px;
  max-width: 750px;
  isolation: isolate;
}
.suikon .greeting-figure::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(closest-side, rgba(255, 138, 61, 0.35) 0%, rgba(255, 138, 61, 0) 75%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.suikon .greeting-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .suikon .greeting-figure { margin: 0 auto 48px; max-width: 480px; }
}
@media (max-width: 640px) {
  .suikon .greeting-figure { margin: 0 auto 36px; max-width: 100%; border-radius: 16px; }
  .suikon .greeting-figure img { border-radius: 16px; }
  .suikon .greeting-figure::before { inset: -30px; }
}

.suikon /* 인증내역 — Swiper 슬라이더 + 줌 모달 */
.our-cert .cert-wrap,
.sub-section .cert-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
/* 슬라이드 양옆 미리보기 — swiper(overflow:hidden) 해제.
   메인(news/youtube/cert) + cert 서브페이지 공통. */
.suikon .news-slide.swiper,
.suikon .youtube-slide.swiper,
.suikon .cert-slide.swiper {
  /* overflow: visible; */
}
/* overflow:visible 로 화면 밖까지 펼쳐진 슬라이드가 가로 스크롤바를 만들지 않도록 클리핑
   (overflow:hidden 과 달리 position:sticky 를 깨지 않음) */
body.suikon {
  overflow-x: clip;
}

.suikon .cert-slide .swiper-slide { width: auto; height: auto; display: flex; }
.suikon .cert-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.suikon .cert-card:hover {
  transform: translateY(-4px);
}
/* 방향별 비율 강제: 세로형 302/427, 가로형 427/302 */
.suikon .cert-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}
.suikon .cert-card__img img {
  display: block;
  object-fit: cover;
  border-radius: 14px;
}
/* 세로형: 긴 변이 높이 → 높이 고정, 너비는 비율 따라 좁게 */
.suikon .cert-card__img--portrait img{
  aspect-ratio: 302 / 427;
  height: 427px;
}
/* 가로형: 긴 변이 너비 → 너비 = 세로형 높이로 고정, 높이는 비율 따라 낮게 */
.suikon .cert-card__img--landscape img{
  aspect-ratio: 427 / 302;
  width: 427px;
}
.suikon .cert-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px 14px;
}
.suikon .cert-card__logo img {
  width: 90px;
  height: 32px;
  object-fit: contain;
}

/* 인증서 슬라이더 좌우 버튼 — 섹션 overflow:hidden 안쪽에 오버레이 */
.suikon .cert-wrap .nav-btns {
  position: absolute;
  top: 50%;
  left: -90px;
  right: -90px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
  z-index: 10;
}
.suikon .cert-wrap .nav-btns button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  position: relative;
  background: rgba(10, 12, 18, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.suikon .cert-wrap .nav-btns button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.suikon .cert-wrap .nav-btns button.btn-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.suikon .cert-wrap .nav-btns button.btn-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}
.suikon .cert-wrap .nav-btns button:hover {
  background: #ff6a00;
  border-color: #ff6a00;
}
@media (max-width: 480px) {
  .suikon .cert-wrap .nav-btns{
    left: 0;
    right:0;
  }
}
@media (max-width: 640px) {
  .suikon .cert-slide{
    overflow: visible;
    margin:0 auto;
  }
  .suikon .our-cert--light .cert-slide .swiper-slide{
    padding:0;
  }
  .suikon .cert-card__img--portrait img{
    height: 310px;
  }
  .suikon .cert-card__img--landscape img{
    width: 310px;
  }
  .suikon .cert-card__logo img { width: 70px; height: 26px; }
}

.suikon /* Contact — 통합형 4분할 리스트 */
.contact-head {
  text-align: center;
  margin-bottom: 56px;
}
.suikon .contact-title {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 53px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}
.suikon .contact-desc {
  margin: 0 auto;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(231, 236, 245, 0.7);
  letter-spacing: -0.005em;
}
.suikon .contact-desc strong {
  background: linear-gradient(90deg, #ff6a00 0%, #ffb066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.suikon .contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1.2fr;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.suikon .contact-info-list.cols-3 { grid-template-columns: repeat(3, 1fr); }
.suikon .contact-info-item {
  position: relative;
  padding: 32px 28px;
  text-align: center;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: center;
  row-gap: 28px;
  min-height: 200px;
  transition: background 0.25s ease;
}
.suikon .contact-info-item + .contact-info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}
.suikon .contact-info-item:hover {
  background: rgba(255, 154, 61, 0.04);
}
.suikon .contact-info-item .info-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(231, 236, 245, 0.55);
  text-transform: uppercase;
}
.suikon .contact-info-item .info-label i {
  font-size: 19px;
  color: #ff9a3d;
}
.suikon .contact-info-item .info-value {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  transition: color 0.2s ease;
  line-height: 1.3;
}
.suikon .contact-info-item a.info-value:hover { color: #ff9a3d; }
.suikon .contact-info-item .info-value--sm {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  word-break: break-all;
  line-height: 1.5;
}
.suikon .contact-info-item .info-value--muted { color: rgba(231, 236, 245, 0.35); }

.suikon .contact-info-item.is-kakao .info-value--kakao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.suikon .contact-info-item.is-kakao a.info-value--kakao {
  padding: 0;
  transition: transform 0.25s ease;
}
.suikon .contact-info-item.is-kakao a.info-value--kakao:hover { transform: scale(1.04); }
.suikon .contact-info-item.is-kakao .kakao-qr {
  width: 120px;
  height: 120px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.suikon .contact-info-item.is-kakao .kakao-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .suikon .contact-title { font-size: 43px; }
  .suikon .contact-desc { font-size: 17px; }
  .suikon .contact-info-list {
    grid-template-columns: 1fr 1fr;
  }
  .suikon .contact-info-list.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .suikon .contact-info-item { padding: 44px 22px; min-height: 220px; row-gap: 22px; }
  .suikon .contact-info-item:nth-child(2)::before { display: none; }
  .suikon .contact-info-item:nth-child(3),
.suikon .contact-info-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .suikon .contact-info-item:nth-child(3)::before { display: none; }
  .suikon .contact-info-item .info-value { font-size: 23px; }
}
@media (max-width: 640px) {
  .suikon .contact-head { margin-bottom: 40px; }
  .suikon .contact-title { font-size: 35px; }
  .suikon .contact-desc { font-size: 15px; }
  .suikon .contact-info-list,
.suikon .contact-info-list.cols-3 { grid-template-columns: 1fr; }
  .suikon .contact-info-item {padding: 36px 20px;min-height: unset;row-gap: 20px;}
  .suikon .contact-info-item::before { display: none !important; }
  .suikon .contact-info-item + .contact-info-item {border-top: 1px solid rgba(255, 255, 255, 0.08);min-height: unset;}
  .suikon .contact-info-item .info-value { font-size: 23px; }
  .suikon .contact-info-item.is-kakao .kakao-qr { width: 100px; height: 100px; padding: 6px; }
}

.suikon /* 폼 (제휴/문의) */
.sub-form {/* max-width: 720px; */margin: 0 auto;}
.suikon .sub-form .field { margin-bottom: 22px; }
.suikon .sub-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(231, 236, 245, 0.85);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.suikon .sub-form label .req { color: #ff9a3d; margin-left: 4px; }
.suikon .sub-form input[type="text"],
.suikon .sub-form input[type="tel"],
.suikon .sub-form input[type="email"],
.suikon .sub-form textarea,
.suikon .sub-form select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.suikon .sub-form input:focus,
.suikon .sub-form textarea:focus,
.suikon .sub-form select:focus {
  outline: none;
  border-color: #ff9a3d;
  background: rgba(255, 138, 61, 0.05);
}
.suikon .sub-form textarea { min-height: 160px; resize: vertical; }
.suikon .sub-form .agree {
  position: relative;
  margin: 20px 0 28px;
  font-size: 15px;
  color: rgba(231, 236, 245, 0.78);
}
.suikon .sub-form .agree input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.suikon .sub-form .agree label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}
.suikon .sub-form .agree .cb-box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: transparent;
  font-size: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.suikon .sub-form .agree label:hover .cb-box {
  border-color: rgba(255, 154, 61, 0.55);
  background: rgba(255, 154, 61, 0.08);
}
.suikon .sub-form .agree input:checked + label .cb-box {
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}
.suikon .sub-form .agree input:focus-visible + label .cb-box {
  outline: 2px solid #ff9a3d;
  outline-offset: 3px;
}
.suikon .sub-form .agree label:active .cb-box {
  transform: scale(0.92);
}
.suikon .sub-form .privacy-box { margin: 20px 0 0; }
.suikon .sub-form .privacy-box .privacy-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(231, 236, 245, 0.85);
  letter-spacing: -0.005em;
}
.suikon .sub-form .privacy-body {
  max-height: 280px;
  overflow-y: auto;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(231, 236, 245, 0.7);
}
.suikon .sub-form .privacy-body h5 {
  margin: 18px 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.suikon .sub-form .privacy-body h5:first-of-type { margin-top: 14px; }
.suikon .sub-form .privacy-body ol,
.suikon .sub-form .privacy-body ul {
  margin: 6px 0 0;
  padding-left: 22px;
  list-style: decimal;
}
.suikon .sub-form .privacy-body ul { list-style: disc; }
.suikon .sub-form .privacy-body li {
  margin: 2px 0;
  color: rgba(231, 236, 245, 0.7);
}
.suikon .sub-form .privacy-body .privacy-toc {
  margin: 12px 0 4px;
  padding-left: 22px;
}
.suikon .sub-form .privacy-body .privacy-toc li { color: rgba(231, 236, 245, 0.78); }
.suikon .sub-form .privacy-body .privacy-effective {
  color: #ff9a3d;
  font-weight: 500;
}
.suikon .sub-form .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.suikon .sub-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 138, 61, 0.4);
}

.suikon /* 약관/방침 본문 */
.legal-doc {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: rgba(231, 236, 245, 0.78);
  font-size: 16px;
  line-height: 1.85;
}
.suikon .legal-doc .legal-effective {
  display: inline-block;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(255, 138, 61, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.32);
  border-radius: 999px;
  color: #ff9a3d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.suikon .legal-doc h3 {
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 3px solid #ff7a1a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.suikon .legal-doc h3:first-of-type { margin-top: 8px; }
.suikon .legal-doc p { margin: 0 0 12px; }
.suikon .legal-doc ol,
.suikon .legal-doc ul {
  margin: 0 0 12px;
  padding-left: 22px;
}
.suikon .legal-doc ol > li { margin-bottom: 8px; list-style: decimal; }
.suikon .legal-doc ul > li { margin-bottom: 6px; list-style: disc; color: rgba(231, 236, 245, 0.7); }
.suikon .legal-doc ol ul,
.suikon .legal-doc ul ul {
  margin-top: 8px;
  padding-left: 20px;
}
.suikon .legal-doc strong { color: #fff; }
@media (max-width: 768px) {
  .suikon .legal-doc { padding: 26px 22px; font-size: 15px; line-height: 1.75; }
  .suikon .legal-doc h3 { font-size: 18px; margin: 28px 0 12px; }
}

.suikon /* 게시판 */
.board-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid rgba(255, 138, 61, 0.45);
}
.suikon .board-table th,
.suikon .board-table td {
  padding: 18px 14px;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.suikon .board-table th {
  font-size: 14px;
  font-weight: 600;
  color: rgba(231, 236, 245, 0.6);
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.02);
}
.suikon .board-table td.num { width: 80px; text-align: center; color: rgba(231, 236, 245, 0.5); }
.suikon .board-table td.date { width: 140px; color: rgba(231, 236, 245, 0.55); text-align: center; }
.suikon .board-table td.views { width: 100px; text-align: center; color: rgba(231, 236, 245, 0.55); }
.suikon .board-table td.title a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3em;
}
.suikon .board-table td.title a:hover { color: #ff9a3d; }
.suikon .board-table .badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.15);
  border: 1px solid rgba(255, 138, 61, 0.4);
  color: #ff9a3d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .suikon .board-table th.num,
.suikon .board-table td.num,
.suikon .board-table th.views,
.suikon .board-table td.views { display: none; }
  .suikon .board-table td { padding: 14px 8px; font-size: 15px; }
  .suikon .board-table td.date { width: 100px; font-size: 13px; }
}

.suikon /* 게시판 툴바 (건수 + 검색) */
.board-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 22px;
}
.suikon .board-count { font-size: 15px; color: rgba(231, 236, 245, 0.7); }
.suikon .board-count strong { color: #ff9a3d; font-weight: 700; }
.suikon .board-search {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 460px;
}
.suikon .board-search__type {
  flex: 0 0 110px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.suikon .board-search__type option { background: #16191f; color: #fff; }
.suikon .board-search__input {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
}
.suikon .board-search__input::placeholder { color: rgba(231, 236, 245, 0.35); }
.suikon .board-search__input:focus,
.suikon .board-search__type:focus { outline: none; border-color: rgba(255, 138, 61, 0.5); }
.suikon .board-search__btn {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6a1a 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s ease;
}
.suikon .board-search__btn:hover { filter: brightness(1.1); }

/* board-toolbar 우측 영역 (검색 + 글쓰기 + 관리자) */
.suikon .board-toolbar__right {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.suikon .board-toolbar__right .board-search { flex: 1 1 auto; }

.suikon .board-toolbar__right .btn-write,
.suikon .board-toolbar__right .btn-admin {
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: filter .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  line-height: 1;
  font-family: inherit;
  white-space: nowrap;
}
.suikon .board-toolbar__right .btn-write {
  padding: 0 18px;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6a1a 100%);
  border: none;
  color: #fff !important;
}
.suikon .board-toolbar__right .btn-write:hover { filter: brightness(1.1); }
.suikon .board-toolbar__right .btn-write i { font-size: 16px; }

.suikon .board-toolbar__right .btn-admin {
  width: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(231, 236, 245, 0.75);
  font-size: 18px;
}
.suikon .board-toolbar__right .btn-admin:hover {
  background: rgba(255, 138, 61, 0.12);
  border-color: rgba(255, 138, 61, 0.5);
  color: #ff9a3d;
}
.suikon .board-toolbar__right .btn-admin i { font-size: 18px; }

@media (max-width: 768px) {
  .suikon .board-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
  .suikon .board-toolbar__right { flex-wrap: wrap; width: 100%; }
  .suikon .board-toolbar__right .board-search { max-width: none; flex: 1 1 100%; }
  .suikon .board-toolbar__right .btn-write { padding: 0 14px; }
  .suikon .board-toolbar__right .btn-write span { display: inline; }
}

.suikon /* 뉴스 리스트 (가로형 카드) */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid rgba(255, 138, 61, 0.45);
}
.suikon .news-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.suikon .news-item__link {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  padding: 26px 12px;
  transition: background 0.3s ease;
}
.suikon .news-item__link:hover { background: rgba(255, 138, 61, 0.04); }
.suikon .news-item__thumb {
  /* aspect-ratio: 4 / 3; */
  background: linear-gradient(135deg, #1a1d23 0%, #0b0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.suikon .news-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.suikon .news-item__thumb .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 138, 61, 0.4);
  font-size: 49px;
}
.suikon .news-item__body { min-width: 0; }
.suikon .news-item__source {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.32);
  border-radius: 999px;
  color: #ff9a3d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.suikon .news-item__title {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.suikon .news-item__link:hover .news-item__title { color: #ff9a3d; }
.suikon .news-item__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(231, 236, 245, 0.6);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.suikon .news-item__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(231, 236, 245, 0.45);
  font-family: "JetBrains Mono", monospace;
}
@media (max-width: 768px) {
  .suikon .board-toolbar { flex-direction: column; align-items: stretch; gap: 14px; }
  .suikon .board-search { max-width: 100%; }
  .suikon .news-item__link {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 4px;
  }
  .suikon .news-item__thumb { width: 100%; aspect-ratio: 16 / 10; }
  .suikon .news-item__title { font-size: 18px; margin-bottom: 10px; }
  .suikon .news-item__desc {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  .suikon .news-item__source { margin-bottom: 12px; padding: 3px 10px; font-size: 12px; }
}

.suikon /* 유튜브 게시판 (그리드 카드) */
.yt-board {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.suikon .yt-board__item { border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.03); transition: background 0.3s ease; }
.suikon .yt-board__item:hover { background: rgba(255, 138, 61, 0.06); }
.suikon .yt-board__link {display: block;text-decoration: none !important;color: inherit;}
.suikon .yt-board__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.suikon .yt-board__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.suikon .yt-board__link:hover .yt-board__thumb img { transform: scale(1.05); }
.suikon .yt-board__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6) url('/img/suickon_logo.png') center / 60% no-repeat;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}
.suikon .yt-board__play i { display: none; }
.suikon .yt-board__link:hover .yt-board__play { transform: translate(-50%, -50%) scale(1.1); }
.suikon .yt-board__body { padding: 18px 16px 22px; }
.suikon .yt-board__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.suikon .yt-board__link:hover .yt-board__title { color: #ff9a3d; }
.suikon .yt-board__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(231, 236, 245, 0.4);
}
@media (max-width: 1024px) {
  .suikon .yt-board { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .suikon .yt-board { grid-template-columns: 1fr; gap: 16px; }
  .suikon .yt-board__play { width: 54px; height: 54px; }
  .suikon .yt-board__body { padding: 14px 12px 18px; }
}

.suikon /* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}
.suikon .pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(231, 236, 245, 0.65);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.suikon .pagination__btn:hover:not(.is-disabled):not(.is-active) {
  border-color: rgba(255, 138, 61, 0.4);
  color: #fff;
}
.suikon .pagination__btn.is-active {
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6a1a 100%);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}
.suikon .pagination__btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.suikon .pagination__btn--nav { color: rgba(231, 236, 245, 0.5); }

.suikon /* 게시판 뷰페이지 */
.board-view {
  width: 100%;
  border-top: 2px solid rgba(255, 138, 61, 0.45);
}
.suikon .board-view__head {
  padding: 32px 8px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.suikon .board-view__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.suikon .board-view__badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 138, 61, 0.15);
  border: 1px solid rgba(255, 138, 61, 0.4);
  border-radius: 999px;
  color: #ff9a3d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.suikon .board-view__source {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(231, 236, 245, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.suikon .board-view__title {
  margin: 0 0 18px;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.suikon .board-view__meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(231, 236, 245, 0.5);
  font-family: "JetBrains Mono", monospace;
}
.suikon .board-view__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.suikon .board-view__body {
  padding: 40px 8px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(231, 236, 245, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.suikon .board-view__body p { margin: 0 0 16px; }
.suikon .board-view__body h3 {
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 3px solid #ff7a1a;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.suikon .board-view__body ul,
.suikon .board-view__body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.suikon .board-view__body li { margin-bottom: 6px; }
.suikon .board-view__body ul > li { list-style: disc; }
.suikon .board-view__body ol > li { list-style: decimal; }
.suikon .board-view__body strong { color: #fff; }
.suikon .board-view__figure {
  margin: 0 0 28px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1d23 0%, #0b0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.suikon .board-view__figure img { width: 100%; height: 100%; object-fit: cover; }
.suikon .board-view__figure .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 138, 61, 0.35);
  font-size: 65px;
}

.suikon .board-view__nav {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.suikon .board-view__nav-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}
.suikon .board-view__nav-item:last-child { border-bottom: none; }
.suikon .board-view__nav-item:hover { background: rgba(255, 138, 61, 0.04); }
.suikon .board-view__nav-item .dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(231, 236, 245, 0.5);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.suikon .board-view__nav-item .ttl {
  font-size: 15px;
  color: rgba(231, 236, 245, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.suikon .board-view__nav-item:hover .ttl { color: #ff9a3d; }

.suikon .board-view__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.suikon .board-view__actions>* {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.suikon .board-view__actions>*:hover {
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6a1a 100%);
  border-color: transparent;
  color:#fff !important;
  text-decoration:none !important;
}

@media (max-width: 768px) {
  .suikon .board-view__head { padding: 24px 4px 18px; }
  .suikon .board-view__title { font-size: 21px; }
  .suikon .board-view__meta { gap: 14px; font-size: 13px; }
  .suikon .board-view__body { padding: 28px 4px; font-size: 15px; line-height: 1.75; }
  .suikon .board-view__body h3 { font-size: 17px; margin: 24px 0 12px; }
  .suikon .board-view__nav-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 16px 8px;
  }
  .suikon .board-view .btn-list { padding: 12px 28px; font-size: 14px; }
}

.suikon /* 프로세스 다이어그램 (서비스 페이지) */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.suikon .process-step {
  position: relative;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  counter-increment: step;
}
.suikon .process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ff9a3d;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.suikon .process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.4;
}
.suikon .process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(231, 236, 245, 0.65);
  margin: 0;
}
@media (max-width: 1024px) { .suikon .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .suikon .process-list { grid-template-columns: 1fr; } }

.suikon /* Hub & Spoke 다이어그램 (서비스 페이지) */
.hub-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.suikon .hub-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.suikon .hub-side--left { align-items: flex-end; }
.suikon .hub-side--right { align-items: flex-start; }

.suikon .hub-node {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 12px 26px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 154, 61, 0.07) 0%, rgba(255, 154, 61, 0.02) 100%);
  border: 1px solid rgba(255, 154, 61, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.suikon .hub-node:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 154, 61, 0.6);
  background: linear-gradient(180deg, rgba(255, 154, 61, 0.14) 0%, rgba(255, 154, 61, 0.04) 100%);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.18);
}

.suikon .hub-node::before,
.suikon .hub-node::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.suikon .hub-node::before {
  width: 64px;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(255, 154, 61, 0.55) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
.suikon .hub-node::after {
  width: 9px;
  height: 9px;
  background: #ff9a3d;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 154, 61, 0.7);
}
.suikon .hub-side--left .hub-node::before { right: -72px; }
.suikon .hub-side--left .hub-node::after { right: -84px; }
.suikon .hub-side--right .hub-node::before { left: -72px; }
.suikon .hub-side--right .hub-node::after { left: -84px; }

.suikon .hub-center {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suikon .hub-center__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 154, 61, 0.32);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 154, 61, 0.18) 0%, rgba(11, 13, 16, 0) 60%),
    linear-gradient(180deg, rgba(255, 154, 61, 0.05), rgba(11, 13, 16, 0.4));
  box-shadow:
    0 0 80px rgba(255, 154, 61, 0.18),
    inset 0 0 60px rgba(255, 154, 61, 0.06);
}
.suikon .hub-center__ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 154, 61, 0.4);
  border-radius: 50%;
  animation: hub-rotate 60s linear infinite;
}
@keyframes hub-rotate { to { transform: rotate(360deg); } }

.suikon .hub-core {
  position: relative;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff7a14 0%, #d94e00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(255, 106, 0, 0.4),
    inset 0 0 0 6px rgba(255, 255, 255, 0.08);
  z-index: 1;
}
.suikon .hub-core__eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}
.suikon .hub-core__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}
.suikon .hub-core__title em {
  font-style: normal;
  background: linear-gradient(180deg, #fff, #ffe2c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 1024px) {
  .suikon .hub-diagram {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }
  .suikon .hub-side { gap: 16px; width: 100%; max-width: 420px; }
  .suikon .hub-side--left,
.suikon .hub-side--right { align-items: stretch; }
  .suikon .hub-node { min-width: 0; width: 100%; }
  .suikon .hub-node::before,
.suikon .hub-node::after { display: none; }
  .suikon .hub-side--left { order: 2; }
  .suikon .hub-center { order: 1; width: 280px; height: 280px; }
  .suikon .hub-side--right { order: 3; }
  .suikon .hub-core { width: 180px; height: 180px; }
  .suikon .hub-core__title { font-size: 20px; }
}
@media (max-width: 640px) {
  .suikon .hub-center {width: 240px;height: 240px;margin: 0 0 24px;}
  .suikon .hub-core { width: 150px; height: 150px; }
  .suikon .hub-core__title { font-size: 17px; }
  .suikon .hub-core__eyebrow { font-size: 11px; margin-bottom: 6px; }
  .suikon .hub-node { font-size: 15px; padding: 11px 18px; min-height: 48px; }
}

.suikon /* 큰 정보 박스 (오시는길/제휴 등) */
.info-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.suikon .info-block .map-area {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1d23 0%, #0b0d10 100%);
  border: 1px solid rgba(255, 138, 61, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 138, 61, 0.5);
}
@media (max-width: 1024px) { .suikon .info-block { grid-template-columns: 1fr; gap: 36px; } }

.suikon .info-block .map-area .root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  inset: 0;
}
.suikon .info-block .map-area .root_daum_roughmap .wrap_map { width: 100% !important; height: 100% !important; }
.suikon .info-block .map-area > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suikon .info-block .map-area__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 138, 61, 0.55);
  font-size: 15px;
  letter-spacing: 0.04em;
}
.suikon .info-block .map-area__placeholder i { font-size: 61px; }
.suikon .info-block .map-area i { font-size: 61px; }
.suikon .info-block .info-side { display: flex; flex-direction: column; }
.suikon .info-block .info-title {
  margin: 0 0 22px;
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}
.suikon .info-block .info-list { list-style: none; padding: 0; margin: 0; }
.suikon .info-block .info-list li {
  display: flex;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.suikon .info-block .info-list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.suikon .info-block .info-list .label {
  flex: 0 0 110px;
  font-size: 20px;
  font-weight: 700;
  color: #ff9a3d;
  letter-spacing: 0.01em;
  line-height: 1.55;
}
.suikon .info-block .info-list .value {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .suikon .info-block .info-title { font-size: 29px; margin-bottom: 16px; }
  .suikon .info-block .info-list .label,
.suikon .info-block .info-list .value { font-size: 18px; }
}
@media (max-width: 640px) {
  .suikon .info-block .info-title { font-size: 25px; }
  .suikon .info-block .info-list li { gap: 14px; padding: 16px 0; }
  .suikon .info-block .info-list .label { flex: 0 0 80px; font-size: 16px; }
  .suikon .info-block .info-list .value { font-size: 16px; }
}


.suikon /* 라이트박스 */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.suikon .lightbox.is-open { display: flex; }
.suikon .lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; }
.suikon .lightbox .close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 23px;
  cursor: pointer;
}

.suikon /* CTA 박스 */
.cta-banner {
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.18) 0%, rgba(255, 106, 0, 0.05) 100%);
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 24px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.suikon .cta-banner .copy h3 {
  font-size: 29px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.suikon .cta-banner .copy p { color: rgba(231, 236, 245, 0.75); font-size: 16px; line-height: 1.7; }
.suikon .cta-banner .actions { display: flex; gap: 12px; flex-shrink: 0; }
.suikon .cta-banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s;
}
.suikon .cta-banner .btn:hover { transform: translateY(-2px); }
.suikon .cta-banner .btn-primary {
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
}
.suikon .cta-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
@media (max-width: 768px) {
  .suikon .cta-banner { flex-direction: column; align-items: flex-start; padding: 40px 28px; gap: 24px; }
  .suikon .cta-banner .copy h3 { font-size: 23px; }
}

.suikon /* 비전 페이지 전용 — vision-statement 영역만 sec-head/h2 하단 여백 제거 */
.page-vision .sub-section.has-bg-video .sec-head { margin-bottom: 0; }
.suikon .page-vision .sub-section.has-bg-video .sec-head h2 { margin-bottom: 0; }

/* 모바일 스크롤 주행거리 확대 + smooth */
@media (max-width: 768px) {
  html.suikon { scroll-behavior: smooth; }
  /* .suikon .section-04 { height: 700vh; } */
  .suikon .section-04{height: unset;}
  .suikon .section-06 { height: unset; min-height: unset; }
}

.suikon /* ============================================
   거래소 소개 섹션
   ============================================ */
.exchange-section .ex-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.suikon .exchange-section .ex-block {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.suikon .exchange-section .ex-block {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.suikon .exchange-section .ex-block:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,61,0.35);
  box-shadow: 0 12px 40px rgba(255,138,61,0.08);
}

.suikon /* 로고 썸네일 영역 */
.exchange-section .ex-block__thumb {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--ex-bg, #111); */
  background: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.suikon .exchange-section .ex-block__thumb img {
  width: 150px;
  height: 100%;
  display: block;
  object-fit: contain;
  max-width: 80%;
}
.suikon .exchange-section .ex-block:nth-child(4) .ex-block__thumb{
  background: #000;
}

.suikon /* 본문 영역 */
.exchange-section .ex-block__body {
  padding: 24px 28px 28px;
  text-align: center;
}
.suikon .exchange-section .ex-block__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.suikon .exchange-section .ex-block__title h3 {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.suikon .exchange-section .ex-block__tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,138,61,0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd5a6;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.suikon .exchange-section .ex-block__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.suikon .exchange-section .ex-block__features li {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(231,236,245,0.78);
  line-height: 1.55;
  text-align: center;
}
.suikon .exchange-section .ex-block__features li i {
  color: #ff9a3d;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .suikon .exchange-section .ex-block { flex: 0 0 calc(50% - 12px); }
  .suikon .exchange-section .ex-block__thumb { height: 120px; }
  .suikon .exchange-section .ex-block__thumb img {/* width: 76px; *//* height: 76px; */}
}
@media (max-width: 640px) {
  .suikon .exchange-section .ex-list { gap: 16px; }
  .suikon .exchange-section .ex-block { flex: 0 0 100%; }
  .suikon .exchange-section .ex-block__thumb { height: 110px; }
  .suikon .exchange-section .ex-block__thumb img {/* width: 68px; *//* height: 38px; */}
  .suikon .exchange-section .ex-block__body { padding: 20px 22px 24px; }
  .suikon .exchange-section .ex-block__title h3 { font-size: 19px; }
  .suikon .exchange-section .ex-block__features li { font-size: 13.5px; }
}

.suikon /* 원격지원 페이지 */
.remote-grid {
  max-width: 480px;
  margin: 0 auto;
  gap: 28px;
}
.suikon .remote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.suikon .remote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 61, 0.45);
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 18px 40px -20px rgba(255, 106, 0, 0.45);
}
.suikon .remote-card__logo {
  width: 100%;
  /* max-width: 280px; */
  aspect-ratio: 16 / 9;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
.suikon .remote-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.suikon .remote-card__btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  width: 80%;
  transform: translate(-50%,50%);
}
.suikon .remote-card__btn:hover {
  box-shadow: 0 12px 24px -10px rgba(255, 106, 0, 0.6);
  filter: brightness(1.05);
}
.suikon .remote-notice {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: rgba(231, 236, 245, 0.78);
  font-size: 17px;
  line-height: 1.6;
}
.suikon .remote-notice i {
  font-size: 26px;
  color: #ff9a3d;
}
.suikon .remote-notice p { margin: 0; }
.suikon .remote-notice a {
  color: #ff9a3d;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .suikon .remote-grid { gap: 22px; }
  .suikon .remote-card {padding: 0;}
  .suikon .remote-card__logo {/* max-width: 240px; */padding: 18px 44px;}
  .suikon .remote-notice { margin-top: 36px; font-size: 15px; }
  .suikon .remote-notice i { font-size: 22px; }
}
@media (max-width: 640px) {
  .suikon .remote-grid {gap: 48px;}
  .suikon .remote-card {}
  .suikon .remote-card__logo {/* max-width: 200px; *//* padding: 16px 20px; */border-radius: 12px;}
  .suikon .remote-card__btn {min-width: 0;width: 80%;padding: 13px 20px;font-size: 16px;}
  .suikon .remote-notice {margin-top: 48px;font-size: 14px;gap: 0;flex-direction: column;}
  .suikon .remote-notice i { font-size: 28px; }
}

/* ============================================
   그누보드 기본 영역 다크 톤 통일
   .g5-default-area (login, register, 게시판 등)
   ============================================ */
.suikon .sub-section .g5-default-area {
  background: transparent;
  color: #fff;
  padding: 0;
  /* border: 1px solid rgba(255,255,255,0.06); */
  /* border-radius: 16px; */
  /* max-width: 980px; */
  margin: 0 auto;
  /* font-size: 15px; */
  /* line-height: 1.6; */
  /* min-width: 0; */
}
.suikon .sub-section .g5-default-area .g5-container { min-width: 0; width: 100%; }
.suikon .sub-section .g5-default-area .g5-page-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.suikon .sub-section .g5-default-area .g5-page-title span { background: none; }

/* 링크 */
.suikon .sub-section .g5-default-area a {color: #ff6a00;}
.suikon .sub-section .g5-default-area a:hover { color: #7fd5ff; text-decoration: underline; }

/* mbskin (회원 박스) */
.suikon .sub-section .g5-default-area .mbskin {
  background: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.suikon .sub-section .g5-default-area .mbskin_box { background: transparent; padding: 0; }
.suikon .sub-section .g5-default-area .mbskin h1,
.suikon .sub-section .g5-default-area .mbskin h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.suikon .sub-section .g5-default-area .mb_log_cate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.suikon .sub-section .g5-default-area .mb_log_cate h2 { margin: 0; font-size: 18px; }
.suikon .sub-section .g5-default-area .mb_log_cate .join {
  font-size: 14px;
  color: #4cc2ff;
}

/* 그누보드 폼 요소 */
.suikon .sub-section .g5-default-area input[type=text],
.suikon .sub-section .g5-default-area input[type=password],
.suikon .sub-section .g5-default-area input[type=email],
.suikon .sub-section .g5-default-area input[type=tel],
.suikon .sub-section .g5-default-area input[type=number],
.suikon .sub-section .g5-default-area input[type=search],
.suikon .sub-section .g5-default-area input[type=url],
.suikon .sub-section .g5-default-area input[type=date],
.suikon .sub-section .g5-default-area select,
.suikon .sub-section .g5-default-area textarea,
.suikon .sub-section .g5-default-area .frm_input {
  width: 100%;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0 16px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}
.suikon .sub-section .g5-default-area textarea {
  height: auto;
  min-height: 120px;
  padding: 12px 16px;
  line-height: 1.5;
  resize: vertical;
}
.suikon .sub-section .g5-default-area input[type=text]:focus,
.suikon .sub-section .g5-default-area input[type=password]:focus,
.suikon .sub-section .g5-default-area input[type=email]:focus,
.suikon .sub-section .g5-default-area input[type=tel]:focus,
.suikon .sub-section .g5-default-area select:focus,
.suikon .sub-section .g5-default-area textarea:focus {
  border-color: #4cc2ff;
  background: rgba(255,255,255,0.06);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(76,194,255,0.15) !important;
}
.suikon .sub-section .g5-default-area input::placeholder,
.suikon .sub-section .g5-default-area textarea::placeholder { color: rgba(231,236,245,0.4); }

/* 체크박스/라디오 */
.suikon .sub-section .g5-default-area input[type=checkbox],
.suikon .sub-section .g5-default-area input[type=radio] {
  width: 18px; height: 18px;
  accent-color: #4cc2ff;
  vertical-align: middle;
  margin-right: 6px;
}
.suikon .sub-section .g5-default-area .chk_box,
.suikon .sub-section .g5-default-area .selec_chk { display: inline-flex; align-items: center; gap: 6px; }

/* 라벨 */
.suikon .sub-section .g5-default-area label { color: #cfd6e2; font-size: 14px; }
.suikon .sub-section .g5-default-area legend.sound_only { position: absolute; left: -9999px; }

/* fieldset */
.suikon .sub-section .g5-default-area fieldset { border: 0; padding: 0; margin: 0 0 16px; }
.suikon .sub-section .g5-default-area #login_fs > * + * { margin-top: 12px; }

/* 로그인 정보(자동로그인/아이디저장 등) */
.suikon .sub-section .g5-default-area #login_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 20px;
  font-size: 14px;
  color: #9aa3b2;
}
.suikon .sub-section .g5-default-area #login_info a { color: #9aa3b2; }
.suikon .sub-section .g5-default-area #login_info a:hover { color: #4cc2ff; }

/* 버튼 */
.suikon .sub-section .g5-default-area input[type=submit],
.suikon .sub-section .g5-default-area button[type=submit],
.suikon .sub-section .g5-default-area .btn_submit,
.suikon .sub-section .g5-default-area .btn_login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: linear-gradient(135deg, #4cc2ff 0%, #2b78ff 100%);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  text-decoration: none;
}

.suikon .sub-section .g5-default-area .btn_login { width: 100%; margin-top: 8px; }
.suikon .sub-section .g5-default-area .btn,
.suikon .sub-section .g5-default-area .btn_b01,
.suikon .sub-section .g5-default-area .btn_b02,
.suikon .sub-section .g5-default-area .btn_frmline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #e7ecf5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.suikon .sub-section .g5-default-area .btn:hover,
.suikon .sub-section .g5-default-area .btn_b01:hover {
  background: rgba(76,194,255,0.1);
  border-color: rgba(76,194,255,0.4);
  color: #fff;
}

/* 테이블 */
.suikon .sub-section .g5-default-area table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}
.suikon .sub-section .g5-default-area table th,
.suikon .sub-section .g5-default-area table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: #cfd6e2;
}
.suikon .sub-section .g5-default-area table th {
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-weight: 600;
}

/* 헬프 텍스트, 약관 박스 */
.suikon .sub-section .g5-default-area .help_message,
.suikon .sub-section .g5-default-area .infor { color: #9aa3b2; font-size: 13px; }
.suikon .sub-section .g5-default-area .agree_box,
.suikon .sub-section .g5-default-area .register_form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px;
  margin: 12px 0;
  color: #cfd6e2;
}
.suikon .sub-section .g5-default-area hr { border: 0; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0; }

/* 그누보드 alert/info 박스 */
.suikon .sub-section .g5-default-area .empty_table,
.suikon .sub-section .g5-default-area .empty_list {
  padding: 60px 20px;
  text-align: center;
  color: #9aa3b2;
  font-size: 15px;
}

/* sub-hero 다음 .g5-default-area 첫 child 마진 제거 */
.suikon .sub-section .g5-default-area > *:first-child { margin-top: 0; }

/* min-width 1200px 강제 해제 (default.css가 적용한 룰 무력화) */
.suikon .sub-section .g5-default-area,
.suikon .sub-section .g5-default-area #hd,
.suikon .sub-section .g5-default-area #wrapper,
.suikon .sub-section .g5-default-area #ft { min-width: 0 !important; }

/* sub-section 자체 다크 톤 보장 (다른 정적 페이지와 동일 패딩) */
.suikon body:not(.is-main) .sub-section { padding: 80px 24px 120px; }

@media (max-width: 768px) {
  .suikon .sub-section .g5-default-area {
    /* padding: 32px 20px; */
    /* border-radius: 12px; */
  }
  .suikon .sub-section .g5-default-area .mbskin { max-width: 100%; }
}

/* ============================================
   회원 스킨(login.skin.php / register.skin.php) 보정
   sub-hero가 페이지 타이틀을 출력하므로 mbskin 내부 중복 제목 숨김
   회원 스킨 자체 흰 박스 .join 제거 + flex 재배치
   ============================================ */

/* mbskin 자체 폭/마진 리셋 (스킨 기본 360px → 우리 480px) */
.suikon .sub-section .g5-default-area .mbskin {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 480px !important;
}

/* sub-hero에 이미 제목 있으니 mbskin 안 큰 h1 숨김 */
.suikon .sub-section .g5-default-area .mbskin > h1,
.suikon .sub-section .g5-default-area #mb_login > h1,
.suikon .sub-section .g5-default-area #fregisterbox > h1,
.suikon .sub-section .g5-default-area #fregisterform > h1 { display: none !important; }

/* 로그인/회원가입 탭 영역(.mb_log_cate) 다크 톤 + 우측 링크 형태 */
.suikon .sub-section .g5-default-area .mb_log_cate {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 14px !important;
}
.suikon .sub-section .g5-default-area .mb_log_cate:after { display: none !important; }
.suikon .sub-section .g5-default-area .mb_log_cate h2 {
  width: auto !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.suikon .sub-section .g5-default-area .mb_log_cate .join {
  width: auto !important;
  float: none !important;
  padding: 6px 14px !important;
  text-align: center !important;
  background: rgba(255,106,0,0.12) !important;
  color: #ff9a3d !important;
  border: 1px solid rgba(255,106,0,0.4);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.suikon .sub-section .g5-default-area .mb_log_cate .join:hover {
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  text-decoration: none;
}

/* #login_info: 자동로그인 ↔ 아이디/비번 찾기 (float → flex) */
.suikon .sub-section .g5-default-area #login_info {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 16px 0 !important;
  font-size: 14px;
  color: #9aa3b2;
}
.suikon .sub-section .g5-default-area #login_info:after { display: none !important; }
.suikon .sub-section .g5-default-area #login_info .login_if_auto,
.suikon .sub-section .g5-default-area #login_info .login_if_lpl { float: none !important; }
.suikon .sub-section .g5-default-area #login_info .login_if_auto label {
  margin-left: 6px;
  padding-left: 0 !important;
  vertical-align: middle !important;
  color: #cfd6e2;
}
.suikon .sub-section .g5-default-area #login_info .login_if_lpl a { color: #9aa3b2; }
.suikon .sub-section .g5-default-area #login_info .login_if_lpl a:hover { color: #4cc2ff; text-decoration: underline; }

/* ============================================
   회원가입(register/register_form), 회원가입 완료(register_result),
   비밀번호 찾기(password_lost/password_reset) 톤앤매너 보정
   ============================================ */

/* ---- 약관 동의 페이지 (register.skin.php / #fregister) ---- */
.suikon .sub-section .g5-default-area #fregister { margin: 0; }
.suikon .sub-section .g5-default-area #fregister p {
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%) !important;
  color: #fff !important;
  border-radius: 10px !important;
  height: auto !important;
  line-height: 1.4 !important;
  padding: 16px 22px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 0 0 16px !important;
}
.suikon .sub-section .g5-default-area #fregister p:before { display: none !important; }
.suikon .sub-section .g5-default-area #fregister section {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  margin: 0 0 16px !important;
  overflow: hidden;
}
.suikon .sub-section .g5-default-area #fregister h2 {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  margin: 0 !important;
  text-align: left !important;
}
.suikon .sub-section .g5-default-area #fregister textarea {
  background: transparent !important;
  border: 0 !important;
  color: #cfd6e2 !important;
  padding: 20px !important;
  height: 200px !important;
  line-height: 1.6 !important;
  resize: none;
  border-radius: 0 !important;
}
.suikon .sub-section .g5-default-area #fregister textarea:focus { box-shadow: none !important; }

/* ---- 약관 본문 표 (.fregister_terms) ---- */
.suikon .sub-section .g5-default-area .fregister_terms div {
  background: transparent !important;
  padding: 20px !important;
}
.suikon .sub-section .g5-default-area .fregister_terms table {
  background: transparent !important;
}
.suikon .sub-section .g5-default-area .fregister_terms table th {
  background: rgba(255,255,255,0.04) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  padding: 12px !important;
  font-weight: 600;
}
.suikon .sub-section .g5-default-area .fregister_terms table td {
  border: 1px solid rgba(255,255,255,0.08) !important;
  padding: 12px !important;
  color: #cfd6e2 !important;
}

/* ---- 약관 동의 체크박스 (.fregister_agree) ---- */
.suikon .sub-section .g5-default-area .fregister_agree {
  /* position: absolute !important; */
  /* top: 14px !important; */
  /* right: 18px !important; */
}
.suikon .sub-section .g5-default-area .fregister_agree input[type="checkbox"] { display: none; }
.suikon .sub-section .g5-default-area .fregister_agree input[type="checkbox"] + label {
  color: #cfd6e2 !important;
  font-size: 14px;
  position: relative;
  padding-right: 28px;
  cursor: pointer;
  line-height: 22px;
}
.suikon .sub-section .g5-default-area .fregister_agree input[type="checkbox"] + label:hover { color: #ff9a3d !important; }
.suikon .sub-section .g5-default-area .fregister_agree input[type="checkbox"] + label span {
  position: absolute !important;
  top: 2px !important;
  right: 0 !important;
  width: 20px !important;
  height: 20px !important;
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  border-radius: 5px !important;
}
.suikon .sub-section .g5-default-area .fregister_agree input[type="checkbox"]:checked + label { color: #fff !important; }
.suikon .sub-section .g5-default-area .fregister_agree input[type="checkbox"]:checked + label span {
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%) !important;
  border-color: transparent !important;
  background-image: linear-gradient(135deg, #ff6a00 0%, #ff9a3d 100%) !important;
}
.suikon .sub-section .g5-default-area .fregister_agree input[type="checkbox"]:checked + label span:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.suikon .sub-section .g5-default-area .fregister_agree.chk_all input[type="checkbox"] + label span { top: 2px !important; }

/* ---- 전체동의 박스 (#fregister_chkall) ---- */
.suikon .sub-section .g5-default-area #fregister_chkall {
  background: rgba(255,106,0,0.08) !important;
  border: 1px solid rgba(255,106,0,0.25) !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  line-height: 1.4 !important;
  text-align: left !important;
  margin-bottom: 16px !important;
  position: relative;
}
.suikon .sub-section .g5-default-area #fregister_chkall label { color: #fff !important; font-weight: 600; font-size: 15px; }

/* ---- 하단 확인/취소 버튼 영역 (.register .btn_confirm) ---- */
.suikon .sub-section .g5-default-area .register .btn_confirm {
  display: flex !important;
  gap: 12px;
  margin-top: 24px;
}
.suikon .sub-section .g5-default-area .register .btn_confirm .btn_submit,
.suikon .sub-section .g5-default-area .register .btn_confirm .btn_close {
  float: none !important;
  width: 50% !important;
  margin: 0 !important;
  height: 52px !important;
}
.suikon .sub-section .g5-default-area .btn_close {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: #e7ecf5 !important;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.suikon .sub-section .g5-default-area .btn_close:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.25) !important;
  color: #fff !important;
}

/* ---- 회원가입 폼 (register_form.skin.php / #register_form) ---- */
.suikon .sub-section .g5-default-area #register_form,
.suikon .sub-section .g5-default-area .register_form_inner {
  background: transparent !important;
  border: 0 !important;
  margin: 0 !important;
}
.suikon .sub-section .g5-default-area #register_form h2 {
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  padding: 0 0 16px !important;
  margin: 0 0 24px !important;
}
.suikon .sub-section .g5-default-area .register_form_inner ul {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}
.suikon .sub-section .g5-default-area .register_form_inner ul li,
.suikon .sub-section .g5-default-area #fregisterform .form_01 > div {
  margin: 0 0 18px !important;
}
.suikon .sub-section .g5-default-area .register_form_inner label {
  display: block;
  margin-bottom: 8px !important;
  color: #cfd6e2 !important;
  font-size: 14px;
  font-weight: 500;
}
.suikon .sub-section .g5-default-area .register_form_inner label.inline { display: inline-flex; margin-right: 8px; }

/* 본인인증 관련 */
.suikon .sub-section .g5-default-area #fregisterform .cert_desc { color: #ff9a3d !important; font-size: 13px; margin-bottom: 8px; }
.suikon .sub-section .g5-default-area #fregisterform .cert_req { color: #ff6a6a !important; }
.suikon .sub-section .g5-default-area #fregisterform #msg_certify {
  background: rgba(76,194,255,0.08) !important;
  border: 1px solid rgba(76,194,255,0.25) !important;
  color: #4cc2ff !important;
  border-radius: 8px;
  padding: 10px 14px !important;
}

/* 폼 옆 작은 버튼 (.btn_frmline 중복확인/검색 등) */
.suikon .sub-section .g5-default-area .btn_frmline {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 48px !important;
  padding: 0 16px !important;
  margin-left: 6px;
  background: rgba(76,194,255,0.1) !important;
  border: 1px solid rgba(76,194,255,0.3) !important;
  color: #4cc2ff !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}
.suikon .sub-section .g5-default-area .btn_frmline:hover {
  background: rgba(76,194,255,0.18) !important;
  border-color: rgba(76,194,255,0.5) !important;
}

/* 동의 체크박스 줄 (consent) */
.suikon .sub-section .g5-default-area .chk_box,
.suikon .sub-section .g5-default-area .consent-group { color: #cfd6e2 !important; }
.suikon .sub-section .g5-default-area .consent-line { color: #cfd6e2; margin: 6px 0 !important; }
.suikon .sub-section .g5-default-area .consent-date { color: #9aa3b2; font-size: 13px; }
.suikon .sub-section .g5-default-area .js-open-consent {
  color: #4cc2ff !important;
  background: none !important;
  border: 0 !important;
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
}

/* 회원가입 페이지 하단 확인 버튼 단독 정렬 */
.suikon .sub-section .g5-default-area #fregisterform .btn_confirm {
  text-align: center !important;
  margin-top: 24px;
}
.suikon .sub-section .g5-default-area #fregisterform .btn_confirm .btn_submit { width: 100% !important; margin: 0; }

/* ---- 회원가입 완료 (#reg_result) ---- */
.suikon .sub-section .g5-default-area #reg_result {
  background: rgba(76,194,255,0.06) !important;
  border: 1px solid rgba(76,194,255,0.2) !important;
  border-radius: 14px !important;
  padding: 48px 32px !important;
  text-align: center;
}
.suikon .sub-section .g5-default-area #reg_result h2 {
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 700;
  margin: 0 0 20px !important;
}
.suikon .sub-section .g5-default-area #reg_result h2 strong { color: #ff9a3d !important; }
.suikon .sub-section .g5-default-area #reg_result .reg_result_p,
.suikon .sub-section .g5-default-area #reg_result .result_txt { color: #cfd6e2 !important; line-height: 1.6; }
.suikon .sub-section .g5-default-area #reg_result #result_email {
  background: rgba(0,0,0,0.2) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  color: #cfd6e2 !important;
  padding: 16px 24px !important;
  margin: 24px 0 !important;
  border-radius: 8px;
}
.suikon .sub-section .g5-default-area #reg_result #result_email strong { color: #ff9a3d !important; }
.suikon .sub-section .g5-default-area #reg_result .btn_confirm { margin: 32px 0 0 !important; }
.suikon .sub-section .g5-default-area #reg_result .btn_confirm_reg { margin: 24px 0; text-align: center; }
.suikon .sub-section .g5-default-area #reg_result .reg_btn_submit { display: inline-block; min-width: 200px; }
.suikon .sub-section .g5-default-area #reg_result .fa { color: #ff9a3d !important; margin-right: 6px; }

/* ---- 아이디/비밀번호 찾기 (#find_info) ---- */
.suikon .sub-section .g5-default-area #find_info { margin: 0; }
.suikon .sub-section .g5-default-area #find_info h3 {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600;
  margin: 0 0 20px !important;
  text-align: center;
}
.suikon .sub-section .g5-default-area #find_info .new_win_con {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 28px 24px !important;
  margin-bottom: 16px;
  float: none !important;
  width: 100% !important;
}
.suikon .sub-section .g5-default-area #find_info.cert .new_win_con { width: calc(50% - 6px) !important; float: left !important; }
.suikon .sub-section .g5-default-area #find_info.cert .new_win_con:nth-child(2) { margin-left: 12px !important; }
.suikon .sub-section .g5-default-area #find_info p { color: #cfd6e2 !important; line-height: 1.6; margin-bottom: 12px; }
.suikon .sub-section .g5-default-area #find_info #mb_email { margin: 12px 0 !important; }
.suikon .sub-section .g5-default-area #find_info #mb_hp_label { color: #cfd6e2; }
.suikon .sub-section .g5-default-area #find_info .find_btn {
  text-align: center;
  margin-top: 16px;
}
.suikon .sub-section .g5-default-area #find_info .find_btn .btn_submit {
  width: auto !important;
  min-width: 40% !important;
  padding: 0 28px !important;
  word-break: keep-all;
}
.suikon .sub-section .g5-default-area #find_info .cert_btn,
.suikon .sub-section .g5-default-area #find_info .win_sa_cert {
  width: 100% !important;
  margin-top: 8px;
}

/* ---- 비밀번호 재설정 (#pw_reset) ---- */
.suikon .sub-section .g5-default-area #pw_reset { margin: 0; }
.suikon .sub-section .g5-default-area #pw_reset #info_fs { margin-bottom: 16px !important; }
.suikon .sub-section .g5-default-area #pw_reset .win_btn { margin-top: 20px; text-align: center; }
.suikon .sub-section .g5-default-area #pw_reset .btn_submit { width: 100%; }

/* ---- 공통: new_win 컨테이너 (find/reset 등 팝업 스타일이지만 페이지 임베드됨) ---- */
.suikon .sub-section .g5-default-area .new_win { padding: 0 !important; background: transparent !important; }
.suikon .sub-section .g5-default-area .win_btn { text-align: center; margin-top: 20px; }
.suikon .sub-section .g5-default-area .win_btn:after { display: none !important; }

/* required 필드 표시 */
.suikon .sub-section .g5-default-area .required,
.suikon .sub-section .g5-default-area input.required { border-color: rgba(255,106,0,0.3) !important; }
.suikon .sub-section .g5-default-area input.required:focus { border-color: #ff9a3d !important; box-shadow: 0 0 0 3px rgba(255,106,0,0.15) !important; }

/* ============ sub-form: honeypot ============ */
.suikon .sub-form .hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
.suikon .sub-form .submit-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ============ 모바일 sub-section 여백 ============ */
@media (max-width: 768px) {
    .suikon .sub-section .g5-default-area {/* padding: 40px 20px !important; */}
}
@media (max-width: 640px) {
    .suikon .sub-section .inner { padding: 0; }
    /* g5-default-area 모바일 패딩 축소 — 게시판/회원 페이지 영역 확보 */
    .suikon .sub-section .g5-default-area {/* padding: 28px 12px !important; */}
    .suikon .sub-section .g5-default-area .g5-container { padding: 0 !important; }
    .suikon body:not(.is-main) .sub-section{
      padding: 40px 18px 80px;
    }
}

/* ============================================================
   그누보드 글쓰기 페이지 다크 톤 오버라이드
   (basic 스킨/우리 suikon 스킨 양쪽 모두 cover)
   ============================================================ */
.suikon #bo_w { width: 100% !important; margin: 0 !important; padding: 0 !important; box-sizing: border-box; color: #e7ecf5; }
.suikon #bo_w *, .suikon #bo_w *::before, .suikon #bo_w *::after { box-sizing: border-box; }
.suikon #bo_w .write_div {padding: 0 !important;background: transparent;color: #fff;border: 0;margin: 0 0 6px;height: auto;}
.suikon #bo_w label { color: rgba(231, 236, 245, 0.85) !important; }

/* sound_only 라벨 노출 — basic 스킨이 라벨을 숨김 처리해도 보이게 */
.suikon #bo_w .write_div > label.sound_only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    display: block !important;
    margin: 0 0 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(231, 236, 245, 0.75) !important;
    opacity: 0;
}
.suikon #bo_w .sound_only strong { color: #ff9a3d !important; margin-left: 3px; }

/* 입력 요소 통일 (높이 44, 다크) */
.suikon #bo_w input[type="text"],
.suikon #bo_w input[type="password"],
.suikon #bo_w input[type="email"],
.suikon #bo_w input[type="number"],
.suikon #bo_w input[type="tel"],
.suikon #bo_w input[type="url"],
.suikon #bo_w select {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    height: 44px !important;
    padding: 0 14px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
}
.suikon #bo_w textarea {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #212529 !important;
    min-height: 280px !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    width: 100% !important;
}
.suikon #bo_w input::placeholder { color: rgba(231, 236, 245, 0.35) !important; }
.suikon #bo_w textarea::placeholder { color: rgba(0, 0, 0, 0.35) !important; }
/* 그누보드 SmartEditor2 / CKEditor 영역 */
.suikon #bo_w .wr_content,
.suikon #bo_w .smart_editor2,
.suikon #bo_w iframe { background: #fff !important; border-radius: 10px !important; }
/* CKEditor 단축키 일람 / 접근성 안내 div — 시각적으로 숨김 (스크린리더는 접근 가능하게) */
.suikon #bo_w .cke_sc,
.suikon #bo_w .cke_voice_label,
.suikon #bo_w .cke_accessibility_help_label,
.suikon .cke_sc { display: none !important; }
.suikon #bo_w input:focus,
.suikon #bo_w select:focus,
.suikon #bo_w textarea:focus {
    outline: none !important;
    border-color: rgba(255, 138, 61, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.1) !important;
}

/* 제목 + 임시저장 wrapper */
.suikon #bo_w #autosave_wrapper {
    position: relative !important;
    display: flex !important;
    gap: 8px !important;
    align-items: stretch;
    width: 100% !important;
}
.suikon #bo_w #autosave_wrapper > input[type="text"] { flex: 1 1 auto !important; min-width: 0 !important; }
.suikon #bo_w #btn_autosave {
    flex: 0 0 auto !important;
    width: auto !important;
    height: 34px !important;
    padding: 0 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(231, 236, 245, 0.7) !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    cursor: pointer;
    white-space: nowrap;
}
.suikon #bo_w #btn_autosave:hover { border-color: rgba(255, 138, 61, 0.5) !important; color: #ff9a3d !important; }
.suikon #bo_w #autosave_pop {
    background: #1a1d24 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #e7ecf5 !important;
    border-radius: 10px !important;
}

/* 파일 input — dashed 보더로 박스 명확화 */
.suikon #bo_w input[type="file"] {
    display: block !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px dashed rgba(255, 138, 61, 0.45) !important;
    color: rgba(231, 236, 245, 0.85) !important;
    padding: 16px 18px !important;
    border-radius: 10px !important;
    height: auto !important;
    min-height: 56px !important;
    width: 100% !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    cursor: pointer;
    box-sizing: border-box;
}
.suikon #bo_w input[type="file"]:hover {
    background: rgba(255, 138, 61, 0.06) !important;
    border-color: rgba(255, 138, 61, 0.7) !important;
}
.suikon #bo_w input[type="file"]::-webkit-file-upload-button,
.suikon #bo_w input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #ff8a3d 0%, #ff6a1a 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    margin-right: 12px !important;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 13px;
}

/* 체크박스 / 라디오 */
.suikon #bo_w input[type="checkbox"],
.suikon #bo_w input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    padding: 0 !important;
    margin: 0 6px 0 0 !important;
    vertical-align: middle;
    accent-color: #ff8a3d;
    cursor: pointer;
    position: static;
}
.suikon #bo_w .chk_box,
.suikon #bo_w .bo_w_select {display: flex;align-items: center;gap: 0px;flex-wrap: wrap;padding: 4px 0;float: none;}
.suikon #bo_w .chk_box label,
.suikon #bo_w .bo_w_select label {
    display: inline-flex !important; align-items: center;
    margin: 0 !important; padding: 0 !important;
    cursor: pointer; font-weight: 400 !important;
}

/* 작성완료 / 취소 / 목록 버튼 */
.suikon .btn_confirm,
.suikon #bo_w .btn_confirm,
.suikon #bo_w + .btn_confirm,
.suikon #bo_w .bo_w_btn {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 28px 0 0 !important;
    padding: 24px 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: center !important;
}
.suikon .btn_confirm .btn_submit,
.suikon .btn_confirm input[type="submit"],
.suikon #bo_w button[type="submit"],
.suikon #bo_w .btn_submit {
    background: linear-gradient(135deg, #ff8a3d 0%, #ff6a1a 100%) !important;
    border: none !important;
    color: #fff !important;
    height: 46px !important;
    padding: 0 32px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: filter .2s ease;
    box-shadow: none !important;
    line-height: 1 !important;
}
.suikon .btn_confirm .btn_submit:hover,
.suikon #bo_w .btn_submit:hover { filter: brightness(1.1) !important; }
.suikon .btn_confirm .btn_cancel,
.suikon .btn_confirm a.btn_cancel,
.suikon #bo_w .btn_cancel,
.suikon #bo_w a.btn_cancel,
.suikon #bo_w .btn-list {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(231, 236, 245, 0.85) !important;
    height: 46px !important;
    padding: 0 28px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center; justify-content: center;
    text-decoration: none !important;
    transition: background .2s, border-color .2s;
    box-shadow: none !important;
    line-height: 1 !important;
}
.suikon .btn_confirm .btn_cancel:hover,
.suikon #bo_w .btn_cancel:hover,
.suikon #bo_w .btn-list:hover {
    background: rgba(255, 138, 61, 0.12) !important;
    border-color: rgba(255, 138, 61, 0.5) !important;
    color: #ff9a3d !important;
}

/* frm_input 클래스도 동일 톤 */
.suikon #bo_w .frm_input { width: 100% !important; }
.suikon #bo_w .full_input { width: 100% !important; }
.suikon #bo_w .half_input { width: calc(50% - 4px) !important; }

/* ============ 관련링크(.bo_w_link) / 파일첨부(.bo_w_flie) 박스 정리 ============ */
.suikon #bo_w .bo_w_link,
.suikon #bo_w .bo_w_flie {
    display: block !important;
    padding: 14px 16px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
}
.suikon #bo_w .bo_w_link > label,
.suikon #bo_w .bo_w_flie label.lb_icon,
.suikon #bo_w .bo_w_flie > label {
    display: inline-flex !important;
    align-items: center !important; gap: 6px !important;
    margin: 0 0 10px !important; padding: 0 !important;
    color: rgba(231, 236, 245, 0.8) !important;
    font-size: 13px !important; font-weight: 600 !important;
    background: transparent !important; border: none !important;
    width: auto !important; height: auto !important;
}
.suikon #bo_w .bo_w_link > label .sound_only,
.suikon #bo_w .bo_w_flie label .sound_only,
.suikon #bo_w .bo_w_flie .sound_only {
    position: static !important;
    width: auto !important; height: auto !important;
    overflow: visible !important; clip: auto !important;
    display: inline !important;
    color: inherit !important;
    font-size: inherit !important;
    margin: 0 !important;
}
.suikon #bo_w .bo_w_link > label i,
.suikon #bo_w .bo_w_flie label.lb_icon i {
    color: rgba(255, 138, 61, 0.85) !important;
    font-size: 14px !important;
}
.suikon #bo_w .bo_w_flie .file_wr {
    display: block !important; margin: 0 0 8px !important;
    padding: 0 !important; background: transparent !important; border: none !important;
}
.suikon #bo_w .bo_w_flie input[type="text"] { margin-top: 8px !important; }
.suikon #bo_w .bo_w_flie .file_del {
    display: inline-flex !important;
    align-items: center !important; gap: 8px !important;
    margin-top: 10px !important;
    padding: 8px 12px !important;
    background: rgba(231, 80, 80, 0.06) !important;
    border: 1px solid rgba(231, 80, 80, 0.22) !important;
    border-radius: 8px !important;
    color: rgba(231, 236, 245, 0.85) !important;
    font-size: 13px !important;
}
.suikon #bo_w .bo_w_flie .file_del label {
    margin: 0 !important; cursor: pointer;
    color: rgba(231, 236, 245, 0.85) !important;
    font-weight: 400 !important; font-size: 13px !important;
}

@media (max-width: 640px) {
    .suikon #bo_w #autosave_wrapper { flex-direction: column; }
    .suikon #bo_w #btn_autosave { width: 100% !important; }
    .suikon #bo_w .half_input { width: 100% !important; }
}

/* ============================================================
   전역 — 모든 <a> 텍스트 데코레이션 제거
   ============================================================ */
.suikon a,
.suikon a:link,
.suikon a:visited,
.suikon a:hover,
.suikon a:active,
.suikon a:focus { text-decoration: none !important; }

/* ============================================================
   그누보드 본문 wrapper 페이지 타이틀(중복) 숨김 — sub-hero h1 사용
   ============================================================ */
.suikon .sub-section .g5-default-area .g5-page-title { display: none !important; }

/* ============================================================
   그누보드 view 페이지 액션 버튼 톤 통일 (basic 스킨 환경)
   ============================================================ */
.suikon #bo_v .btn_bo_user {
    display: flex !important; gap: 8px;
    justify-content: center; padding: 0; margin: 0; flex-wrap: wrap;
}
.suikon #bo_v .btn_bo_user li { list-style: none; }
.suikon #bo_v .btn_b01,
.suikon #bo_v .btn_admin,
.suikon #bo_v .btn_b02,
.suikon #bo_v .btn_b03 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    height: 44px !important;
    padding: 0 18px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 138, 61, 0.5) !important;
    background: rgba(255, 138, 61, 0.12) !important;
    color: #ff9a3d !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background .2s, color .2s;
    line-height: 1 !important;
    white-space: nowrap;
    box-sizing: border-box;
}
.suikon #bo_v .btn_b01:hover,
.suikon #bo_v .btn_admin:hover,
.suikon #bo_v .btn_b02:hover,
.suikon #bo_v .btn_b03:hover {
    background: rgba(255, 138, 61, 0.22) !important;
    color: #ff9a3d !important;
}
.suikon #bo_v .btn_admin { width: 44px !important; padding: 0 !important; }
.suikon #bo_v .btn_more_opt {
    width: 44px !important; height: 44px !important; padding: 0 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(231, 236, 245, 0.75) !important;
    border-radius: 10px !important;
    cursor: pointer;
}
.suikon #bo_v .btn_more_opt:hover {
    border-color: rgba(255, 138, 61, 0.5) !important;
    color: #ff9a3d !important;
}
.suikon #bo_v .more_opt {
    background: #1a1d24 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    padding: 4px !important;
    list-style: none;
}
.suikon #bo_v .more_opt > li > a,
.suikon #bo_v .more_opt > li > button {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    width: 100% !important;
    height: 36px !important;
    padding: 0 12px !important;
    background: transparent !important;
    border: none !important;
    color: rgba(231, 236, 245, 0.85) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    cursor: pointer;
    border-radius: 6px;
}
.suikon #bo_v .more_opt > li > a:hover,
.suikon #bo_v .more_opt > li > button:hover {
    background: rgba(255, 138, 61, 0.12) !important;
    color: #ff9a3d !important;
}
