:root{--build-id:"eff4edaf-3c54-471b-be4a-e58859f46435";}
@charset "UTF-8";

/* ========================================
   색상 변수 (C20)
   ======================================== */
:root {
  --primary: #dc2626;
  --bg: #fee2e2;
  --text: #991b1b;
  --accent: #ef4444;
  --heading: var(--text);
  --link: var(--text);
}

/* ========================================
   기본 설정 및 폰트 (F3)
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

/* ========================================
   헤딩 스타일 (H10)
   ======================================== */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* ========================================
   링크 스타일
   ======================================== */
a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

a:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ========================================
   Skip to Content 링크
   ======================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   컨테이너 (S09)
   ======================================== */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6.5rem 0;
}

/* ========================================
   헤더 및 네비게이션 (N05)
   ======================================== */
header {
  background: rgba(254, 226, 226, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--primary);
}

.header-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  opacity: 1;
}

/* 햄버거 메뉴 (모바일) */
.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 2px solid var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 400px;
  }

  nav ul {
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
}

/* ========================================
   히어로 섹션 (L05 - 슬라이드형 히어로)
   ======================================== */
.hero-section {
  background: linear-gradient(135deg, #fee2e2 0%, #fee2e2 100%);
  padding: 5rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-visual svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* ========================================
   버튼 스타일 (B10)
   ======================================== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 1.125rem 2.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}

.btn-primary:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ========================================
   인트로 섹션
   ======================================== */
.intro-section {
  background: #fff;
}

.intro-section p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ========================================
   탭 구조 (L05)
   ======================================== */
.benefits-section {
  background: var(--bg);
}

.tab-container {
  margin-top: 3rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.tab-button {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 1rem;
}

.tab-button:hover,
.tab-button.active {
  background: var(--primary);
  color: #fff;
}

.tab-button:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s;
}

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

.tab-panel h3 {
  margin-bottom: 1rem;
}

.tab-panel p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ========================================
   2열 그리드 (L05)
   ======================================== */
.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ========================================
   카드 스타일 (K10)
   ======================================== */
.feature-card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.65;
}

/* ========================================
   페이지 헤더
   ======================================== */
.page-header {
  background: var(--bg);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text);
}

/* ========================================
   컨텐츠 섹션
   ======================================== */
.content-section {
  background: #fff;
}

.content-section p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ========================================
   체크리스트
   ======================================== */
.checklist {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.check-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.check-symbol {
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.check-content {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.check-content strong {
  color: var(--primary);
  font-weight: 700;
}

/* ========================================
   Values Grid
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.value-card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.value-card svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   Process List
   ======================================== */
.process-list {
  list-style: none;
  counter-reset: step-counter;
  margin-top: 2.5rem;
}

.process-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 2.5rem;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.process-list strong {
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

/* ========================================
   연락처 섹션
   ======================================== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  margin-top: 3rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.info-text strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-text p {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.contact-visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ========================================
   FAQ Simple
   ======================================== */
.faq-simple {
  margin-top: 4rem;
}

.faq-item {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 1.5rem;
}

.faq-item strong {
  display: block;
  color: var(--primary);
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.65;
}

/* ========================================
   Feature Detail List
   ======================================== */
.feature-detail-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.detail-card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.detail-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.detail-card p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ========================================
   비교 테이블
   ======================================== */
.compare-section {
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  font-size: 1rem;
}

.compare-table thead {
  background: var(--primary);
  color: #fff;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #ddd;
}

.compare-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

@media (max-width: 768px) {
  .compare-table {
    font-size: 0.875rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.75rem;
  }
}

/* ========================================
   Specs Section
   ======================================== */
.specs-section {
  background: var(--bg);
}

.specs-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.specs-list li {
  background: #fff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
  font-size: 1rem;
  line-height: 1.65;
}

.specs-list strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .specs-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   팁 섹션
   ======================================== */
.tip-item {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 2.5rem;
}

.tip-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.tip-item p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ========================================
   Care Section
   ======================================== */
.care-list {
  list-style: none;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.care-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.care-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.25rem;
}

.wash-steps {
  list-style: none;
  counter-reset: wash-counter;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.wash-steps li {
  counter-increment: wash-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.wash-steps li::before {
  content: counter(wash-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ========================================
   Packing Tips
   ======================================== */
.packing-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5rem;
}

.packing-card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.packing-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.packing-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.packing-card strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .packing-tips {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   Q&A List
   ======================================== */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.qa-item {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.75rem;
  border-left: 4px solid var(--primary);
}

.qa-item strong {
  display: block;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.qa-item p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ========================================
   CTA 섹션 (L05 - 스티키 CTA)
   ======================================== */
.cta-section {
  background: var(--bg);
  padding: 5rem 0;
}

.cta-box {
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 1rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  margin-bottom: 1.25rem;
}

.cta-box p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ========================================
   푸터
   ======================================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  color: #fff;
  font-size: 0.9375rem;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

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

/* ========================================
   문서 컨테이너 (Privacy/Terms)
   ======================================== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 2rem;
}

.doc-container p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.doc-container a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}