@charset "UTF-8";

/* ==========================================================================
   미러수리 (MIRRORSURI) - 핵심 스타일 시스템
   컨셉: 신뢰감 있는 딥 블루 & 시인성 높은 오렌지 액센트 (모바일 최적화)
   ========================================================================== */

:root {
  --primary: #0f4c81;        /* 클래식 트러스트 블루 */
  --primary-dark: #092c4c;   /* 딥 네이비 */
  --primary-light: #2b70b3;  /* 브라이트 블루 */
  --accent: #ff5e00;         /* 콜투액션(CTA) 오렌지 */
  --accent-hover: #e05300;
  --secondary: #10b981;      /* 안심/성공 에메랄드 그린 */
  
  --bg-main: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  --bg-light: #f1f5f9;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-float: 0 10px 30px rgba(255, 94, 0, 0.35);

  --font-base: -apple-system, BlinkMacSystemFont, "Pretendard", "Noto Sans KR", "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px; /* 플로팅 바 공간 */
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   상단 공지 띠 배너
   ========================================================================== */
.top-notice-bar {
  background: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-notice-bar strong {
  color: #38bdf8;
}

/* ==========================================================================
   헤더 & 네비게이션
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-slogan-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-left: 4px;
  background: #eff6ff;
  padding: 3px 8px;
  border-radius: 9999px;
  white-space: nowrap;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.2s;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.25);
  transition: transform 0.2s, background-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   히어로 섹션 (Hero)
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #09233f 0%, #0b192c 100%);
  color: var(--text-white);
  padding: 60px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-media {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-img-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hero-img-card:hover img {
  transform: scale(1.03);
}

.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: #e2e8f0;
}

.hero-img-badge strong {
  color: #38bdf8;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title span.highlight {
  color: #ff9d00;
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 94, 0, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* 히어로 핵심 지표 배지 */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 12px;
  border-radius: var(--radius-md);
  text-align: center;
}

.badge-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: #38bdf8;
  display: block;
  line-height: 1.2;
}

.badge-text {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ==========================================================================
   3대 안심 약속 (신뢰 증명 섹션)
   ========================================================================== */
.promise-section {
  padding: 70px 0;
  background: #ffffff;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-tag {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

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

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

.promise-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: left;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.promise-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.promise-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.promise-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   비용 비교 섹션 (Pain Point 해결)
   ========================================================================== */
.compare-section {
  padding: 70px 0;
  background: #f1f5f9;
}

.compare-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-color);
}

.compare-col.legacy {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  opacity: 0.85;
}

.compare-col.winner {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid var(--primary-light);
  position: relative;
  box-shadow: var(--shadow-md);
}

.compare-badge-winner {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
}

.compare-col h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.compare-col .price-tag {
  font-size: 2rem;
  font-weight: 900;
  margin: 16px 0 24px;
  line-height: 1;
}

.compare-col.legacy .price-tag {
  color: #ef4444;
}

.compare-col.winner .price-tag {
  color: var(--primary);
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  margin-bottom: 14px;
  color: var(--text-main);
}

.compare-list li .icon {
  flex-shrink: 0;
  font-weight: 900;
  font-size: 1.1rem;
}

.compare-col.legacy .icon {
  color: #ef4444;
}

.compare-col.winner .icon {
  color: var(--secondary);
}

/* ==========================================================================
   주요 수리 증상 (자가진단 카드)
   ========================================================================== */
.symptom-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.symptom-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #fff;
  transition: all 0.25s;
}

.symptom-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

.symptom-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
}

.symptom-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.symptom-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.symptom-solution {
  background: var(--bg-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ==========================================================================
   출장 수리 프로세스 (4단계)
   ========================================================================== */
.process-section {
  padding: 70px 0;
  background: #0b192c;
  color: #fff;
}

.process-section .section-title {
  color: #fff;
}

.process-section .section-desc {
  color: #94a3b8;
}

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

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 16px;
}

.process-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.process-card p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ==========================================================================
   수리 가능 차종 & 지역
   ========================================================================== */
.coverage-section {
  padding: 70px 0;
  background: #ffffff;
}

.brands-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-group {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 24px 28px;
  border-radius: var(--radius-md);
}

.brand-group h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

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

.brand-tag {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ==========================================================================
   피해 예방 가이드 (주의사항)
   ========================================================================== */
.caution-section {
  padding: 70px 0;
  background: #fff5f5;
  border-top: 1px solid #fed7d7;
  border-bottom: 1px solid #fed7d7;
}

.caution-box {
  background: #fff;
  border: 1px solid #feb2b2;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  max-width: 860px;
  margin: 0 auto;
}

.caution-title {
  color: #c53030;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.caution-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.caution-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.caution-item strong {
  color: #9b2c2c;
  font-size: 1rem;
}

/* ==========================================================================
   빠른 간편 견적 접수 폼
   ========================================================================== */
.quote-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.quote-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-group label span.req {
  color: #ef4444;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #f8fafc;
  transition: border-color 0.2s, background-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(43, 112, 179, 0.15);
}

.photo-guide-banner {
  background: #eff6ff;
  border: 1px dashed #93c5fd;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: #1e40af;
  line-height: 1.5;
}

.quote-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-float);
  transition: all 0.2s;
}

.quote-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   실제 수리 전/후 (Before & After) 쇼케이스 섹션
   ========================================================================== */
.gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.before-after-container {
  max-width: 960px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.before-after-img-wrap {
  position: relative;
  width: 100%;
}

.before-after-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after-caption {
  padding: 24px 30px;
  background: #0f172a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.caption-text h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.caption-text p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* ==========================================================================
   기술력 증명 2컬럼 미디어 블록 (모터 정밀 수리 & 출장 정비)
   ========================================================================== */
.craft-section {
  padding: 80px 0;
  background: #f8fafc;
}

.craft-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.craft-row.reverse {
  direction: rtl;
}

.craft-row.reverse .craft-text {
  direction: ltr;
}

.craft-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.craft-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.craft-img-box:hover img {
  transform: scale(1.02);
}

.craft-text {
  text-align: left;
}

.craft-tag {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.craft-text h3 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.35;
  margin-bottom: 16px;
}

.craft-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.craft-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.craft-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

.craft-feat-item span.chk {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* ==========================================================================
   푸터 (Footer)
   ========================================================================== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 50px 0 30px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.6;
}

.footer-tel {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 10px 0;
}

.footer-copy {
  margin-top: 24px;
  color: #64748b;
  font-size: 0.82rem;
}

/* ==========================================================================
   모바일 하단 고정 플로팅 바 (Sticky CTA Bar)
   ========================================================================== */
.mobile-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.float-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  transition: all 0.2s;
}

.float-btn-sms {
  background: #0284c7;
  color: #fff;
}

.float-btn-call {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 94, 0, 0.3);
}

/* ==========================================================================
   반응형 미디어 쿼리 (태블릿 & 모바일)
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-btn-group {
    justify-content: center;
  }
  .craft-row, .craft-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .compare-box {
    grid-template-columns: 1fr;
  }
  .symptom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .top-notice-bar {
    font-size: 0.78rem;
    padding: 6px 0;
    line-height: 1.4;
  }
  .nav-wrap {
    height: 60px;
  }
  .logo {
    font-size: 1.15rem;
    gap: 6px;
  }
  .logo-badge {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .logo-slogan-tag {
    display: none; /* 모바일에서는 헤더 폭 확보를 위해 숨김 */
  }
  .header-cta {
    padding: 7px 12px;
    font-size: 0.84rem;
    gap: 4px;
  }
  .hero {
    padding: 36px 0 48px;
  }
  .hero-pill {
    font-size: 0.78rem;
    padding: 5px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .hero-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.02rem;
  }
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .badge-item {
    padding: 12px 8px;
  }
  .badge-num {
    font-size: 1.25rem;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .symptom-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .quote-box {
    padding: 24px 18px;
  }
}
