@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #f7f8fa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #edf0f3;
  --color-gold: #9b794f;
  --color-gold-hover: #ba976c;
  --color-gold-dark: #6e5233;
  --color-text-main: #111111;
  --color-text-sub: #444446;
  --color-text-muted: #8e8e93;
  --border-gold: rgba(155, 121, 79, 0.2);
  --border-gold-strong: rgba(155, 121, 79, 0.45);
  --border-dark: #e5e5ea;
  --btn-gold-text: #ffffff;
  --header-bg: rgba(247, 248, 250, 0.85);
  --hero-overlay: linear-gradient(180deg, rgba(247,248,250,0.15) 0%, rgba(247,248,250,0.7) 100%);
  --about-overlay: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(247,248,250,0.7) 100%);
  --map-overlay: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(247,248,250,0.7) 100%);
  --modal-overlay-bg: rgba(255, 255, 255, 0.5);
  --gold-glow: rgba(155, 121, 79, 0.15);
  --gold-glow-hover: rgba(155, 121, 79, 0.3);
  --gold-tint-bg: rgba(155, 121, 79, 0.06);
  --gold-tint-light: rgba(155, 121, 79, 0.04);
  --cta-gradient: linear-gradient(135deg, #edf0f3 0%, #e8e0d8 100%);
  
  --hero-img-opacity: 0.35;
  --hero-img-filter: grayscale(1) brightness(1.1) contrast(0.9);
  --about-img-opacity: 0.3;
  --about-img-filter: grayscale(1) brightness(1.1) contrast(0.9);
  
  --font-ko: 'Noto Sans KR', sans-serif;
  --font-en: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  font-family: var(--font-ko);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all; 
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.text-gold { color: var(--color-gold) !important; }
.text-center { text-align: center; }
.font-en { font-family: var(--font-en); }

.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition-smooth);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-text-main);
}

.logo-sub {
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: 1px;
  margin-top: -4px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  color: var(--color-text-sub);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  color: var(--color-text-main);
  cursor: pointer;
}

footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 40px;
  font-size: 13px;
  color: var(--color-text-sub);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info-brand .footer-logo {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}

.footer-info-brand p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
}

.footer-legal-notice {
  background-color: var(--gold-tint-light);
  border: 1px solid var(--border-gold);
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.footer-legal-notice span {
  font-weight: 700;
  color: var(--color-gold);
}

.footer-warn-text {
  color: #d9534f;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--btn-gold-text);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--gold-glow-hover);
}

.btn-outline {
  border: 1px solid var(--border-gold-strong);
  color: var(--color-gold);
  padding: 13px 27px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background-color: var(--gold-tint-bg);
  border-color: var(--color-gold-hover);
  color: var(--color-gold-hover);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/hero_luxury.png');
  background-size: cover;
  background-position: center;
  opacity: var(--hero-img-opacity);
  filter: var(--hero-img-filter);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--hero-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  text-align: center;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  word-break: keep-all; 
}

.hero-title span {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 300;
  margin-top: 12px;
  color: var(--color-gold);
}

.hero-desc {
  font-size: 16px;
  color: var(--color-text-sub);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  word-break: keep-all;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.section-title-wrap {
  margin-bottom: 50px;
}

.section-tag {
  font-size: 12px;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-card:hover {
  border-color: var(--border-gold-strong);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-image-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-dark);
  background-color: var(--bg-primary);
}

.feature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-image-wrap img {
  transform: scale(1.04);
}

.feature-info {
  padding: 30px 24px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--color-text-main);
}

.feature-card p {
  color: var(--color-text-sub);
  font-size: 14px;
  line-height: 1.7;
}

.about-hero {
  position: relative;
  padding: 110px 0;
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/about_store.png');
  background-size: cover;
  background-position: center;
  opacity: var(--about-img-opacity);
  filter: var(--about-img-filter);
  z-index: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--about-overlay);
  z-index: 2;
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro-left h2 {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.4;
  margin-bottom: 20px;
  word-break: keep-all;
}

.about-intro-left span {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--color-gold);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.about-intro-right p {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 20px;
  word-break: keep-all;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.item-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.item-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.item-image-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-dark);
  background-color: var(--bg-primary);
}

.item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.item-image-wrap img,
.feature-image-wrap img,
.process-step-img img,
.struggling-image-wrap img {
  filter: brightness(1.05) saturate(0.85);
}

.item-card:hover .item-image-wrap img {
  transform: scale(1.05);
}

.item-info {
  padding: 24px;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  word-break: keep-all;
}

.item-desc {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.6;
  margin-bottom: 20px;
  word-break: keep-all;
}

.item-badge {
  font-size: 11px;
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 500;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.location-info {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.location-item {
  margin-bottom: 30px;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-label {
  font-size: 12px;
  color: var(--color-gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.location-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.6;
  word-break: keep-all;
}

.location-btn-group {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

.location-map-wrap {
  height: 400px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 20px;
}

.notice-count {
  font-size: 14px;
  color: var(--color-text-sub);
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
}

.notice-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  border-bottom: 1px solid var(--border-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notice-table td {
  padding: 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-dark);
  color: var(--color-text-sub);
  transition: var(--transition-smooth);
}

.notice-row {
  cursor: pointer;
}

.notice-row:hover td {
  background-color: var(--gold-tint-light);
  color: var(--color-text-main);
}

.notice-title-cell {
  font-weight: 500;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-badge-pin {
  font-size: 10px;
  background-color: var(--color-gold);
  color: var(--btn-gold-text);
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 700;
}

.skeleton-row td {
  pointer-events: none;
}

.skeleton-box {
  height: 16px;
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-dark) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
}

.skeleton-box.badge {
  width: 35px;
  height: 16px;
}

.skeleton-box.title {
  width: 70%;
}

.skeleton-box.author {
  width: 60px;
}

.skeleton-box.date {
  width: 80px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.notice-form-card,
.notice-view-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 200px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
}

.notice-view-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 16px;
}

.notice-view-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.notice-view-meta span strong {
  color: var(--color-text-sub);
}

.notice-view-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-sub);
  min-height: 250px;
  white-space: pre-wrap;
}

.notice-form-download-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
}

.notice-form-download-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.notice-form-download-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.notice-form-download-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice-form-download-item {
  margin: 0;
}

.notice-form-download-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.notice-form-download-link:hover {
  border-color: var(--color-gold);
  background-color: var(--bg-secondary);
}

.notice-form-download-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-text-muted);
  flex-shrink: 0;
}

.notice-form-download-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notice-form-download-name {
  font-size: 14px;
  color: var(--color-text-main);
  line-height: 1.4;
  word-break: break-all;
}

.notice-form-download-size {
  font-size: 12px;
  color: var(--color-text-muted);
}

.notice-form-download-icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--color-text-sub);
}

.notice-form-download-link:hover .notice-form-download-icon {
  color: var(--color-gold);
}

.custom-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--modal-overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-gold-strong);
  width: 90%;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-modal-overlay.active .custom-modal-container {
  transform: scale(1);
}

.custom-modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.5px;
}

.custom-modal-close {
  font-size: 20px;
  color: var(--color-text-sub);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.custom-modal-close:hover {
  color: var(--color-gold);
}

.custom-modal-body {
  padding: 30px;
}

.consultation-choice-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consultation-choice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.consultation-choice-kakao {
  background-color: #fee500;
  color: #3c1e1e;
  border-color: #fee500;
}

.consultation-choice-kakao:hover {
  background-color: #f5dc00;
  border-color: #f5dc00;
}

.consultation-choice-phone {
  background-color: var(--color-gold);
  color: var(--btn-gold-text);
  border-color: var(--color-gold);
}

.consultation-choice-phone:hover {
  filter: brightness(1.05);
}

.consultation-choice-quote {
  background-color: var(--bg-primary);
  color: var(--color-text-main);
}

.consultation-choice-quote:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.page-fade-in {
  animation: pageFadeIn 0.4s ease-out forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; 
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border-dark);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .items-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
}

select.form-control {
  background-color: var(--bg-primary) !important;
}

.custom-modal-container [style*="background-color: var(--bg-tertiary)"] {
  background-color: var(--bg-tertiary);
}


.struggling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  perspective: 1000px;
}

.struggling-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease;
  transform-style: preserve-3d;
}

.struggling-card:hover {
  border-color: var(--color-gold);
  transform: translateZ(20px) translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(155, 121, 79, 0.12);
}

.struggling-image-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-dark);
  background-color: var(--bg-primary);
}

.struggling-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.struggling-card:hover .struggling-image-wrap img {
  transform: scale(1.04);
}

.struggling-info {
  padding: 24px 20px;
}

.struggling-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.struggling-card p {
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.struggling-solution-banner {
  background: var(--cta-gradient);
  border: 1px solid var(--border-gold-strong);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px var(--gold-glow);
}

.solution-title-wrap {
  margin-bottom: 30px;
}

.solution-badge {
  background-color: var(--color-gold);
  color: var(--btn-gold-text);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.solution-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: -0.5px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 20px 18px;
  text-align: center;
}

.solution-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.solution-item p {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.5;
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.process-step-card {
  flex: 1;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: var(--transition-smooth);
}

.process-step-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--gold-glow);
}

.process-step-badge {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 30px;
  z-index: 5;
}

.process-step-img {
  height: 220px;
  overflow: hidden;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-dark);
  padding-top: 30px; 
}

.process-step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.process-step-card:hover .process-step-img img {
  transform: scale(1.04);
}

.process-step-content {
  padding: 24px 20px;
  background-color: var(--bg-secondary);
}

.process-step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-main);
}

.process-step-content p {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.process-step-arrow {
  font-size: 24px;
  color: var(--color-gold);
  opacity: 0.7;
}

@media (max-width: 992px) {
  .struggling-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .process-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .process-step-arrow {
    transform: rotate(90deg);
    margin: 5px 0;
  }
  
  .process-step-card {
    width: 100%;
  }
}

.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

.fab-trigger {
  width: 56px;
  height: 56px;
  background-color: var(--color-gold);
  color: var(--btn-gold-text);
  border-radius: 50%;
  box-shadow: 0 4px 16px var(--gold-glow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.fab-trigger:hover {
  background-color: var(--color-gold-hover);
  transform: scale(1.05);
}

.fab-item {
  width: 46px;
  height: 46px;
  background-color: var(--bg-secondary);
  color: var(--color-gold);
  border: 1px solid var(--border-gold-strong);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: var(--transition-smooth);
  position: relative;
}

.fab-container.active .fab-item {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-container.active .fab-item:nth-child(2) {
  transition-delay: 0.05s;
}

.fab-container.active .fab-item:nth-child(3) {
  transition-delay: 0.1s;
}

.fab-container.active .fab-item:nth-child(4) {
  transition-delay: 0.15s;
}

.fab-item:hover {
  background-color: var(--gold-tint-bg);
  color: var(--color-gold-hover);
  transform: translateY(-2px);
}

.fab-item-kakao {
  background-color: #fee500;
  color: #3c1e1e;
  border-color: #fee500;
}

.fab-item-kakao:hover {
  background-color: #fed900;
  color: #3c1e1e;
  transform: translateY(-2px);
}

.fab-tooltip {
  position: absolute;
  right: 60px;
  background-color: var(--bg-secondary);
  color: var(--color-text-main);
  border: 1px solid var(--border-dark);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 500;
}

.fab-item:hover .fab-tooltip {
  opacity: 1;
}

.btn-hero-appraisal {
  background-color: #222225;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  border: 1px solid #222225;
}

.btn-hero-appraisal:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--gold-glow-hover);
}

.btn-hero-consult {
  background-color: var(--color-gold);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.btn-hero-consult:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--gold-glow-hover);
}

.btn-hero-about {
  border: 1px solid #c7c7cc;
  color: #555559;
  padding: 13px 27px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-hero-about:hover {
  background-color: #edf0f3;
  border-color: #a1a1a6;
  color: #111111;
  transform: translateY(-2px);
}


