/*
Theme Name: 단비금융대부
Theme URI: https://danbi-finance.com
Author: Danbi Developer
Author URI: https://danbi-finance.com
Description: 단비금융대부 금융 서비스 전용 워드프레스 테마 - 모바일 최적화 랜딩 페이지
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: danbi-theme
Tags: one-page, landing-page, mobile-first, finance
*/

/* ===== CSS Reset & Base ===== */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

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

:root {
  --brand-color: #f70042;
  --brand-dark: #e5173f;
  --brand-pink: #ff6b8a;
  --text-dark: #363636;
  --text-black: #000000;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-pink-light: #fff0f3;
  --bg-gradient-hero: linear-gradient(180deg, #d6e8ff 0%, #f0e0f0 30%, #ffccd5 60%, #ffa6b8 100%);
  --bg-gradient-pink: linear-gradient(180deg, #ffd6e0 0%, #ffb3c6 100%);
  --bg-gradient-blue: linear-gradient(180deg, #e8f0ff 0%, #f0e0f0 100%);
  --button-bg: #000000;
  --button-font: #ffffff;
  --max-width: 768px;
  --font-family: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-headline: 'Pretendard Variable', 'Pretendard', sans-serif;
  --cta-red-bg: #e5173f;
  --cta-pink-bg: #ffb3c6;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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



.highlight-red { color: #f70042; }
.highlight-white { color: #ffffff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  position: relative;
  min-height: 56px;
}

.menu-toggle {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.menu-toggle .hamburger span {
  display: block;
  height: 2px;
  background: var(--text-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.site-logo {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-color);
  letter-spacing: -1.5px;
}

.site-logo a {
  color: var(--brand-color);
}

/* ===== Navigation Drawer ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 9999;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.nav-drawer.active {
  left: 0;
}

.nav-drawer-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-drawer-header .logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-color);
}

.nav-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 4px;
}

.nav-menu {
  padding: 10px 0;
}

.nav-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.nav-menu li a {
  display: block;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.nav-menu li a:hover {
  background: #fff0f3;
  color: var(--brand-color);
  padding-left: 30px;
}

.nav-menu li a .nav-icon {
  margin-right: 10px;
  font-size: 16px;
}

/* ===== Hero Section (Redesigned) ===== */
.hero-section {
  background: var(--brand-color); /* Vibrant red background */
  padding: 10px 20px 60px; /* 상단 패딩 최소화 */
  margin-top: -56px; /* 헤더 높이만큼 위로 당겨 여백 완벽 제거 */
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align items */
  text-align: center;
  overflow: visible;
}

.hero-top-info {
  width: 100%;
  text-align: left; /* Shift to Left as requested */
  margin-bottom: 20px; 
}

.hero-top-info p {
  color: var(--text-white);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  opacity: 0.9;
}

.hero-brand-label {
  color: #ffffff;
  font-size: 72px; /* Much Larger BRAND name */
  font-weight: 900;
  margin: -10px auto 5px; /* 상단 마진 줄여 위로 배치 */
  letter-spacing: -3px;
}

.hero-brand-title {
  font-family: var(--font-headline);
  font-size: 32px; /* Smaller benefit headline */
  font-weight: 900;
  color: #000000;
  letter-spacing: -2px;
  margin-bottom: 20px; /* 간격 축소 */
}

.hero-image {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 30px;
  animation: floatAnimation 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-bottom-text {
  color: var(--text-white);
}

.hero-impact-top {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 1;
}

.hero-impact-main {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-hashtags {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  opacity: 1;
  margin-top: 30px;
}

.hero-hashtags span {
  font-size: 36px;
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .hero-brand-title {
    font-size: 36px;
  }
  .hero-impact-main {
    font-size: 26px;
  }
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ===== Hashtag Banner ===== */
.hashtag-banner {
  background: #ffb3c6; /* Salmon Pink matching user screenshot */
  padding: 60px 20px;
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.banner-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner-icon {
  width: 320px;
  height: 320px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.banner-tag {
  font-size: 32px;
  font-weight: 900;
  color: #333;
  line-height: 1.1;
  word-break: keep-all;
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== CTA Contact Bar (Repeating) ===== */
.cta-contact-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%; /* 너비 제한 해제 */
  width: 100%;
  margin: 0;
}

.cta-box {
  padding: 30px 20px; /* 좌우 기본 여백 */
  display: flex;
  flex-direction: column;
  align-items: center; /* 내부 요소 수평 중앙 정렬 */
  text-align: center;
}

.cta-box.call {
  background: var(--cta-red-bg);
  color: var(--text-white);
  padding-right: 60px; /* 화면 중앙선에서 왼쪽으로 여백 확보 */
}

.cta-box.sms {
  background: var(--cta-pink-bg);
  color: var(--text-dark);
  padding-left: 60px; /* 화면 중앙선에서 오른쪽으로 여백 확보 */
}

.cta-box .cta-label {
  font-size: 14px; /* 라벨 폰트 확대 */
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.9;
}

.cta-box .cta-number {
  font-size: 34px; /* 번호 폰트 대폭 확대 */
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}

.cta-box .cta-hours {
  font-size: 13px; /* 상담시간 폰트 확대 */
  opacity: 0.8;
  margin-bottom: 15px;
}

.cta-box .cta-btn {
  display: inline-block;
  padding: 14px 40px; /* 버튼의 터치/클릭 영역 확대 */
  min-width: 240px; /* 버튼이 일정 너비를 확보하도록 설정 */
  border-radius: 40px;
  font-size: 18px; /* 버튼 폰트 추가 확대 */
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-box.call .cta-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-white);
}

.cta-box.call .cta-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cta-box.sms .cta-btn {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

.cta-box.sms .cta-btn:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* ===== Section Common ===== */
.section {
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-bg-pink {
  background: var(--bg-gradient-pink);
}

.section-bg-blue {
  background: var(--bg-gradient-blue);
}

.section-bg-light {
  background: var(--bg-light);
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-title-brand {
  display: block;
  color: var(--text-black);
  font-weight: 900;
}

.section-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.section-heading .highlight {
  color: var(--brand-color);
}

/* ===== Intro Section ===== */
.intro-section {
  background: var(--bg-gradient-pink);
  padding: 80px 20px;
}

.intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.intro-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.intro-brand-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-black);
  margin-bottom: 4px;
}

.intro-sub-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.intro-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.intro-big-text {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-black);
  line-height: 1.2;
  margin-bottom: 4px;
}

.intro-highlight {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-color);
  margin-bottom: 20px;
}

.intro-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ===== Consult Notice Section (Added) ===== */
.consult-notice-section {
  background: var(--bg-light); /* Clean grey background matches screenshot */
  padding: 60px 20px;
  overflow: hidden;
}

.notice-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.notice-left {
  flex: 1.1;
  max-width: 500px;
}

.notice-right {
  flex: 0.9;
  text-align: left;
}

.notice-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-black);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.notice-desc {
  margin-bottom: 30px;
}

.notice-desc .desc-main {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.notice-desc .desc-sub {
  font-size: 18px;
  font-weight: 800;
  margin-top: 10px;
}

.highlight-red {
  color: #e5173f; /* Vibrant red warning */
}

.warning-banner {
  max-width: 450px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .notice-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .notice-right {
    text-align: center;
  }
  
  .notice-title {
    font-size: 24px;
  }
  
  .notice-desc .desc-main {
    font-size: 16px;
  }
  
  .notice-desc .desc-sub {
    font-size: 14px;
  }
  
  .warning-banner {
    margin: 20px auto 0;
  }
}

/* ===== Recommendation Section ===== */
.recommend-section {
  background: var(--bg-gradient-pink);
  padding: 60px 20px;
}

.recommend-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.recommend-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.recommend-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-black);
  line-height: 1.3;
  margin-bottom: 4px;
}

.recommend-title .brand-highlight {
  color: var(--brand-color);
}

.recommend-list {
  margin: 24px 0 30px;
}

.recommend-list li {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recommend-list li .emoji {
  font-size: 20px;
}

.recommend-image {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ===== Text Consultation Section ===== */
.consult-section {
  background: var(--bg-gradient-pink);
  padding: 60px 20px;
}

.consult-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.consult-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  gap: 16px;
}

.consult-card-left h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-black);
  margin-bottom: 6px;
}

.consult-card-left p {
  font-size: 13px;
  color: #666;
}

.consult-card-left .phone-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-black);
  letter-spacing: -1px;
  margin-top: 10px;
}

.consult-card-right {
  text-align: center;
  flex-shrink: 0;
}

.consult-card-right .mail-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.consult-card-right .text-label {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-color);
  line-height: 1.2;
}

.consult-card-right .arrow-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--brand-color);
  border-radius: 50%;
  color: var(--text-white);
  line-height: 28px;
  text-align: center;
  margin-top: 6px;
  font-size: 14px;
}

/* ===== Reviews Section ===== */
.reviews-section {
  padding: 60px 20px;
  background: var(--bg-white);
}

.reviews-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.reviews-title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-black);
  margin-bottom: 30px;
}

.reviews-title .highlight {
  color: var(--brand-color);
}

.review-card {
  background: #fff5f8;
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-emoji {
  font-size: 40px;
}

.review-meta {
  flex: 1;
}

.review-stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.review-user {
  font-size: 12px;
  color: #999;
}

.review-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ===== Wallet/Image Section ===== */
.image-showcase {
  background: var(--bg-gradient-blue);
  padding: 60px 20px;
  text-align: center;
}

.image-showcase-inner {
  max-width: 400px;
  margin: 0 auto;
}

.image-showcase img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ===== Info/Registration Section ===== */
.info-section {
  padding: 60px 20px;
  background: var(--bg-gradient-blue);
}

.info-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.info-title {
  font-size: 42px;
  font-weight: 900;
  display: inline-block;
  text-align: center;
  color: var(--text-black);
  margin-top: 20px;
  margin-bottom: 40px;
  letter-spacing: -1px;
  position: relative;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-color);
  border-radius: 2px;
}

.info-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.info-card img {
  max-width: 280px;
  margin: 0 auto 16px;
  border-radius: var(--radius-sm);
}

.info-details {
  text-align: left;
}

.info-details p strong {
  font-weight: 700;
  color: var(--text-black);
}

.info-cert-box {
  background: #f8f9fa;
  border-radius: var(--radius);
  padding: 24px;
}

.info-cert-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.info-cert-images {
  margin-bottom: 20px;
}

.cert-img-wrapper {
  background: var(--bg-white);
  padding: 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cert-img-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, #e8f0ff 0%, #d6e8ff 100%);
  padding: 40px 20px 120px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-business-info {
  margin-bottom: 20px;
}

.footer-business-info p {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

.footer-certs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.cert-item {
  width: 60px;
  height: 80px;
  background: var(--bg-white);
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s;
}

.cert-item:hover {
  transform: translateY(-5px) scale(1.05);
}

.cert-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-legal {
  font-size: 11px;
  color: #888;
  line-height: 1.8;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 16px;
}

.footer-legal .warning-text {
  color: var(--brand-color);
  font-weight: 600;
}

.footer-copyright {
  font-size: 12px;
  color: #999;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== Desktop Navigation (hidden on mobile) ===== */
.desktop-nav {
  display: none;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.desktop-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.desktop-menu li a:hover {
  color: var(--brand-color);
}

.desktop-menu li a:hover::after {
  width: 60%;
}

.desktop-menu li a.active {
  color: var(--brand-color);
  font-weight: 800;
}

.desktop-menu li a.active::after {
  width: 60%;
}

/* ===== Fixed Bottom CTA (Mobile) ===== */
.fixed-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none; /* 기본 숨김 */
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.fixed-cta-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  transition: filter 0.2s;
}

.fixed-cta-box:hover { filter: brightness(1.1); }
.fixed-cta-box.call { background: #ff3b5c; }
.fixed-cta-box.sms { background: #333; }
.fixed-cta-box .fixed-icon { font-size: 20px; }

/* ===== Floating Action Button (FAB) ===== */
.fab-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9990;
  display: flex; /* PC 기본 노출 */
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab-main {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f70042 0%, #ff6b8a 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(247, 0, 66, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.fab-main:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(247, 0, 66, 0.5);
}

.fab-main .fab-heart {
  font-size: 26px;
  transition: all 0.3s ease;
  line-height: 1;
}

.fab-main .fab-close {
  font-size: 22px;
  color: white;
  font-weight: 700;
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

.fab-container.open .fab-main .fab-heart {
  opacity: 0;
  transform: rotate(90deg);
}

.fab-container.open .fab-main .fab-close {
  opacity: 1;
  transform: rotate(0deg);
}

.fab-container.open .fab-main {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* FAB Options */
.fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-container.open .fab-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.fab-option:hover { transform: translateX(-4px); }
.fab-call { background: #ff3b5c; color: #fff; }
.fab-sms { background: #fff; color: #333; border: 1px solid #eee; }

/* Responsive Visibility */
@media (min-width: 769px) {
  .fixed-bottom-cta { display: none !important; }
  .fab-container { display: flex !important; }
}

@media (max-width: 768px) {
  .fixed-bottom-cta { display: flex !important; }
  .fab-container { display: none !important; }
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ===== Loading Screen ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-color);
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #f0f0f0;
  border-top-color: var(--brand-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Responsive Desktop ===== */
@media (min-width: 769px) {
  /* Header: show desktop nav, hide hamburger */
  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: block;
  }

  .header-inner {
    max-width: 1200px;
    justify-content: space-between;
    gap: 40px;
    padding: 15px 30px;
  }

  .site-logo {
    flex-shrink: 0;
  }

  .hero-section {
    padding: 80px 20px 60px;
    min-height: 600px;
  }

  .hero-hashtag {
    font-size: 36px;
  }

  .hero-image {
    max-width: 1250px;
  }

  .cta-contact-bar {
    max-width: 100%; /* 데스크톱에서도 100% 전체 너비 사용 */
  }

  .section {
    max-width: 1200px;
    padding: 80px 20px;
  }

  .intro-inner,
  .recommend-inner,
  .consult-inner,
  .reviews-inner,
  .info-inner,
  .footer-inner {
    max-width: 1200px;
  }



  .intro-big-text {
    font-size: 40px;
  }

  .intro-highlight {
    font-size: 36px;
  }

  .hero-impact-text {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .hero-impact-text .highlight {
    font-size: 52px;
  }

  .banner-inner {
    max-width: 1100px;
    gap: 30px;
  }

  .banner-icon {
    width: 280px;
    height: 280px;
  }

  .banner-tag {
    font-size: 28px;
  }

  .info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
  }

  .info-cert-box {
    margin-top: 0 !important;
  }

  .fab-container {
    bottom: 40px;
    right: 40px;
  }

  .fab-main {
    width: 64px;
    height: 64px;
  }
}

/* ===== Login Modal ===== */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}

.login-modal-overlay.active {
  display: flex;
}

.login-modal {
  background: var(--bg-white);
  border-radius: var(--radius);
  width: 90%;
  max-width: 400px;
  padding: 30px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease;
}

.login-modal h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 20px;
  text-align: center;
}

.login-modal input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 10px;
  font-family: var(--font-family);
  transition: border-color 0.2s;
}

.login-modal input:focus {
  outline: none;
  border-color: var(--brand-color);
}

.login-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 16px;
}

.login-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-color);
}

.login-checkbox label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: #7c3aed;
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-family);
}

.login-btn:hover {
  background: #6d28d9;
}

.login-links {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
}

.login-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.login-divider {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin: 16px 0;
  position: relative;
}

.login-divider::before,
.login-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: #e0e0e0;
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

.guest-btn {
  width: 100%;
  padding: 14px;
  background: #9ca3af;
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-family);
}

.guest-btn:hover {
  background: #6b7280;
}

/* ===== Money Particles Animation (Hero Section) ===== */
.money-particles-bg,
.money-particles-fg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.money-particles-bg {
  z-index: 1;
}

.money-particles-fg {
  z-index: 3;
}

.money-particle {
  position: absolute;
  top: -50px;
  will-change: transform;
  animation: moneyFall linear forwards;
}

/* Bills Styling */
.money-bill {
  width: 220px;
  height: 110px;
  display: block;
  backface-visibility: hidden;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Perfectly crop white borders from user-provided images */
  clip-path: inset(2px);
  -webkit-clip-path: inset(2px);
}

.bill-1k {
  background-image: url('images/won-1k-user.png');
}

.bill-10k {
  background-image: url('images/won-10k-user.png');
}

.bill-50k {
  background-image: url('images/won-50k-user.png');
}

/* Coins Styling */
.money-coin {
  width: 80px;
  height: 80px;
  background-image: url('images/won-coin-user.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Perfectly crop white border for circle image */
  clip-path: circle(48%);
  -webkit-clip-path: circle(48%);
}
.money-coin::after {
  content: '';
}

@keyframes moneyFall {
  0% {
    transform: translateY(0vh) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotateX(360deg) rotateY(720deg) rotateZ(360deg) translateX(40px);
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .money-bill {
    width: 140px;
    height: 70px;
  }
  .money-coin {
    width: 50px;
    height: 50px;
  }
}


/* ===== CTA Image Banner (NEW) ===== */
.cta-image-banner {
  background: #fdfdfd;
  padding: 40px 20px;
}

.cta-image-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.cta-image-box {
  flex: 1;
  max-width: 580px;
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: scale(0.6);
}

.cta-image-box img {
  width: 100%;
  display: block;
}

.cta-image-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* Pop-up Animation triggered by scroll (.visible is added by main.js) */
.cta-image-banner.visible .cta-image-box {
  animation: ctaPopUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.cta-image-banner.visible .cta-image-box:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes ctaPopUp {
  0% { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .cta-image-inner {
    flex-direction: column;
    gap: 20px;
  }
  .cta-image-box {
    max-width: 100%;
  }
}

/* ===== Procedure Section (NEW) ===== */
.procedure-section {
  background: #fdfdfd;
  padding: 100px 20px;
}

.procedure-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.proc-subtitle {
  font-size: 18px;
  color: var(--brand-color);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.proc-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #111;
}

.proc-desc {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.proc-steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.proc-step {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 30px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proc-step:hover {
  transform: translateY(-10px);
}

.proc-icon {
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
}

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

.step-num {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  background: var(--brand-color);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
  display: inline-block;
}

.proc-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: #333;
  line-height: 1.4;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .procedure-section { padding: 60px 20px; }
  .proc-title { font-size: 28px; }
  .proc-steps { flex-direction: column; align-items: center; }
  .proc-step { width: 100%; max-width: 100%; }
}

/* ===== Screenshot-Accurate Section Redesign (NEW) ===== */
.gradient-section {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); /* Pink/Peach Gradient */
  padding: 80px 20px;
  overflow: hidden;
}

.section-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Reverse order for Recommend section */
.section-row.reverse {
  flex-direction: row-reverse;
}

.content-col {
  flex: 1;
  text-align: left;
}

.image-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.img-box-wrapper {
  background: rgba(173, 216, 230, 0.4); /* Light Blue Background */
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 500px;
}

.img-box-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Typography */
.section-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  display: block;
}

.section-title-big {
  font-size: 42px;
  font-weight: 900;
  color: #222;
  line-height: 1.0; /* 행간 대폭 축소 */
  margin-bottom: 15px;
  word-break: keep-all;
  letter-spacing: -3px; /* 자간 축소 */
}

.section-title-big span {
  color: #ff3b5c; /* Highlight Red */
  display: inline-block;
  margin-top: 0;
}

.section-desc-small {
  font-size: 22px;
  font-weight: 800;
  color: #333;
  line-height: 1.5;
  margin-bottom: 25px;
}

.section-desc-small p {
  margin-bottom: 15px;
}

.section-desc-small span, 
.section-desc-small .highlight-red {
  color: #ff3b5c;
  font-weight: 900;
  display: block;
}

.recommend-list-new {
  list-style: none;
  padding: 0;
}

.recommend-list-new li {
  font-size: 22px;
  font-weight: 900;
  color: #222;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.proc-steps-new {
  list-style: none;
  padding: 0;
}

.proc-steps-new li {
  margin-bottom: 40px;
  padding: 0;
  background: none;
  border-radius: 0;
  border-left: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.proc-steps-new li:hover {
  transform: translateX(10px);
}

.proc-steps-new .step-label {
  font-size: 20px;
  font-weight: 900;
  color: #ff3b5c;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.proc-steps-new .step-text {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  line-height: 1.3;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .section-title-big { font-size: 36px; }
  .proc-steps-new .step-text { font-size: 20px; }
}

@media (max-width: 991px) {
  .section-row, .section-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .content-col { text-align: center; }
  .section-title-big { font-size: 32px; }
}

/* Reusable Pop-up Animation for Images */
.pop-up-scroll {
  opacity: 0;
  transform: scale(0.6);
}

.animate-on-scroll.visible .pop-up-scroll {
  animation: ctaPopUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Unified Section Header Styles */
.section-header {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.section-header .section-desc-small {
  font-size: 18px;
  font-weight: 700;
  color: #ff3b5c;
  margin: 0;
}

/* ===== Screenshot-Accurate Reviews Redesign (NEW) ===== */
.reviews-redesign {
  background-color: #ffabaa; /* Pink/Peach Background from screenshot */
  padding: 100px 20px;
  text-align: center;
}

.reviews-header {
  margin-bottom: 50px;
}

.reviews-header .gold-stars {
  width: 300px; /* 기존 200px에서 확대 */
  margin: 0 auto 20px;
  display: block;
}

.reviews-header .brand-name-red {
  color: #ff3b5c;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 15px;
  display: block;
}

.reviews-header .main-title {
  font-size: 42px;
  font-weight: 900;
  color: #222;
}

.reviews-header .main-title span {
  color: #ff3b5c;
}

.reviews-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.reviews-left-col {
  flex: 1.2;
  display: flex;
  justify-content: center;
}

.reviews-illustration {
  width: 100%;
  max-width: 500px;
  background: none;
  padding: 0;
  box-shadow: none;
}

.reviews-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-card-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.review-card-item:hover {
  transform: scale(1.02);
}

.review-avatar {
  font-size: 60px;
  line-height: 1;
}

.review-content-box {
  flex: 1;
}

.review-card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.review-stars {
  color: #ff3b5c;
  font-size: 18px;
  margin-bottom: 4px;
}

.review-username {
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
}

.review-text {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  word-break: keep-all;
}

@media (max-width: 991px) {
  .reviews-row {
    flex-direction: column;
  }
  .reviews-header .main-title { font-size: 32px; }
}

/* Responsive Refinements for Reviews Redesign */
@media (max-width: 768px) {
  .reviews-redesign { padding: 60px 15px; }
  .reviews-header .gold-stars { width: 220px; }
  .reviews-header .main-title { font-size: 28px; }
  .review-avatar { font-size: 45px; }
  .review-text { font-size: 15px; }
  .reviews-illustration { padding: 0; }
}

/* ===== Quick Feature Section (Screenshot Redesign) ===== */
.quick-feature-section {
 background-color: #fdf6f7; /* Very light pinkish grey from screenshot */
 padding: 100px 20px;
 text-align: center;
 overflow: hidden;
}

.quick-inner {
 max-width: var(--max-width);
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.quick-image {
 width: 100%;
 max-width: 480px;
 margin-bottom: 50px;
}

.quick-image img {
 width: 100%;
 height: auto;
 display: block;
}

.quick-text-box {
 display: flex;
 flex-direction: column;
 align-items: center;
}

.quick-main-title {
  font-size: 52px;
  font-weight: 900;
  color: #333;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.quick-impact-text {
  font-size: 64px;
  font-weight: 900;
  color: #333;
  letter-spacing: -3px;
  line-height: 1.1;
  display: block;
  text-align: center;
}

.highlight-pink {
  color: #ff3b5c;
}

.dot-emphasize {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.dot-emphasize::before,
.dot-emphasize::after {
  content: '';
  position: absolute;
  top: -20px;
  width: 12px;
  height: 12px;
  background-color: #ff3b5c;
  border-radius: 50%;
}

.dot-emphasize::before {
  left: 25%;
  transform: translateX(-50%);
}

.dot-emphasize::after {
  left: 75%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .quick-feature-section { padding: 60px 20px; }
  .quick-main-title { font-size: 32px; }
  .quick-impact-text { font-size: 38px; }
  .dot-emphasize::before,
  .dot-emphasize::after { top: -15px; width: 8px; height: 8px; }
  .quick-image { max-width: 320px; }
}

/* ===== 사칭 주의 섹션 (Redesign) ===== */
.impersonation-warning {
  background-color: #fdf6f7; /* 매우 연한 핑크/그레이 배경 */
  padding: 100px 20px;
  text-align: center;
}

.warning-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.warning-icon {
  width: 140px;
  margin-bottom: 50px;
}

.warning-icon img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.warning-text {
  width: 100%;
}

.impersonation-warning .text-label {
  font-size: 24px;
  font-weight: 900;
  color: #ff3b5c;
  margin-bottom: 20px;
  display: block;
}

.impersonation-warning .text-main {
  font-size: 32px;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.impersonation-warning .text-highlight {
  font-size: 36px;
  font-weight: 900;
  color: #ff3b5c; /* 핑크빛 도는 레드 */
  margin-bottom: 0;
  letter-spacing: -2px;
  line-height: 1.2;
}

.warning-spacer {
  height: 60px;
}

.impersonation-warning .text-phone {
  font-size: 36px;
  font-weight: 900;
  color: #ff3b5c;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

/* ===== 모바일 슬림화 (480px 이하 스마트폰 최적화) ===== */
@media (max-width: 480px) {
  /* 중복 및 불필요 요소 제거 (사용자 요청) */
  .cta-image-banner,
  .hashtag-banner {
    display: none !important;
  }

  /* 섹션 상하 여백 대폭 축소 */
  .gradient-section,
  .procedure-section,
  .reviews-redesign,
  .quick-feature-section,
  .impersonation-warning,
  .info-section {
    padding: 30px 15px !important;
  }

  /* 장식용 이미지 숨기기 (슬림화) */
  .image-col,
  .reviews-left-col,
  .image-showcase {
    display: none !important;
  }

  /* 텍스트 크기 최적화 */
  .section-title-big {
    font-size: 26px !important;
    margin-bottom: 10px !important;
  }
  .section-desc-small {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }
  .quick-main-title {
    font-size: 24px !important;
  }
  .quick-impact-text {
    font-size: 32px !important;
  }
  .dot-emphasize::before,
  .dot-emphasize::after {
    top: -12px !important;
    width: 6px !important;
    height: 6px !important;
  }

  /* 히어로 섹션 폰트 및 이미지 조정 */
  .hero-brand-label {
    font-size: 42px !important; /* 72px -> 42px로 대폭 축소 */
    margin: 0 auto 10px !important;
  }
  .hero-brand-title {
    font-size: 18px !important; /* 24px -> 18px */
    letter-spacing: -1px !important;
  }
  .hero-impact-main {
    font-size: 22px !important; /* 28px -> 22px */
    line-height: 1.2 !important;
  }
  .hero-impact-top {
    font-size: 14px !important;
  }
  .hero-hashtags span {
    font-size: 11px !important;
    padding: 3px 8px !important;
  }
  .hero-top-info p {
    font-size: 10px !important;
  }
  .hero-image {
    max-width: 280px !important; /* 사용자 요청에 따라 280px로 크게 확대 */
    margin-bottom: 20px !important;
  }

  /* 사칭 주의 섹션 슬림화 */
  .impersonation-warning .text-label { font-size: 18px !important; }
  .impersonation-warning .text-main { font-size: 16px !important; }
  .impersonation-warning .text-highlight { font-size: 20px !important; }
  .impersonation-warning .text-phone { font-size: 20px !important; }
  .warning-spacer { height: 20px !important; }
  .warning-icon { width: 60px !important; margin-bottom: 20px !important; }

  /* 한 칸 아래로 요청받았던 부분들 모바일 여백 조정 */
  .section-title-big br { display: none; } /* 모바일에서는 추가 줄바꿈 제거 */
  .reviews-header .gold-stars { width: 180px !important; }
}

/* ===== Board Page Styles (NEW) ===== */
.board-page {
  padding-top: 150px; /* 헤더 공간 여유 있게 확보 */
  padding-bottom: 80px;
  background: #fff;
  min-height: 70vh;
}

.board-page .page-header {
  text-align: center;
  margin-bottom: 60px;
}

.board-page .page-title {
  font-size: 42px;
  font-weight: 900;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.board-page .page-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ff3b5c; /* 브랜드 포인트 컬러 */
  border-radius: 2px;
}

.board-page .page-subtitle {
  font-size: 18px;
  color: #888;
  font-weight: 500;
}

.board-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* KBoard Theme Integration */
#kboard-default-list .kboard-list table {
  border-top: 3px solid #ff3b5c !important;
}

#kboard-default-list .kboard-list table thead tr {
  background-color: #fcfcfc !important;
}

#kboard-default-list .kboard-pagination .active a {
  background: #ff3b5c !important;
  border-color: #ff3b5c !important;
}

#kboard-default-list .kboard-control .kboard-button-small,
#kboard-default-list .kboard-control .kboard-button-medium {
  background: #ff3b5c !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  .board-page { padding-top: 100px; }
  .board-page .page-title { font-size: 32px; }
  .board-page .page-subtitle { font-size: 15px; }
}

/* ===== Advantages Section Styles (NEW) ===== */
.advantages-section {
  padding: 100px 20px;
  background-color: #fff;
}

.advantages-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-main {
  font-size: 38px;
  font-weight: 900;
  color: #222;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
}

.section-desc {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.advantage-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.advantage-card:hover {
  background: #fff;
  border-color: #ffb3c6;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(247, 0, 66, 0.08);
}

.adv-icon {
  font-size: 48px;
  margin-bottom: 25px;
}

.adv-title {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  line-height: 1.3;
  margin-bottom: 20px;
  word-break: keep-all;
}

.adv-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  word-break: keep-all;
}

/* ===== FAQ Section Styles (NEW) ===== */
.faq-section {
  padding: 100px 20px;
  background-color: #f9fbfc;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-icon-top {
  width: 120px;
  margin: 0 auto 30px;
}

.faq-icon-top img {
  width: 100%;
  height: auto;
}

.faq-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #222;
  letter-spacing: -1.5px;
  margin-bottom: 15px;
}

.faq-subtitle {
  color: #666;
  font-size: 18px;
  font-weight: 500;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-trigger {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-q {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-color);
  margin-right: 15px;
}

.faq-question-text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.faq-arrow {
  font-size: 12px;
  color: #ccc;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.active {
  border-color: var(--brand-color);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
}

.faq-answer-content {
  padding: 30px;
  border-top: 1px solid #f5f5f5;
  display: flex;
  gap: 15px;
}

.faq-a {
  font-size: 20px;
  font-weight: 900;
  color: #555;
  line-height: 1.2;
}

.faq-answer-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .advantages-section { padding: 60px 20px; }
  .section-title-main { font-size: 28px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 20px; }
  .advantage-card { padding: 30px 20px; }
  .adv-icon { font-size: 40px; margin-bottom: 15px; }
  .adv-title { font-size: 18px; }

  .faq-section { padding: 60px 20px; }
  .faq-icon-top { width: 80px; }
  .faq-trigger { padding: 20px; }
  .faq-question-text { font-size: 16px; }
  .faq-answer-content { padding: 20px; }
  .faq-answer-content p { font-size: 15px; }
}

/* ===== Navigation Consultation Button Enhancements ===== */
.nav-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f70042, #ff004c);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(247, 0, 66, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: consultPulse 2s infinite;
}

.nav-consult-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(247, 0, 66, 0.6);
    background: linear-gradient(135deg, #ff004c, #f70042);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Mobile Drawer Consultation Button */
.nav-consult-item {
    margin: 20px 15px 10px;
}

.nav-consult-drawer-btn {
    display: flex !important;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f70042, #ff004c) !important;
    color: #fff !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    box-shadow: 0 4px 15px rgba(247, 0, 66, 0.4);
    justify-content: center;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: consultPulse 2s infinite;
}

@keyframes consultPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 0, 66, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(247, 0, 66, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 0, 66, 0);
        transform: scale(1);
    }
}
