:root {
  --primary-color: #0056b3;
  --primary-dark: #004494;
  --primary-light: #f0f7ff;
  --text-color: #2c3e50;
  --text-light: #596b7e;
  --white: #ffffff;
  --border-color: #e1e8ed;

  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.1);

  --radius-md: 12px;
  --radius-lg: 20px;
}

@font-face {
    font-family: 'Dangdanghae';
    font-weight: 400;
    src: url('../font/Dangdanghae-v2.0.woff2') format('woff2'),url('../font/Dangdanghae-v2.0.woff') format('woff');
}
@font-face {
    font-family: 'Ohsquare';
    font-weight: 400;
    src: url('../font/Ohsquare-v2.0.woff2') format('woff2'),url('../font/Ohsquare-v2.0.woff') format('woff');
}
@font-face {
    font-family: 'OhsquareAir';
    font-weight: 400;
    src: url('../font/OhsquareAir-v2.0.woff2') format('woff2'),url('../font/OhsquareAir-v2.0.woff') format('woff');
}

@font-face {
    font-family: 'PROSlimMax';
    font-weight: 400;
    src: url('../font/PROSlimMax.woff2') format('woff2'),url('../font/PROSlimMax.woff') format('woff');
}

@font-face {
    font-family: 'PROSlimFit';
    font-weight: 400;
    src: url('../font/PROSlimFit.woff2') format('woff2'),url('../font/PROSlimFit.woff') format('woff');
}

@font-face {
    font-family: 'SsukssukRegular';
    font-weight: 400;
    src: url('../font/SsukssukRegular.woff2') format('woff2'),url('../font/SsukssukRegular.woff') format('woff');
}

@font-face {
    font-family: 'Simplehae';
    font-weight: 400;
    src: url('../font/Simplehae-v2.0.woff2') format('woff2'),url('../font/Simplehae-v2.0.woff') format('woff');
}
@font-face {
    font-family: 'SsurroundAir';
    font-weight: 400;
    src: url('../font/SsurroundAir-v1.1.woff2') format('woff2'),url('../font/SsurroundAir-v1.1.woff') format('woff');
}

@font-face {
    font-family: 'Ssurround';
    font-weight: 400;
    src: url('../font/Ssurround-v2.0.woff2') format('woff2'),url('../font/Ssurround-v2.0.woff') format('woff');
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #f0f2f5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
}
.logo {
  font-family: 'Ohsquare', sans-serif;
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--primary-color);
  font-size: 50px;  
  letter-spacing: -2px;
}
.logo-img {
  height: 100px;
  width: auto;
  margin-right: -35px;
  margin-left: -10px;
  object-fit: contain;
  display: block;
}

/* Header Kakao */
.header-kakao-link { text-decoration: none; display: block; }
.header-kakao-banner {
  background-color: #FAE100;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  gap: 10px;
  height: 50px;
}
.header-kakao-banner:hover { transform: translateY(-2px); }
.header-kakao-icon {
  background-color: #3C1E1E;
  color: #FAE100;
  font-weight: 900;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 12px;
}
.header-kakao-title {
  color: #3C1E1E;
  font-weight: 800;
  font-size: 0.95rem;
}
.header-kakao-arrow {
  color: #cfa800;
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .header-kakao-banner { padding: 8px; border-radius: 50%; }
  .header-kakao-title, .header-kakao-arrow { display: none; }
  .logo { font-size: 34px; }
  .logo-img { height: 70px; margin-right: -24px; }
}

/* Hero (Aurora) */
.hero {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: auroraFlow 15s ease infinite;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: white;
}
@keyframes auroraFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

@font-face {
  font-family: 'Yangjae Baekdu';
  src: url('../font/양재백두체B.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.hero-text {
  flex: 1;
  max-width: 1000px;
  text-align: left;
  padding-left: 20px;
  margin-right: -150px;
  z-index: 5;
}
.main-headline {
  font-family: 'Ssurround', serif;
  font-size: 3.3rem;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
  letter-spacing: -2px;
  font-weight: normal;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  word-break: keep-all;
  display: flex;
  flex-direction: column;
}
.headline-line { 
	font-family: 'Dangdanghae', serif;
	line-height: 1.1; position: relative; z-index: 1; 
}
.headline-line.line-middle { margin-top: -55px; z-index: 2; }
.headline-line.line-bottom { margin-top: -70px; z-index: 3; }
.text-suffix { margin-left: -15px; display: inline-block; }

.emergency-icon {
  height: 3.5em;
  vertical-align: middle;
  padding-top: 14px;
  margin: 25px 10px;
  filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.7));
  transform: translateY(-16px) scale(1.1);
}

.hero-checklist { list-style: none; padding: 0; margin-bottom: 30px; }
.hero-checklist li {
font-family: 'Ohsquare', serif;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.check-img-icon {
  width: 27px;
  height: 27px;
  object-fit: contain;
  margin-right: 12px;
}

/* Hero Image + Floating orbit */
.hero-image-container {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -100px;
  z-index: 4;
  position: relative;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-floating-objects {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}
.orbit-wrapper {
  position: absolute;
  top: 0; left: 0;
  opacity: 0.9;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}
.floating-obj.spin-obj {
  display: block;
  width: 100%;
  height: 100%;
  animation: spin-self 12s linear infinite, breathing 5s ease-in-out infinite;
}
@keyframes orbit-cw {
  from { transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
}
@keyframes orbit-ccw {
  from { transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
  to   { transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
}
@keyframes spin-self { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes breathing { 0%,100% { scale: 1; } 50% { scale: 1.2; } }

.obj-1 { --orbit-radius: 220px; width: 70px; margin-left: -35px; margin-top: -35px; animation: orbit-cw 20s linear infinite; animation-delay: -5s; }
.obj-2 { --orbit-radius: 260px; width: 50px; margin-left: -25px; margin-top: -25px; animation: orbit-ccw 25s linear infinite; animation-delay: -2s; }
.obj-3 { --orbit-radius: 300px; width: 70px; margin-left: -35px; margin-top: -35px; animation: orbit-cw 30s linear infinite; animation-delay: -10s; }
.obj-4 { --orbit-radius: 240px; width: 70px; margin-left: -35px; margin-top: -35px; animation: orbit-ccw 18s linear infinite; animation-delay: -1s; opacity: 0.8; }
.obj-5 { --orbit-radius: 320px; width: 80px; margin-left: -40px; margin-top: -40px; animation: orbit-cw 28s linear infinite; animation-delay: -15s; }
.obj-6 { --orbit-radius: 210px; width: 70px; margin-left: -35px; margin-top: -35px; animation: orbit-ccw 15s linear infinite; animation-delay: -8s; opacity: 0.7; }
.obj-7 { --orbit-radius: 280px; width: 70px; margin-left: -35px; margin-top: -35px; animation: orbit-cw 22s linear infinite; animation-delay: -12s; }
.obj-8 { --orbit-radius: 340px; width: 50px; margin-left: -25px; margin-top: -25px; animation: orbit-ccw 35s linear infinite; animation-delay: -20s; opacity: 0.6; }
.obj-9 { --orbit-radius: 250px; width: 50px; margin-left: -25px; margin-top: -25px; animation: orbit-cw 24s linear infinite; animation-delay: -6s; }

@media (max-width: 768px) {
  .hero { padding: 40px 0; }
  .hero-content { flex-direction: column; text-align: center; gap: 30px; }
  .hero-text {
    text-align: center;
    max-width: 100%;
    padding-left: 0;
    margin-right: 0;
  }
  .main-headline { font-size: 2.0rem; }
  .hero-checklist li { font-size: 1.1rem; justify-content: center; }
  .hero-image-container { margin-left: 0; }
  .hero-logo-img { max-height: 250px; }
}

/* Section title */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.3;
  letter-spacing: -1px;
}
.brand-emphasis {
  font-family: 'OhsquareAir', sans-serif;
  display: block;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: -20px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.15);
  line-height: 0.9;
  letter-spacing: -2px;
}
.highlight-blue { color: var(--primary-color); }

/* Process */
.process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #e6f0ff 100%);
}
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.process-step {
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}
.process-step:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.icon-box-img {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}
.step-img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.process-step:hover .step-img { transform: scale(1.1); }
.process-step h3 { font-size: 1.3rem; color: var(--text-color); margin-bottom: 12px; font-weight: 800; }
.process-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.4; word-break: keep-all; }
.process-arrow {
  font-size: 2rem;
  color: #8ab6d6;
  font-weight: 900;
  padding-bottom: 40px;
  text-shadow: 2px 2px 0 #fff;
}
@media (max-width: 768px) {
  .process-flow { flex-direction: column; gap: 30px; }
  .process-arrow { transform: rotate(90deg); padding-bottom: 0; margin: -10px 0; }
  .process-step { width: 100%; }
}

/* Live Status */
.live-status-section {
  padding: 60px 0 100px;
  background-color: #f9fbfd;
}
.live-status-title { margin-bottom: 40px; line-height: 1.3; }
.status-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #edf2f7;
}
.table-header {
  display: flex;
  background-color: #f1f3f5;
  padding: 15px 20px;
  font-weight: 700;
  color: #495057;
  font-size: 0.95rem;
  border-bottom: 1px solid #e9ecef;
}
.table-body-container {
  height: 300px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.table-body-scroll { animation: scrollUp 60s linear infinite; }
.table-row {
  display: flex;
  padding: 15px 20px;
  border-bottom: 1px solid #f8f9fa;
  align-items: center;
  transition: background-color 0.2s;
}
.table-row:hover { background-color: #f8f9fa; }
.col { flex: 1; text-align: center; font-size: 0.95rem; color: #333; }
.col.date { flex: 0.8; display: flex; justify-content: center; align-items: center; }
.col.product { flex: 1.5; text-align: left; padding-left: 20px; }
.col.amount { font-weight: 700; color: #333; }
.badge-date {
  background-color: #f3f4f6;
  color: #4b5563;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.badge { padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.badge-green { background-color: #e6fcf5; color: #0ca678; border: 1px solid #c3fae8; }
.badge-gray  { background-color: #f1f3f5; color: #868e96; border: 1px solid #e9ecef; }
.badge-orange{ background-color: #fff4e6; color: #fd7e14; border: 1px solid #ffe8cc; }

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Review */
.review-section { padding: 60px 0; background-color: #ffffff; }
.review-section .section-title { margin-bottom: 80px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.review-card:hover { transform: translateY(-3px); }
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; color: #333; }
.review-stars { color: #ff9800; font-size: 0.9rem; }
.review-text { font-size: 0.85rem; color: #666; line-height: 1.5; }
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* Q&A */
.qa-chat-section { padding: 60px 0 80px; background-color: #f0f2f5; }
.qa-chat-section .section-title { margin-bottom: 80px; }
.chat-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-row { display: flex; align-items: center; gap: 12px; width: 100%; }
.chat-row.user { justify-content: flex-start; }
.chat-row.admin { justify-content: flex-end; }
.chat-icon { width: 120px; height: 120px; border-radius: 0; object-fit: cover; }

.chat-bubble {
  max-width: 70%;
  padding: 18px 24px;
  border-radius: 24px;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  word-break: keep-all;
  font-weight: 500;
  letter-spacing: -0.3px;
  border-bottom: 2px solid rgba(0,0,0,0.05);
}
.chat-bubble:hover { transform: translateY(-2px); }

.user-bubble {
  background-color: #ffffff;
  color: #444;
  border-top-left-radius: 4px;
  border: 1px solid rgba(0,0,0,0.05);
  margin-left: 10px;
}
.user-bubble::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #ffffff;
  filter: drop-shadow(-1px 1px 1px rgba(0,0,0,0.05));
}

.admin-bubble {
  background: linear-gradient(145deg, #0056b3, #004494);
  color: #ffffff;
  border-top-right-radius: 4px;
  border: none;
  margin-right: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.admin-bubble::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #004494;
}
@media (max-width: 480px) {
  .chat-container { padding: 0 10px; }
  .chat-bubble { max-width: 75%; font-size: 0.95rem; padding: 10px 14px; }
  .chat-icon { width: 35px; height: 35px; }
}

/* Consultation */
.consultation-section { padding: 80px 0; background-color: #f5f5f5; }
.consultation-form-card.revamped {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  padding: 0;
  overflow: hidden;
  border: 1px solid #e1e8ed;
}
.form-header-dark {
  background-color: #0056b3;
  padding: 25px 0;
  text-align: center;
  border-bottom: 1px solid #004494;
}
.form-header-dark h3 { color: #ffffff; font-size: 1.8rem; margin: 0; font-weight: 700; }
.form-body { padding: 30px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; color: var(--text-color); }
.required { color: #e74c3c; }

.consultation-form-card.revamped input[type="text"],
.consultation-form-card.revamped input[type="tel"],
.consultation-form-card.revamped select {
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  color: #333;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}
.consultation-form-card.revamped input:focus,
.consultation-form-card.revamped select:focus {
  background-color: #fff;
  border-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0,86,179,0.15);
  transform: translateY(-2px);
}

/* Phone */
.phone-inputs { display: flex; gap: 10px; }
.phone-inputs select { flex: 1; }
.phone-inputs input { flex: 1.5; text-align: center; }

/* Radio buttons */
.radio-buttons-group { display: flex; gap: 12px; background-color: transparent; }
.radio-buttons-group input[type="radio"] { display: none; }
.radio-buttons-group label {
  flex: 1;
  text-align: center;
  background-color: #f0f2f5;
  color: #555 !important;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 12px;
  border: 1px solid #d1d9e0;
  font-weight: 500;
}
.radio-buttons-group input[type="radio"]:checked + label {
  background-color: #0056b3;
  color: #ffffff !important;
  font-weight: 800;
  border-color: #0056b3;
  box-shadow: 0 4px 10px rgba(0,86,179,0.25);
  transform: translateY(-2px);
}

/* Privacy */
.privacy-label{
	margin:5px;
}
.privacyCheck{
	margin:5px;
	}

.checkbox-group.dark-theme-check {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 0 5px;
}
.badge-privacy {
  background-color: #f0f2f5;
  color: #333;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-right: 8px;
  border: 1px solid #d1d9e0;
}
.checkbox-group.dark-theme-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #6c5ce7;
  cursor: pointer;
}

/* Submit */
.btn-submit-purple {
  width: 100%;
  padding: 20px;
  background-color: #6c5ce7;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  margin-top: 25px;
  transition: transform 0.2s, background-color 0.3s;
  box-shadow: 0 8px 15px rgba(108,92,231,0.3);
}
.btn-submit-purple:hover {
  background-color: #5b4cc4;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(108,92,231,0.4);
}
.btn-submit-purple:active { transform: translateY(-1px); }
.btn-submit-purple.is-loading { opacity: 0.7; cursor: not-allowed; }

/* Bottom Kakao banner */
.kakao-banner-link {
  text-decoration: none;
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 20px auto 0;
}
.kakao-banner {
  background-color: #FAE100;
  border-radius: 24px;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(250,225,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.kakao-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250,225,0,0.4);
}
.kakao-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
}
.kakao-icon-bubble {
  background-color: #3C1E1E;
  color: #FAE100;
  font-weight: 900;
  font-size: 1.5rem;
  padding: 10px 16px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.kakao-text-group { text-align: left; flex: 0 1 auto; padding-left: 20px; }
.kakao-title { color: #3C1E1E; font-weight: 800; font-size: 1.4rem; letter-spacing: -0.5px; line-height: 1.2; }
.kakao-subtitle { font-size: 1.0rem; color: #3C1E1E; opacity: 0.9; margin-top: 4px; font-weight: 600; }
.kakao-arrow { font-size: 1.5rem; color: #3C1E1E; font-weight: 900; margin-left: auto; flex: 0 0 auto; }

@media (max-width: 768px) {
  .consultation-form-card.revamped { max-width: 94%; }
  .form-body { padding: 20px; }
  .kakao-banner-link { max-width: 94%; }
  .kakao-title { font-size: 1.2rem; }
  .kakao-subtitle { font-size: 0.85rem; }
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
}

.badge-privacy {
  background-color: #f0f2f5;
  color: #333;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  border: 1px solid #d1d9e0;

  cursor: pointer;
  user-select: none;

  /* button 기본 스타일 제거 */
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
  font-family: inherit;
}

.badge-privacy:focus {
  outline: 2px solid rgba(0, 86, 179, 0.35);
  outline-offset: 2px;
}


.privacy-modal-body {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 420px;
  overflow: auto;
  padding-right: 6px;
}
.privacy-modal-body h4 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #2c3e50;
}
.privacy-modal-body p {
  margin: 6px 0 10px;
  color: #444;
}
.privacy-modal-body ul {
  margin: 0 0 10px 18px;
  color: #444;
}