/* ==========================================================================
   무결종합청소 (MUGYEOL) Premium Landing Page Style
   Brand Signature: Deep Navy (#1a2026) & Matte Gold (#fcb240)
   Concept: Sanitation Engineering & Zero Defect Architectural Finishing
   ========================================================================== */

:root {
  /* Brand Colors */
  --color-bg-base: #0c1015;
  --color-bg-navy: #141b22;
  --color-bg-card: #1a222c;
  --color-bg-card-hover: #222c38;
  --color-bg-darker: #090d11;
  --color-bg-elevated: #1f2833;

  /* Gold Accents */
  --gold-primary: #fcb240;
  --gold-light: #fed27f;
  --gold-dark: #d88b15;
  --gold-gradient: linear-gradient(135deg, #FFF6D3 0%, #FFD043 45%, #FFA000 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(255, 208, 67, 0.18) 0%, rgba(255, 160, 0, 0.05) 100%);
  --gold-border: rgba(252, 178, 64, 0.35);
  --gold-glow: 0 0 25px rgba(252, 178, 64, 0.28);
  --border-gold: rgba(252, 178, 64, 0.35);
  --border-color: rgba(255, 255, 255, 0.12);

  /* Neutral & Text Colors */
  --text-white: #ffffff;
  --text-primary: #f0f3f6;
  --text-secondary: #9da8b6;
  --text-muted: #657385;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);

  /* Functional */
  --color-success: #10b981;
  --color-danger: #ef4444;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition: var(--transition-normal);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  /* Layout */
  --header-height: 80px;
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 135px;
  font-size: 16px;
  background-color: var(--color-bg-base);
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  background-color: var(--color-bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 76px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.max-w-800 {
  max-width: 860px !important;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

.bg-darker {
  background-color: var(--color-bg-darker);
}

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

/* Typography Helpers */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFFBEB 0%, #FFE082 25%, #FFCA28 65%, #FFA000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  -webkit-text-fill-color: transparent;
  color: #FFCA28;
  display: inline-block;
  font-weight: 800;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 202, 40, 0.35));
}

.highlight-text {
  color: var(--gold-primary);
  font-weight: 800;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0f14;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(252, 178, 64, 0.25);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 178, 64, 0.45);
  background: linear-gradient(135deg, #fff1b8 0%, #fcb240 60%, #e08e0e 100%);
}

.shadow-gold {
  box-shadow: 0 8px 24px rgba(252, 178, 64, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.08rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-banner {
  background: linear-gradient(90deg, #101720 0%, #1a222c 50%, #101720 100%);
  border-bottom: 1px solid rgba(252, 178, 64, 0.2);
  padding: 10px 0;
  font-size: 0.88rem;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.banner-badge {
  background: var(--gold-gradient);
  color: #0b0f14;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.banner-text {
  color: var(--text-secondary);
}

.banner-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.banner-cta {
  color: var(--gold-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
}

.banner-cta:hover {
  color: var(--text-white);
  text-decoration: underline;
}

/* ==========================================================================
   Header & Navigation (2-Row Layout like Ondaclean)
   ========================================================================== */
.header-placeholder {
  display: none;
  width: 100%;
}

.site-header {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #181f25;
  backdrop-filter: blur(16px);
  z-index: 1000;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  will-change: transform;
}

/* When scrolled down past top banner, header becomes fixed to viewport */
.site-header.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background-color: rgba(24, 31, 37, 0.98);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.7);
}

/* While actively scrolling down, smoothly hide header above viewport */
.site-header.is-fixed.header-hidden {
  transform: translateY(-100%) !important;
  box-shadow: none;
  pointer-events: none;
}

/* When scrolling pauses or scrolling up, smoothly slide header down into view */
.site-header.is-fixed.header-visible {
  transform: translateY(0) !important;
  pointer-events: auto;
}

.site-header.scrolled {
  background-color: rgba(24, 31, 37, 0.98);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.7);
}

/* Row 1: Logo & Actions */
.header-top-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  background-color: #181f25;
  transition: padding var(--transition-fast);
}

.site-header.scrolled .header-top-row {
  padding: 10px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-fast);
}

.site-header.scrolled .logo-img {
  height: 36px;
}

/* Row 2: Navigation Links (Ondaclean 2-row style) */
.header-nav-row {
  background: #181f25;
  border-bottom: 1px solid rgba(252, 178, 64, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.nav-desktop {
  width: 100%;
}

.nav-desktop .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 600;
  color: #c0ccdc;
  padding: 13px 4px;
  position: relative;
  letter-spacing: -0.3px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px 2px 0 0;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(252, 178, 64, 0.08);
  border: 1px solid rgba(252, 178, 64, 0.2);
}

.btn-tel:hover {
  background: rgba(252, 178, 64, 0.16);
  color: var(--gold-light);
}

.btn-mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  cursor: pointer;
}

.btn-mobile-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.btn-mobile-menu.active span:nth-child(1), .btn-mobile-menu.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.btn-mobile-menu.active span:nth-child(2), .btn-mobile-menu.open span:nth-child(2) {
  opacity: 0;
}
.btn-mobile-menu.active span:nth-child(3), .btn-mobile-menu.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer - Complete Fullscreen Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #121820;
  border-bottom: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active,
.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden !important;
  touch-action: none;
}

.mobile-drawer-header {
  flex-shrink: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background-color: #182028;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-logo {
  display: flex;
  align-items: center;
}

.drawer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.btn-drawer-close {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-primary);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-drawer-close:hover,
.btn-drawer-close:active {
  color: var(--gold-light);
  background: rgba(252, 178, 64, 0.18);
  border-color: var(--gold-primary);
}

.mobile-drawer-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer .mobile-auth-wrap {
  margin-bottom: 4px;
}

.mobile-drawer .mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer .mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.15s ease;
}

.mobile-drawer .mobile-nav-links a i {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.15s ease;
}

.mobile-drawer .mobile-nav-links a.active,
.mobile-drawer .mobile-nav-links a:active {
  color: var(--gold-light);
  background: rgba(252, 178, 64, 0.1);
  border-color: rgba(252, 178, 64, 0.3);
}

.mobile-drawer .mobile-nav-links a.active i,
.mobile-drawer .mobile-nav-links a:active i {
  color: var(--gold-light);
  transform: translateX(3px);
}

.mobile-drawer .mobile-menu-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  background: #0f151c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-tel-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(252, 178, 64, 0.12);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-weight: 700;
}

/* ==========================================================================
   SECTION 01: Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: url('assets/images/hero_marble.jpg') no-repeat center center / cover;
  padding: 100px 0 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(20, 27, 34, 0.6) 0%, rgba(12, 16, 21, 0.94) 75%, rgba(10, 14, 18, 0.98) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(252, 178, 64, 0.1);
  border: 1px solid rgba(252, 178, 64, 0.3);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px var(--gold-primary); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-white);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #c0cbdb;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 70px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(20, 27, 34, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 8px;
}

.stat-plus, .stat-unit {
  color: var(--gold-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.stat-label span {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   SECTION 02: Philosophy (격차의 선언)
   ========================================================================== */
.philosophy-section {
  background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-navy) 100%);
  position: relative;
}

.statement-banner {
  background: url('assets/images/office_luxury.jpg') no-repeat center center / cover;
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(252, 178, 64, 0.2);
}

.statement-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 20, 26, 0.95) 0%, rgba(14, 20, 26, 0.85) 60%, rgba(14, 20, 26, 0.92) 100%);
}

.statement-copy {
  position: relative;
  z-index: 1;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-white);
  margin-bottom: 24px;
}

.statement-desc {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  color: #b0c0d4;
  line-height: 1.8;
  max-width: 900px;
}

.statement-desc strong {
  color: var(--gold-light);
  font-weight: 600;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-hover), var(--gold-glow);
  background: var(--color-bg-card-hover);
}

.featured-card {
  border-color: rgba(252, 178, 64, 0.4);
  background: linear-gradient(180deg, rgba(252, 178, 64, 0.06) 0%, rgba(26, 34, 44, 1) 100%);
}

.value-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--gold-gradient);
  color: #0c1015;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(252, 178, 64, 0.1);
  border: 1px solid rgba(252, 178, 64, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.value-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.value-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   SECTION 03: Identity (무결의 본질)
   ========================================================================== */
.meaning-cards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.meaning-card {
  background: var(--color-bg-navy);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  transition: all var(--transition-normal);
}

.meaning-card:hover {
  border-color: rgba(252, 178, 64, 0.4);
  box-shadow: var(--shadow-card);
}

.meaning-card.gold-border {
  border-color: rgba(252, 178, 64, 0.4);
  background: linear-gradient(135deg, rgba(252, 178, 64, 0.05) 0%, rgba(20, 27, 34, 0.95) 60%);
}

.meaning-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kanji {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.kanji-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.meaning-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.meaning-point i {
  color: var(--gold-primary);
}

.meaning-body p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
}

.brand-persona-banner {
  background: rgba(252, 178, 64, 0.08);
  border: 1px solid rgba(252, 178, 64, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.persona-icon {
  font-size: 2rem;
  color: var(--gold-primary);
}

.persona-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.persona-text strong {
  font-size: 1.05rem;
  color: var(--text-white);
}

.persona-text span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SECTION 04: Services & Domain
   ========================================================================== */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #0b0f14;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(252, 178, 64, 0.28);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-hover);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 16, 21, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(252, 178, 64, 0.3);
}

.card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-list li {
  font-size: 0.86rem;
  color: #bac7d5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-list li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.card-bottom {
  padding-top: 14px;
}

.card-inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.92rem;
  transition: gap var(--transition-fast);
}

.card-inquiry-btn:hover {
  color: var(--gold-light);
  gap: 12px;
}

.additional-services-bar {
  background: var(--color-bg-navy);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.add-label {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 0.84rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   SECTION 05: Interactive Before & After
   ========================================================================== */
.ba-selector-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.ba-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--color-bg-navy);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
  font-size: 0.94rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.ba-tab-btn:hover {
  color: var(--text-white);
  border-color: rgba(252, 178, 64, 0.3);
}

.ba-tab-btn.active {
  background: var(--gold-gradient);
  color: #0c1015;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(252, 178, 64, 0.3);
}

.ba-viewer-container {
  max-width: 960px;
  margin: 0 auto 60px;
}

.ba-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(252, 178, 64, 0.3);
}

.ba-panel {
  position: absolute;
  position: relative;
  margin: 0;
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ba-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-badge {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.15s ease;
}

.badge-before {
  left: 16px;
  background: rgba(220, 38, 38, 0.85);
  color: #fff;
}

.badge-after {
  right: 16px;
  background: var(--gold-gradient);
  color: #0c1015;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 10;
}

.handle-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0c1015;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(252, 178, 64, 0.5);
  font-size: 0.75rem;
}

.ba-info-box {
  background: var(--color-bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 16px;
}

.ba-info-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.ba-info-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Proof Gallery Grid */
.proof-gallery-header {
  margin-bottom: 24px;
}

.proof-gallery-header h3 {
  font-size: 1.4rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.proof-gallery-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.proof-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item:hover {
  border-color: var(--gold-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.gallery-caption {
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 06: Infra & Crew
   ========================================================================== */
.infra-inner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.infra-lead {
  font-size: 1.15rem;
  color: #b8c7da;
  line-height: 1.8;
  margin-bottom: 32px;
}

.infra-lead strong {
  color: var(--gold-light);
}

.infra-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.infra-point-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.infra-point-item:hover {
  border-color: var(--gold-border);
}

.point-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(252, 178, 64, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.point-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.point-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.crew-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(252, 178, 64, 0.25);
  margin-bottom: 16px;
}

.crew-main-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

.crew-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(14, 19, 24, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 178, 64, 0.4);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.crew-badge-float i {
  font-size: 1.6rem;
  color: var(--gold-primary);
}

.crew-badge-float strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.crew-badge-float span {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.crew-sub-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sub-img-box {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 130px;
  border: 1px solid var(--border-subtle);
}

.sub-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-img-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 18, 0.9) 100%);
  padding: 14px 10px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* ==========================================================================
   SECTION 07: 5-Phase Process
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 40px;
  position: relative;
}

.process-step {
  background: var(--color-bg-navy);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-hover);
}

.step-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: rgba(252, 178, 64, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 16px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.process-step:hover .step-icon {
  background: var(--gold-gradient);
  color: #0b0f14;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-guarantee {
  background: rgba(252, 178, 64, 0.08);
  border: 1px solid rgba(252, 178, 64, 0.3);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 2rem;
  color: var(--gold-primary);
}

.guarantee-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.guarantee-text span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SECTION 08: Testimonials & Reviews
   ========================================================================== */
.testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.testi-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testi-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}

.testi-rating {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testi-content {
  font-size: 1rem;
  line-height: 1.75;
  color: #e2e8f0;
  margin-bottom: 24px;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(252, 178, 64, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Real Reviews Screenshot Slider */
.real-reviews-wrap {
  background: var(--color-bg-navy);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 30px;
}

.real-reviews-header {
  margin-bottom: 24px;
}

.real-reviews-header h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mobile-review-br {
  display: none;
}

.real-reviews-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.real-reviews-slider-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.real-reviews-slider-track::-webkit-scrollbar {
  height: 6px;
}

.real-reviews-slider-track::-webkit-scrollbar-thumb {
  background: rgba(252, 178, 64, 0.3);
  border-radius: 3px;
}

.review-thumb-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  height: 220px;
  transition: all var(--transition-fast);
}

.review-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition-fast);
  padding: 8px;
  text-align: center;
}

.review-thumb-item:hover .zoom-overlay {
  opacity: 1;
}

.review-thumb-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   SECTION 09: FAQ (자주 묻는 질문)
   ========================================================================== */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: rgba(252, 178, 64, 0.4);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 600;
}

.accordion-header i {
  color: var(--gold-primary);
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height var(--transition-normal), visibility var(--transition-normal);
  background: rgba(0, 0, 0, 0.2);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  visibility: visible;
}

.accordion-body p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.accordion-body strong {
  color: var(--gold-light);
}

/* ==========================================================================
   SECTION 10: Fast Inquiry Form
   ========================================================================== */
.inquiry-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.inquiry-headline {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 16px;
}

.inquiry-sub {
  font-size: 1.05rem;
  color: #b0c0d4;
  line-height: 1.7;
  margin-bottom: 36px;
}

.inquiry-sub strong {
  color: var(--gold-light);
}

.inquiry-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.perk-item i {
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-top: 2px;
}

.perk-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 2px;
}

.perk-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.quick-call-card {
  background: var(--color-bg-navy);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.call-badge {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.call-phone-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.call-phone-wrap i {
  font-size: 1.6rem;
  color: var(--gold-primary);
}

.call-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

.call-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Inquiry Form Card */
.inquiry-form-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(252, 178, 64, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.form-header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.form-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.required {
  color: var(--gold-primary);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.input-with-icon input,
.quote-form textarea {
  width: 100%;
  background: rgba(14, 19, 24, 0.8);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 13px 16px 13px 44px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.quote-form textarea {
  padding: 14px 16px;
  resize: vertical;
}

.input-with-icon input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(252, 178, 64, 0.18);
  background: rgba(14, 19, 24, 1);
}

.input-with-icon input::placeholder,
.quote-form textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Service Chips Grid */
.service-chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.chip-item {
  position: relative;
  cursor: pointer;
}

.chip-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  background: rgba(14, 19, 24, 0.7);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-align: center;
}

.chip-item input[type="checkbox"]:checked + .chip-label {
  background: rgba(252, 178, 64, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-weight: 700;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Privacy Checkbox */
.form-privacy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input {
  accent-color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

.field-error {
  font-size: 0.8rem;
  color: var(--color-danger);
  display: none;
}

.form-group.has-error .field-error,
.form-privacy.has-error .field-error {
  display: block;
}

.form-group.has-error input {
  border-color: var(--color-danger);
}

.btn-submit {
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ==========================================================================
   Modals & Lightbox
   ========================================================================== */
.modal-backdrop,
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.show,
.lightbox-backdrop.show {
  display: flex;
}

.modal-card {
  background: var(--color-bg-navy);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-icon {
  font-size: 3.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.modal-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.modal-summary {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  text-align: left;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Lightbox (Album Slider) */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2020;
  padding: 0;
  line-height: 1;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: #0b0f14;
  border-color: var(--gold-primary);
  transform: scale(1.08);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(18, 24, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2020;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  user-select: none;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav-btn:hover,
.lightbox-nav-btn:active {
  background: var(--gold-primary);
  color: #0b0f14;
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  user-select: none;
  pointer-events: auto;
}

.lightbox-counter {
  margin-top: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    background: rgba(18, 24, 32, 0.88);
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }
  .lightbox-content img {
    max-height: 75vh;
  }
}

/* ==========================================================================
   Floating Action Bar & Circle Dials
   ========================================================================== */
.floating-cta-bar {
  display: none !important;
}

/* Circle Action Buttons */
.quick-floating-circle {
  position: fixed;
  right: 24px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 850;
}

.circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
  position: relative;
}

.circle-btn:hover {
  transform: scale(1.1);
}

.kakao-circle {
  background: #FEE500;
  color: #191919;
  border: 1px solid #e5ce00;
}

.kakao-circle:hover {
  background: #fada00;
  color: #000;
  box-shadow: 0 6px 22px rgba(254, 229, 0, 0.45);
}

.tel-circle {
  background: var(--gold-gradient);
  color: #0b0f14;
}

.quote-circle {
  background: #1e293b;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
}

.top-circle {
  background: #11171f;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  display: none;
}

.top-circle.show {
  display: flex;
}

.circle-btn .tooltip {
  position: absolute;
  right: 60px;
  background: rgba(14, 19, 24, 0.95);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.circle-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #080c10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 110px;
  color: var(--text-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 56px;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #8fa0b5;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 380px;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.sns-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.sns-link:hover {
  background: var(--gold-gradient);
  color: #0b0f14;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.info-list, .footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.info-list strong {
  color: var(--text-primary);
  margin-right: 6px;
}

.info-list a:hover,
.footer-nav a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .core-values-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .proof-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .real-reviews-slider-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 992px) {
  html {
    scroll-padding-top: 75px;
  }
  .header-nav-row {
    display: none;
  }
  .header-top-row {
    padding: 10px 0;
  }
  .logo-img {
    height: 36px;
  }
  .btn-mobile-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .top-banner {
    padding: 8px 0;
  }

  .banner-inner {
    justify-content: flex-start;
    gap: 9px;
  }

  .banner-badge {
    flex: 0 0 auto;
    font-size: 0.62rem;
  }

  .banner-text {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .banner-cta {
    display: none;
  }

  .pc-break {
    display: none;
  }
  .btn-tel span {
    display: none;
  }
  
  /* Ultra-Compact Section Paddings & Headers */
  .section-padding {
    padding: 28px 0;
  }
  .section-title {
    font-size: 1.45rem;
    margin-bottom: 6px;
  }
  .gold-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF59D 20%, #FFD54F 60%, #FFB300 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    -webkit-text-fill-color: transparent;
    color: #FFD54F;
    font-weight: 800;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 8px rgba(255, 213, 79, 0.5));
  }
  .section-subtitle {
    font-size: 0.82rem;
    margin-bottom: 16px;
    line-height: 1.45;
  }

  /* Hide Redundant Mid-Section CTA Banners on Mobile (Sticky Bottom Bar Already Covers CTAs) */
  .section-context-cta {
    display: none !important;
  }

  /* 1. Hero Section - Ultra Compact */
  .hero-section {
    padding: 82px 0 26px;
    min-height: auto;
  }
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .hero-subtitle {
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* 2. Philosophy - Statement Banner & Horizontal Swipe Values */
  .statement-banner {
    padding: 18px 14px;
    margin-bottom: 16px;
  }
  .statement-copy {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .statement-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .core-values-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 2px 2px 10px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .core-values-grid::-webkit-scrollbar {
    height: 3px;
  }
  .core-values-grid::-webkit-scrollbar-thumb {
    background: rgba(252, 178, 64, 0.35);
    border-radius: 2px;
  }
  .value-card {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: center;
    padding: 16px 14px;
  }
  .value-title {
    font-size: 0.98rem;
    margin-bottom: 6px;
  }
  .value-desc {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  /* 3. Name Meaning - 2-Column Compact Grid */
  .meaning-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 10px;
  }
  .meaning-card {
    padding: 12px 10px;
  }
  .meaning-header .kanji {
    font-size: 1.25rem;
    margin-bottom: 2px;
  }
  .meaning-header .kanji-sub {
    font-size: 0.74rem;
  }
  .meaning-body .meaning-point {
    font-size: 0.72rem;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .meaning-body p {
    font-size: 0.7rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .brand-persona-banner {
    padding: 10px 12px;
    gap: 8px;
  }
  .persona-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  .persona-text strong {
    font-size: 0.78rem;
  }
  .persona-text span {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  /* 4. Services Grid - 2 Column Compact Layout */
  .service-filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -16px 12px;
    padding: 0 16px 6px;
    scrollbar-width: none;
  }
  .service-filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 6px 11px;
    font-size: 0.76rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .service-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
  }
  .service-card .card-img-wrap {
    height: 100px;
  }
  .service-card .card-tag {
    font-size: 0.62rem;
    padding: 2px 5px;
    top: 5px;
    left: 5px;
  }
  .service-card .card-content {
    padding: 10px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .service-card .service-num {
    font-size: 0.62rem;
    margin-bottom: 2px;
  }
  .service-card .card-title {
    font-size: 0.88rem;
    margin-bottom: 4px;
    line-height: 1.25;
  }
  .service-card .card-desc {
    font-size: 0.72rem;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #cbd5e1;
  }
  .service-card .spec-list {
    display: none;
  }
  .service-card .card-bottom {
    margin-top: auto;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .service-card .card-inquiry-btn {
    font-size: 0.74rem;
    padding: 3px 0;
    width: 100%;
    justify-content: space-between;
  }
  .additional-services-bar {
    padding: 10px 12px;
    margin-top: 12px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .add-label {
    font-size: 0.76rem;
  }
  .add-tags {
    justify-content: center;
    gap: 4px;
  }
  .add-tags .badge-chip {
    font-size: 0.7rem;
    padding: 2px 7px;
  }

  /* 5. Before & After Showcase - Compact */
  .ba-selector-wrap {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -16px 12px;
    padding: 0 16px 6px;
    scrollbar-width: none;
  }
  .ba-selector-wrap::-webkit-scrollbar {
    display: none;
  }
  .ba-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 6px 10px;
    font-size: 0.76rem;
  }
  .ba-viewer-container {
    margin-bottom: 18px;
    width: 100%;
  }
  .ba-comparison {
    width: 100%;
    border-radius: 12px;
  }
  .ba-badge {
    top: 10px;
    padding: 5px 9px;
    font-size: 0.68rem;
  }
  .badge-before {
    left: 10px;
  }
  .badge-after {
    right: 10px;
  }
  .ba-info-box {
    padding: 12px;
  }
  .ba-info-title {
    font-size: 0.88rem;
  }
  .ba-info-text {
    font-size: 0.76rem;
    line-height: 1.45;
  }
  .proof-gallery-header {
    margin: 32px 10px 14px;
  }
  .proof-gallery-header h3 {
    font-size: 1.05rem;
  }
  .proof-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin: 0 10px 36px;
  }
  .gallery-item {
    height: auto;
  }
  .gallery-item img {
    display: block;
    height: 105px;
  }
  .gallery-caption {
    font-size: 0.68rem;
    padding: 4px 6px;
  }

  /* 6. Infra & Crew - Compact Single Card */
  .infra-inner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .infra-lead {
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .infra-points {
    gap: 8px;
    margin: 12px 0;
  }
  .infra-point-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .point-icon {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
  }
  .point-text h4 {
    font-size: 0.86rem;
  }
  .point-text p {
    display: none; /* Hide paragraph on mobile to avoid tall height */
  }
  .infra-cta {
    display: none; /* Floating bar covers this */
  }
  .crew-photo-card {
    max-height: 180px;
    overflow: hidden;
  }
  .crew-sub-visual {
    display: none; /* Sub photos hidden on mobile */
  }

  /* 7. Process Steps - Horizontal Swipe Stepper (5-Phase) */
  .process-steps {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 2px 2px 12px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .process-steps::-webkit-scrollbar {
    height: 3px;
  }
  .process-steps::-webkit-scrollbar-thumb {
    background: rgba(252, 178, 64, 0.35);
    border-radius: 2px;
  }
  .process-step {
    flex: 0 0 76%;
    min-width: 76%;
    scroll-snap-align: start;
    padding: 16px 14px;
  }
  .step-title {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }
  .step-desc {
    font-size: 0.78rem;
    line-height: 1.45;
  }
  .process-guarantee {
    padding: 12px;
    gap: 8px;
    margin-top: 12px;
  }
  .guarantee-text strong {
    font-size: 0.84rem;
  }
  .guarantee-text span {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  /* 8. Testimonials & Feedback - Horizontal Swipe Cards */
  .testimonial-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 2px 2px 12px;
    margin: 0 -16px 16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-cards-grid::-webkit-scrollbar {
    height: 3px;
  }
  .testimonial-cards-grid::-webkit-scrollbar-thumb {
    background: rgba(252, 178, 64, 0.35);
    border-radius: 2px;
  }
  .testi-card {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: center;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
  }
  .testi-rating {
    font-size: 0.82rem;
    margin-bottom: 8px;
    gap: 3px;
  }
  .testi-content {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 10px;
    flex-grow: 1;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .author-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.74rem;
    flex-shrink: 0;
  }
  .author-info {
    min-width: 0;
  }
  .author-info strong {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .author-info span {
    font-size: 0.68rem;
    color: #8fa0b5;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .real-reviews-wrap {
    padding: 16px 12px;
  }
  .real-reviews-header {
    margin-bottom: 12px;
  }
  .real-reviews-header h3 {
    font-size: 0.94rem;
    line-height: 1.35;
    gap: 7px;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
  }
  .real-reviews-header h3 i {
    margin-top: 2px;
  }
  .mobile-review-br {
    display: block;
  }
  .real-reviews-header p {
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .real-reviews-slider-track {
    grid-template-columns: repeat(6, 110px);
    overflow-x: auto;
    gap: 8px;
  }
  .review-thumb-item {
    height: 140px;
  }
  .review-bottom-cta {
    display: none; /* Redundant CTA block on mobile */
  }

  /* 9. FAQ - Compact & Fully Hidden when collapsed */
  .accordion-item {
    margin-bottom: 8px;
  }
  .accordion-header {
    padding: 14px 12px;
    font-size: 0.88rem;
    gap: 10px;
  }
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    visibility: hidden;
  }
  .accordion-item.active .accordion-body {
    max-height: 500px;
    visibility: visible;
  }
  .accordion-body p {
    padding: 0 12px 14px;
    font-size: 0.8rem;
    line-height: 1.55;
  }

  /* 10. Inquiry Section & Floating Bar */
  .inquiry-intro {
    margin-bottom: 14px;
  }
  .inquiry-headline {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .inquiry-sub {
    font-size: 0.78rem;
    margin-bottom: 12px;
  }
  .inquiry-perks {
    display: none; /* Hide bulky perks on mobile so user immediately reaches quote form! */
  }
  .quick-call-card {
    padding: 10px 12px;
    margin-bottom: 12px;
  }
  .call-badge {
    font-size: 0.72rem;
  }
  .call-number {
    font-size: 1.25rem;
  }
  .call-subtext {
    font-size: 0.7rem;
  }
  .inquiry-form-card {
    padding: 18px 14px;
  }
  .service-chips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .chip-item .chip-label {
    padding: 8px 6px;
    font-size: 0.76rem;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  /* Quick Floating Action Dial on Mobile */
  .quick-floating-circle {
    bottom: 20px;
    right: 16px;
    gap: 10px;
    z-index: 950;
  }
  .circle-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  /* Mobile Footer - Compact & Optimized */
  .site-footer {
    padding: 32px 0 20px;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-logo img {
    height: 38px;
    margin-bottom: 8px;
  }
  .footer-tagline {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .footer-sns {
    gap: 10px;
  }
  .sns-link {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .footer-heading {
    font-size: 0.82rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }
  .info-list {
    gap: 6px;
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .footer-services .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 10px;
    font-size: 0.78rem;
  }
  .footer-bottom {
    padding-top: 14px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .footer-notice {
    font-size: 0.68rem;
    line-height: 1.35;
  }
}

/* ==========================================================================
   New Features: Auth, Quick Quote, Contextual CTAs, and Modals
   ========================================================================== */

/* Auth Header Controls */
.auth-header-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-auth-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.user-session-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(252, 178, 64, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
}

.user-name-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-name-text i {
  color: var(--gold-primary);
}

.btn-my-quotes-pill {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-my-quotes-pill:hover {
  background: var(--gold-primary);
  color: #0c1015;
}

.btn-admin-pill {
  background: var(--gold-gradient);
  color: #0c1015 !important;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(252, 178, 64, 0.4);
  transition: var(--transition);
}

.btn-admin-pill:hover {
  transform: translateY(-1px);
}

.btn-logout-icon {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 2px 4px;
  transition: var(--transition);
}

.btn-logout-icon:hover {
  color: #fb7185;
}

/* Mobile Auth Wrap */
.mobile-auth-wrap {
  padding: 14px 16px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.mobile-auth-logged {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-auth-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-auth-btns {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.mobile-auth-btns .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.8rem;
  padding: 6px 10px;
}

/* Contextual Section CTAs */
.section-context-cta {
  margin-top: 48px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(26, 32, 38, 0.95), rgba(12, 16, 21, 0.95));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.context-cta-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.context-cta-content h4 strong {
  color: var(--gold-primary);
}

.context-cta-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.review-bottom-cta {
  margin-top: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-align: center;
}

.review-cta-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.review-cta-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.review-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Modals Enhancements */
.modal-close-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-icon:hover {
  color: #fff;
  transform: scale(1.1);
}

.modal-card.auth-card {
  max-width: 440px;
  padding: 0;
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
}

.auth-tab-btn {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.auth-tab-btn.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
  background: rgba(252, 178, 64, 0.05);
}

.auth-pane {
  display: none;
  padding: 28px 24px;
}

.auth-pane.active {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

.auth-header-text {
  text-align: center;
  margin-bottom: 20px;
}

.auth-header-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.auth-header-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-auth-submit {
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 6px;
}

.demo-admin-box {
  margin-top: 12px;
  padding: 14px;
  background: rgba(252, 178, 64, 0.08);
  border: 1px dashed var(--gold-primary);
  border-radius: 8px;
  text-align: center;
}

.btn-demo-admin {
  background: var(--gold-gradient);
  color: #0c1015;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(252, 178, 64, 0.3);
  transition: var(--transition);
}

.btn-demo-admin:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(252, 178, 64, 0.4);
}

.demo-admin-box small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* Wide Modals */
.modal-card.wide-card {
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px 28px;
}

/* My Quotes List */
.my-quotes-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.my-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0c1015;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.my-quotes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 380px;
  overflow-y: auto;
}

.my-quote-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.my-quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.my-quote-id {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: 'Montserrat', sans-serif;
}

.my-quote-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.my-quote-status.pending {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.my-quote-status.calling {
  background: rgba(252, 178, 64, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(252, 178, 64, 0.3);
}

.my-quote-status.confirmed {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.my-quote-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.my-quote-details strong {
  color: #fff;
}

.my-quote-memo-box {
  background: rgba(252, 178, 64, 0.06);
  border-left: 3px solid var(--gold-primary);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #f1f5f9;
}

/* Quick Quote Modal */
.quick-quote-header {
  text-align: center;
  margin-bottom: 24px;
}

.badge-gold {
  display: inline-block;
  background: rgba(252, 178, 64, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.quote-modal-card .quote-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* Review Write Form */
.select-full {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.select-full:focus {
  border-color: var(--gold-primary);
}

.star-rating-select {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.star-rating-select label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gold-primary);
}

/* Admin Link Subtle in Footer */
.admin-link-subtle {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--transition);
}

.admin-link-subtle:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section-context-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .chips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .my-quote-details {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CUSTOMER REVIEW BOARD PAGE (Ondaclean Style Board)
   ========================================================================== */
.review-board-main {
  padding: 40px 0 100px;
  min-height: calc(100vh - 400px);
  background: var(--color-bg-base);
}

.review-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.review-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.review-breadcrumb a:hover {
  color: var(--gold-primary);
}

/* Hero & Stats Summary */
.review-page-hero {
  background: linear-gradient(135deg, rgba(20, 27, 34, 0.95) 0%, rgba(14, 20, 26, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.review-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.review-hero-text h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.review-hero-text p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(252, 178, 64, 0.12);
  border: 1px solid rgba(252, 178, 64, 0.3);
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 600;
}

.review-stats-card {
  background: rgba(14, 20, 26, 0.7);
  border: 1px solid rgba(252, 178, 64, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.big-rating {
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.big-rating .score {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.big-rating .stars {
  color: var(--gold-primary);
  font-size: 1.05rem;
  margin: 6px 0 4px;
}

.big-rating .count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sub-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.sub-stat-row span {
  color: var(--text-secondary);
}

.sub-stat-row strong {
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
}

/* Category Filter Tabs */
.board-category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.board-tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.board-tab-btn:hover {
  background: rgba(252, 178, 64, 0.1);
  color: var(--text-white);
  border-color: rgba(252, 178, 64, 0.3);
}

.board-tab-btn.active {
  background: var(--gold-primary);
  color: #141b22;
  border-color: var(--gold-primary);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(252, 178, 64, 0.3);
}

/* Board Action Toolbar */
.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.board-total-count {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.board-total-count strong {
  color: var(--gold-primary);
}

.board-sort-select {
  padding: 8px 14px;
  background: rgba(20, 27, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
}

.board-sort-select:focus {
  border-color: var(--gold-primary);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.board-search-box {
  position: relative;
  width: 240px;
}

.board-search-box input {
  width: 100%;
  padding: 10px 36px 10px 14px;
  background: rgba(20, 27, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.board-search-box input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(252, 178, 64, 0.2);
}

.board-search-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #141b22;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(252, 178, 64, 0.25);
  text-decoration: none;
}

.btn-write-review:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 18px rgba(252, 178, 64, 0.4);
}

/* Review Cards Grid */
.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.review-post-card {
  background: rgba(20, 27, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.review-post-card:hover {
  border-color: rgba(252, 178, 64, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.card-thumb-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  background: #0e141a;
  overflow: hidden;
}

.card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.review-post-card:hover .card-thumb-wrap img {
  transform: scale(1.03);
}

.card-photo-count-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-body-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-service-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(252, 178, 64, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(252, 178, 64, 0.3);
}

.card-rating-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.card-post-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-post-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-author-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(252, 178, 64, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.card-meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Empty State */
.board-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: rgba(20, 27, 34, 0.5);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.board-empty-state i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.board-empty-state p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Pagination */
.board-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.page-btn.active {
  background: var(--gold-primary);
  color: #141b22;
  border-color: var(--gold-primary);
  font-weight: 700;
}

/* ==========================================================================
   REVIEW WRITE FORM VIEW
   ========================================================================== */
.review-write-container {
  background: rgba(20, 27, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-modal);
}

.write-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.write-header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.write-header p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.review-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.review-label .req {
  color: var(--gold-primary);
  margin-left: 2px;
}

.review-input,
.review-select,
.review-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(14, 20, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.review-input:focus,
.review-select:focus,
.review-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(252, 178, 64, 0.2);
}

.review-textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.6;
}

/* Star Rating Selector */
.star-rating-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(14, 20, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.star-rating-stars {
  display: flex;
  gap: 6px;
}

.star-rating-stars i {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.15s, color 0.15s;
}

.star-rating-stars i.active,
.star-rating-stars i:hover {
  color: var(--gold-primary);
}

.star-rating-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Image Upload Area */
.image-upload-wrapper {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  background: rgba(14, 20, 26, 0.4);
  text-align: center;
  transition: var(--transition);
}

.image-upload-wrapper.dragover {
  border-color: var(--gold-primary);
  background: rgba(252, 178, 64, 0.05);
}

.upload-dropzone {
  cursor: pointer;
}

.upload-dropzone i {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.upload-dropzone p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.upload-dropzone span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.image-preview-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.preview-thumb-item {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.btn-remove-thumb {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.75);
  color: #ff5555;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Checkbox Groups */
.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

/* Write Actions */
.write-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   REVIEW DETAIL VIEW
   ========================================================================== */
.review-detail-container {
  background: rgba(20, 27, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-modal);
}

.detail-post-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.detail-top-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.detail-post-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 16px;
}

.detail-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.detail-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-meta-left .author-tag {
  color: var(--text-white);
  font-weight: 700;
}

.detail-meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
}

/* Photo Gallery in Detail */
.detail-photos-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.detail-photo-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.detail-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.detail-photo-card:hover img {
  transform: scale(1.04);
}

.detail-photo-card .zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}

.detail-photo-card:hover .zoom-hint {
  opacity: 1;
}

.detail-post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #d1d9e2;
  white-space: pre-line;
  margin-bottom: 36px;
  padding: 10px 0;
}

.detail-verified-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(252, 178, 64, 0.08);
  border: 1px solid rgba(252, 178, 64, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 36px;
}

.detail-verified-banner i {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.detail-verified-banner p {
  font-size: 0.88rem;
  color: var(--gold-light);
  line-height: 1.4;
}

/* Detail Actions */
.detail-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.detail-actions-left {
  display: flex;
  gap: 10px;
}

.detail-actions-right {
  display: flex;
  gap: 10px;
}

/* Comment Section */
.detail-comment-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.comment-item {
  background: rgba(14, 20, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
}

.comment-item.is-admin {
  border-color: rgba(252, 178, 64, 0.3);
  background: rgba(252, 178, 64, 0.04);
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.comment-author {
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-badge-admin {
  background: var(--gold-primary);
  color: #141b22;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.comment-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.comment-text {
  color: #c0cbdb;
  font-size: 0.92rem;
  line-height: 1.6;
}

.comment-write-box {
  background: rgba(14, 20, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
}

.comment-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-write-box textarea {
  width: 100%;
  min-height: 80px;
  margin-bottom: 12px;
}

/* Password Modal for Edit/Delete */
.password-check-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.password-check-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.password-modal-content {
  background: #141b22;
  border: 1px solid rgba(252, 178, 64, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-modal);
  text-align: center;
}

.password-modal-content h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.password-modal-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.password-modal-content input {
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 4px;
}

.password-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 768px) {
  .board-category-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -16px 16px;
    padding: 0 16px 8px;
    scrollbar-width: none;
  }
  .board-category-tabs::-webkit-scrollbar {
    display: none;
  }
  .board-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .review-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-page-hero {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .review-stats-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px;
  }

  .big-rating {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .board-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 16px;
  }

  .toolbar-left,
  .toolbar-right {
    justify-content: space-between;
    width: 100%;
  }

  .board-search-box {
    width: 100%;
  }

  .btn-write-review {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 0.88rem;
  }

  /* Compact Horizontal-Style Card on Mobile */
  .review-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-post-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 105px;
    border-radius: 10px;
  }

  .review-post-card .card-thumb-wrap {
    width: 105px;
    height: auto;
    flex-shrink: 0;
  }

  .review-post-card .card-body-content {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }

  .review-post-card .card-top-meta {
    margin-bottom: 4px;
  }

  .review-post-card .card-service-badge {
    font-size: 0.68rem;
    padding: 2px 6px;
  }

  .review-post-card .card-rating-stars i {
    font-size: 0.72rem;
  }

  .review-post-card .card-post-title {
    font-size: 0.88rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
  }

  .review-post-card .card-post-excerpt {
    font-size: 0.74rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    color: #9da8b6;
  }

  .review-post-card .card-footer-info {
    font-size: 0.7rem;
    padding-top: 4px;
  }

  .review-write-container,
  .review-detail-container {
    padding: 20px 16px;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .comment-inputs-row {
    grid-template-columns: 1fr;
  }

  /* Review detail: put the post first and keep every interaction thumb-friendly. */
  body.review-detail-active .review-breadcrumb,
  body.review-detail-active .review-page-hero {
    display: none;
  }

  .review-detail-section {
    scroll-margin-top: 86px;
    padding: 12px 0 32px;
  }

  .review-detail-container {
    padding: 22px 16px;
    border-radius: 14px;
    box-shadow: none;
  }

  .detail-post-header {
    padding-bottom: 18px;
    margin-bottom: 20px;
  }

  .detail-top-badges {
    gap: 8px;
    margin-bottom: 10px;
  }

  .detail-post-title {
    font-size: 1.35rem;
    line-height: 1.45;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    word-break: keep-all;
  }

  .detail-post-meta {
    align-items: flex-start;
    gap: 8px;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .detail-meta-left,
  .detail-meta-right {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .detail-meta-right {
    color: var(--text-muted);
  }

  .detail-photos-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78%, 1fr);
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 2px 1px 12px;
    margin: 0 -2px 20px;
    scrollbar-width: thin;
  }

  .detail-photo-card {
    height: min(62vw, 240px);
    scroll-snap-align: start;
  }

  .detail-photo-card .zoom-hint,
  .detail-photo-card:hover .zoom-hint {
    inset: auto 0 0;
    min-height: 42px;
    padding: 8px 10px;
    justify-content: flex-start;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    opacity: 1;
    font-size: 0.76rem;
  }

  .detail-post-body {
    padding: 0;
    margin-bottom: 26px;
    font-size: 0.98rem;
    line-height: 1.85;
    word-break: keep-all;
  }

  .detail-verified-banner {
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    margin-bottom: 24px;
  }

  .detail-verified-banner i {
    font-size: 1.2rem;
    padding-top: 2px;
  }

  .detail-verified-banner strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .detail-verified-banner p {
    font-size: 0.76rem;
    margin-top: 4px;
  }

  .detail-actions-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0;
    margin-bottom: 28px;
  }

  .detail-actions-left {
    grid-column: 1 / -1;
  }

  .detail-actions-left .btn,
  .detail-actions-right .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.86rem;
  }

  .detail-actions-right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .detail-comment-section h3 {
    font-size: 1.08rem;
    margin-bottom: 14px;
  }

  .comment-list {
    gap: 10px;
    margin-bottom: 18px;
  }

  .comment-item,
  .comment-write-box {
    padding: 14px;
  }

  .comment-header {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  .comment-author {
    gap: 6px;
    min-width: 0;
  }

  .comment-date {
    flex: 0 0 auto;
    font-size: 0.72rem;
  }

  .comment-text {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .comment-write-box textarea {
    min-height: 110px;
  }

  .comment-write-box .btn {
    width: 100%;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
