@charset "utf-8";
/* Modern Design - monet-registry inspired */
/* Adapted from Tailwind/shadcn patterns to vanilla CSS */

:root {
  /* HSL Color System (monet-registry pattern) */
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  --primary: 209 100% 36%; /* JHCP Blue #005cb7 */
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --accent: 43 89% 58%; /* Gold accent */
  --accent-foreground: 0 0% 9%;
  --destructive: 0 84.2% 60.2%;
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 209 100% 36%;
  --radius: 0.5rem;
  
  /* Shadows (monet-registry pattern) */
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-strong: rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 6px -1px var(--shadow), 0 2px 4px -2px var(--shadow);
  --shadow-lg: 0 10px 15px -3px var(--shadow), 0 4px 6px -4px var(--shadow);
  --shadow-xl: 0 20px 25px -5px var(--shadow), 0 8px 10px -6px var(--shadow);
  --shadow-2xl: 0 25px 50px -12px var(--shadow-strong);
  
  /* Spacing */
  --container: 1400px;
  --section-padding: clamp(3rem, 8vw, 6rem);
}

/* Base body enhancement */
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

/* ==================== */
/* Glass Effects (monet-registry glass-4/5 style) */
/* ==================== */
.glass-card {
  background: linear-gradient(to bottom, 
    hsla(var(--card), 0.9), 
    hsla(var(--card), 0.7)
  );
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 2);
  backdrop-filter: blur(8px);
}

/* ==================== */
/* Animations (monet-registry appear pattern) */
/* ==================== */
@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(1rem);
    filter: blur(0.25rem);
  }
  50% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes appear-zoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-appear {
  animation: appear 0.6s forwards ease-out;
}

.animate-appear-zoom {
  animation: appear-zoom 0.6s forwards ease-out;
}

/* Delay utilities */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-500 { animation-delay: 500ms; }
.delay-700 { animation-delay: 700ms; }

/* ==================== */
/* Top Bar - Clean gradient */
/* ==================== */
.top_bar {
  background: linear-gradient(90deg, 
    hsl(var(--primary)) 0%, 
    hsl(209 100% 28%) 100%
  );
  box-shadow: var(--shadow-md);
}

.top_bar p {
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 0;
  font-size: 0.85em;
}

/* ==================== */
/* Header - Clean & minimal */
/* ==================== */
.top {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.top .logo_area {
  padding: 1rem 0;
}

/* ==================== */
/* Navigation - Modern tabs */
/* ==================== */
.top_menu {
  background: hsl(var(--card));
  position: relative;
}

.top_menu:after {
  height: 3px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent))
  );
}

.top_menu ul {
  height: 52px;
  gap: 0.5rem;
}

.top_menu ul li a {
  font-size: 0.95em;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.top_menu ul li a:hover {
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
}

.top_menu ul li a.active {
  color: hsl(var(--primary));
  background: hsl(209 100% 95%);
}

.top_menu ul li a.active:after {
  width: 6px;
  height: 6px;
  background: hsl(var(--primary));
  top: 0;
  right: 4px;
}

/* ==================== */
/* Visual Hero Section */
/* ==================== */
.visual {
  position: relative;
  overflow: hidden;
}

.visual:after {
  background: linear-gradient(135deg, 
    hsl(209 80% 96%) 0%, 
    hsl(209 60% 92%) 100%
  );
}

.visual .inner {
  padding: var(--section-padding) 0;
}

.visual .copy {
  font-size: 1em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
  animation: appear 0.5s forwards ease-out;
  animation-delay: 0.3s;
  opacity: 0;
}

.visual h2 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: hsl(var(--primary));
  line-height: 1.2;
  margin-bottom: 1rem;
  animation: appear 0.5s forwards ease-out;
  animation-delay: 0.4s;
  opacity: 0;
}

.visual h2:after {
  background: linear-gradient(90deg, 
    hsla(43, 89%, 58%, 0.4) 0%, 
    hsla(43, 89%, 58%, 0.1) 100%
  );
  height: 40%;
  bottom: 0;
}

.visual .txt {
  font-size: 1.05em;
  color: hsl(var(--foreground));
  font-weight: 400;
  animation: appear 0.5s forwards ease-out;
  animation-delay: 0.5s;
  opacity: 0;
}

/* Feature boxes - Glass card style */
.visual .box {
  margin-top: 2rem;
}

.visual .box li {
  width: 150px;
  height: 100px;
  background: linear-gradient(to bottom, 
    hsl(var(--card)), 
    hsl(0 0% 98%)
  );
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  font-size: 0.95em;
}

.visual .box li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: hsl(var(--primary) / 0.3);
}

.visual .box li span {
  color: hsl(var(--muted-foreground));
  font-size: 0.75em;
}

/* ==================== */
/* Phone Input Section - Premium feel */
/* ==================== */
.tel_box {
  background: linear-gradient(180deg, 
    hsl(47 100% 97%) 0%, 
    hsl(47 80% 94%) 100%
  );
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.tel_box .tel_tit {
  background: linear-gradient(135deg, 
    hsl(var(--primary)) 0%, 
    hsl(209 100% 30%) 100%
  );
  font-size: 1.25em;
  padding: 1rem 1.5rem;
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
  animation: appear 0.5s forwards ease-out;
  opacity: 0;
}

.tel_box .tel_tit span {
  color: hsl(var(--accent));
}

.tel_box section {
  background: hsl(var(--card));
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border));
  animation: appear 0.5s forwards ease-out;
  animation-delay: 0.2s;
  opacity: 0;
}

.tel_box section .tit {
  font-size: 1.4em;
  color: hsl(var(--primary));
  font-weight: 700;
}

.tel_box section .txt {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Input styling - Clean focus states */
.tel_box section .tel_ip {
  border: 2px solid hsl(var(--input));
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  height: 48px;
  font-size: 1em;
  transition: all 0.2s ease;
  background: hsl(var(--background));
}

.tel_box section .tel_ip:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* CTA Button - Gradient with hover lift (monet-registry button pattern) */
.tel_box section .cf_btn {
  background: linear-gradient(to bottom, 
    hsl(var(--accent) / 0.9), 
    hsl(var(--accent))
  );
  color: hsl(var(--foreground));
  font-size: 1.1em;
  font-weight: 600;
  padding: 0.875rem 2rem;
  height: auto;
  min-height: 52px;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.tel_box section .cf_btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(to bottom, 
    hsl(var(--accent)), 
    hsl(43 89% 50%)
  );
}

.tel_box section .cf_btn:active {
  transform: translateY(0) scale(1);
}

.tel_box .fm_ck {
  margin-top: 0.75rem;
}

.tel_box .fm_ck label {
  font-size: 0.875em;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

.tel_box .fm_ck a {
  background: hsl(var(--secondary-foreground));
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8em;
  transition: all 0.2s ease;
}

.tel_box .fm_ck a:hover {
  background: hsl(var(--foreground));
}

/* ==================== */
/* Product Info Section - Card style */
/* ==================== */
.pd_info {
  padding: var(--section-padding) 0 0;
}

.pd_info:after {
  background: hsl(var(--muted));
  bottom: 40px;
}

.pd_info .inner {
  background: hsl(var(--card));
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border));
  animation: appear 0.6s forwards ease-out;
  opacity: 0;
}

.pd_info h3 {
  color: hsl(var(--muted-foreground));
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.pd_info h4 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: hsl(var(--primary));
  margin: 0.75rem 0 1.25rem;
  position: relative;
  display: inline-block;
}

.pd_info h4:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent))
  );
  margin-top: 0.75rem;
  border-radius: 2px;
}

.pd_info ul li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.95em;
  transition: all 0.2s ease;
}

.pd_info ul li:hover {
  background: hsl(var(--muted));
  padding-left: 2rem;
}

.pd_info ul li:before {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent))
  );
  top: 1rem;
  border-radius: 50%;
}

/* ==================== */
/* Step Section - Clean cards */
/* ==================== */
.step_box {
  margin: var(--section-padding) 0;
  padding: 0 2%;
}

.step_box h3 {
  font-size: 1.1em;
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.step_box h3:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent))
  );
  margin: 1rem auto 0;
  border-radius: 2px;
}

.step_box ul li {
  background: hsl(var(--card));
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step_box ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent))
  );
}

.step_box ul li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.step_box ul li .tit {
  color: hsl(var(--primary));
  font-size: 0.85em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step_box ul li .name {
  font-size: 1.25em;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step_box ul li .d_txt {
  color: hsl(var(--muted-foreground));
  font-size: 0.85em;
  line-height: 1.5;
}

.step_box ul li.last {
  background: linear-gradient(135deg, 
    hsl(var(--primary)) 0%, 
    hsl(209 100% 30%) 100%
  );
  border-color: transparent;
}

.step_box ul li.last:before {
  background: hsl(var(--accent));
}

.step_box ul li.last .tit,
.step_box ul li.last .d_txt {
  color: hsl(var(--primary-foreground) / 0.9);
}

.step_box ul li.last .name {
  color: hsl(var(--accent));
}

/* ==================== */
/* Bottom Notice Section */
/* ==================== */
.bottom_txt {
  background: hsl(var(--card));
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0 2% 2rem;
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border));
}

.bottom_txt h3 {
  font-size: 1.1em;
  color: hsl(var(--foreground));
  border-bottom: 2px solid hsl(var(--border));
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.bottom_txt ul li {
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9em;
}

.bottom_txt ul li:before {
  background: hsl(var(--border));
  width: 6px;
  height: 6px;
  top: 0.875rem;
}

.bottom_txt ul li a.active {
  color: hsl(var(--primary));
  font-weight: 500;
}

.bottom_txt ul li a.active:hover {
  text-decoration: underline;
}

/* ==================== */
/* Footer */
/* ==================== */
.tail {
  background: linear-gradient(180deg, 
    hsl(var(--muted) / 0.5) 0%, 
    hsl(var(--muted)) 100%
  );
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid hsl(var(--border));
}

.tail .inner {
  text-align: center;
}

.tail .tail_logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  margin-bottom: 1rem;
  display: inline-block;
}

.tail .tail_logo:hover {
  opacity: 1;
}

.tail .tail_logo img {
  max-height: 40px;
  width: auto;
}

.tail_copy {
  color: hsl(var(--muted-foreground));
  font-size: 0.8em;
  line-height: 1.8;
}

/* ==================== */
/* Floating SNS Buttons - Clean pills */
/* ==================== */
.sns_btn {
  bottom: 1.25rem;
  right: 1.25rem;
}

.sns_btn a {
  background: hsl(var(--card));
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875em;
  font-weight: 500;
  height: 46px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sns_btn a:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-xl);
}

.sns_btn a img {
  height: 20px;
  margin-right: 0.5rem;
}

.sns_btn .naver {
  border-color: #03c75a;
}

.sns_btn .naver:hover {
  background: #03c75a;
  color: white;
}

.sns_btn .kakao {
  border-color: #fee500;
}

.sns_btn .kakao:hover {
  background: #fee500;
  color: #3c1e1e;
}

.sns_btn .chat {
  border-color: hsl(var(--primary));
}

.sns_btn .chat:hover {
  background: hsl(var(--primary));
  color: white;
}

/* ==================== */
/* Popup - Glass style */
/* ==================== */
#popup_layer {
  backdrop-filter: blur(4px);
}

#popup_layer .box {
  width: 480px;
  max-width: 90%;
  padding: 2rem;
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-2xl);
  animation: appear-zoom 0.3s forwards ease-out;
}

#popup_layer .box dl dt {
  font-size: 1.2em;
  color: hsl(var(--primary));
  border-bottom: 2px solid hsl(var(--border));
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

#popup_layer .box dl dd {
  padding: 0.5rem 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 0.9em;
}

#popup_layer .box a.close_btn {
  background: linear-gradient(to bottom, 
    hsl(var(--secondary-foreground) / 0.9), 
    hsl(var(--secondary-foreground))
  );
  color: white;
  padding: 0.875rem 0;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

#popup_layer .box a.close_btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==================== */
/* Mobile Responsive */
/* ==================== */
@media screen and (max-width: 768px) {
  :root {
    --section-padding: 2.5rem;
  }
  
  .tel_box {
    padding: 1.5rem 0;
  }
  
  .tel_box .tel_tit {
    font-size: 1em;
    padding: 0.875rem 1rem;
    line-height: 1.4;
  }
  
  .tel_box section {
    padding: 1.25rem 1rem;
  }
  
  .pd_info .inner {
    padding: 1.5rem 1.25rem;
  }
  
  .step_box ul li {
    padding: 1.5rem 1.25rem;
  }
  
  .bottom_txt {
    padding: 1.5rem 1.25rem;
    margin: 0 4% 1.5rem;
  }
  
  .sns_btn {
    bottom: 0.75rem;
    right: 0.75rem;
  }
  
  .sns_btn a {
    padding: 0.625rem 1rem;
    font-size: 0.8em;
    height: 40px;
  }
}

@media screen and (max-width: 560px) {
  .visual .box li {
    width: calc(33.3% - 10px);
    height: 85px;
    font-size: 0.85em;
    padding: 0 0.75rem;
  }
}
