/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== REFACTORING UI 디자인 토큰 ===== */
:root {
  /* Grey Scale */
  --grey-050: #f7fafc;
  --grey-100: #edf2f7;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e0;
  --grey-400: #a0aec0;
  --grey-500: #718096;
  --grey-600: #4a5568;
  --grey-700: #2d3748;
  --grey-800: #1a202c;
  --grey-900: #171923;

  /* Primary Blue (prd.md: #1976D2 기반) */
  --primary-050: #e3f2fd;
  --primary-100: #bbdefb;
  --primary-200: #90caf9;
  --primary-300: #64b5f6;
  --primary-400: #42a5f5;
  --primary-500: #2196f3;
  --primary-600: #1976d2;
  --primary-700: #1565c0;
  --primary-800: #0d47a1;
  --primary-900: #0a2e6b;

  /* Accent (비교 강조용) */
  --accent-pink: #e91e63;
  --accent-pink-light: #fce4ec;
  --accent-green: #43a047;
  --accent-green-light: #e8f5e9;
  --accent-orange: #ff9800;
  --accent-orange-light: #fff3e0;
  --accent-red: #e53e3e;
  --accent-red-light: #fff5f5;

  /* Spacing Scale (4px 기반) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Border Radius (balanced) */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 10px 25px -5px rgba(25, 118, 210, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;

  /* Container */
  --max-width: 1080px;
}

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

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-800);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--primary-700);
}

ul, ol {
  list-style: none;
}

/* ===== 유틸리티 ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== 헤더 / 네비게이션 ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-700);
  white-space: nowrap;
}

.logo span {
  color: var(--grey-500);
  font-weight: 400;
  font-size: 14px;
  margin-left: var(--space-2);
}

/* 데스크탑 네비 */
.nav-desktop {
  display: none;
  gap: var(--space-1);
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.nav-desktop a:hover {
  color: var(--primary-600);
  background: var(--primary-050);
}

/* 모바일 메뉴 버튼 */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-700);
  font-size: 24px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-normal);
}

.menu-btn:hover {
  background: var(--grey-100);
}

/* 모바일 메뉴 */
.nav-mobile {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.nav-mobile a:hover {
  color: var(--primary-600);
  background: var(--primary-050);
}

/* ===== 히어로 섹션 ===== */
.hero {
  padding: var(--space-8) 0 var(--space-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.png') center/cover no-repeat;
  filter: brightness(0.55) contrast(1.6) saturate(2.2);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 46, 107, 0.55) 0%,
    rgba(25, 118, 210, 0.40) 50%,
    rgba(13, 71, 161, 0.50) 100%
  );
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 .vs {
  color: var(--primary-200);
  font-size: 24px;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto var(--space-6);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

/* 히어로 내부 버튼 오버라이드 (다크 배경 대응) */
.hero .btn-primary {
  background: #fff;
  color: var(--primary-700);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero .btn-primary:hover {
  background: var(--primary-050);
  color: var(--primary-800);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.hero .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

/* ===== 버튼 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 15px;
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: #fff;
  color: var(--primary-600);
  border: 1.5px solid var(--primary-300);
}

.btn-outline:hover {
  background: var(--primary-050);
  color: var(--primary-700);
  border-color: var(--primary-400);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-600);
  padding: var(--space-2) var(--space-4);
}

.btn-ghost:hover {
  background: var(--primary-050);
  color: var(--primary-700);
}

/* ===== 섹션 공통 ===== */
.section {
  padding: var(--space-8) 0;
}

.section-alt {
  background: var(--grey-050);
}

.section-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(227, 242, 253, 0.7) 100%),
              url('/images/section-bg.png') center/cover no-repeat;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--grey-900);
  text-align: center;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.section-subtitle {
  font-size: 15px;
  color: var(--grey-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-7);
  line-height: 1.6;
}

/* ===== 제품 소개 섹션 (뷰락쿠 / 코락쿠) ===== */
.product-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.product-img-wrap {
  background: linear-gradient(135deg, var(--primary-050), #fff);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px solid var(--primary-100);
}

.product-img-wrap img {
  max-height: 200px;
  object-fit: contain;
}

.product-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-050));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--space-2);
}

.product-brand {
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: var(--space-4);
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.meta-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) var(--space-4);
  background: var(--grey-050);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
}

.meta-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-050);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.meta-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-800);
}

/* 특징 리스트 */
.feature-list {
  margin-bottom: var(--space-5);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.feature-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.feature-item span {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.5;
}

/* 라인업 태그 */
.lineup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.lineup-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-700);
  background: var(--primary-050);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-100);
}

/* ===== 비교표 섹션 ===== */
.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(var(--space-4) * -1);
  padding: 0 var(--space-4);
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.comparison-table thead th {
  background: var(--primary-600);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: var(--space-3) var(--space-4);
  text-align: center;
  border: none;
}

.comparison-table thead th:first-child {
  background: var(--primary-700);
  text-align: left;
}

.comparison-table tbody td {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
  text-align: center;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--grey-800);
  background: var(--grey-050);
  text-align: left;
  white-space: nowrap;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: var(--primary-050);
}

.comparison-table tbody tr:hover td:first-child {
  background: var(--primary-100);
}

.table-highlight {
  background: var(--accent-green-light) !important;
  color: var(--accent-green) !important;
  font-weight: 600 !important;
}

.scroll-hint {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--grey-400);
  margin-top: var(--space-3);
}

/* ===== 복용법 / 주의사항 섹션 ===== */
.usage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.usage-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

.usage-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.usage-card h3 .icon {
  font-size: 24px;
}

.usage-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.6;
}

.usage-list li::before {
  content: '•';
  color: var(--primary-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 주의사항 경고 스타일 */
.warning-card {
  border-color: var(--accent-orange);
  border-left: 4px solid var(--accent-orange);
}

.warning-card h3 {
  color: var(--accent-orange);
}

.warning-list li::before {
  content: '⚠';
  color: var(--accent-orange);
}

/* 면책 박스 */
.disclaimer-box {
  background: var(--grey-050);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ===== 직구 가이드 섹션 ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  position: relative;
}

.step-card {
  text-align: center;
  padding: var(--space-5);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--primary-600);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--space-2);
}

.step-card p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.5;
}

/* 참고사항 */
.guide-notes {
  background: var(--primary-050);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-top: var(--space-6);
}

.guide-notes h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: var(--space-3);
}

.guide-notes li {
  font-size: 14px;
  color: var(--grey-700);
  padding: var(--space-1) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.guide-notes li::before {
  content: 'ℹ️';
  flex-shrink: 0;
}

/* ===== 상품 카드 섹션 ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.product-card-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.badge-best {
  background: var(--accent-orange);
  color: #fff;
}

.badge-popular {
  background: var(--accent-pink);
  color: #fff;
}

.badge-value {
  background: var(--accent-green);
  color: #fff;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-050), var(--grey-050));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-bottom: 1px solid var(--grey-100);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-3);
}

.product-card-body {
  padding: var(--space-4);
}

.product-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--space-1);
  line-height: 1.4;
}

.product-card-price {
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: var(--space-3);
}

.product-card .btn {
  width: 100%;
  font-size: 13px;
  padding: var(--space-2) var(--space-4);
}

/* ===== 가격 안내 섹션 ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

.pricing-card-header {
  background: var(--primary-600);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.pricing-card-header.japan {
  background: var(--accent-pink);
}

.pricing-card-header.korea {
  background: var(--primary-600);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--grey-050);
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-600);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
}

.pricing-table td {
  font-size: 13px;
  color: var(--grey-700);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--grey-100);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--primary-050);
}

/* ===== CTA 바 (하단 고정) ===== */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--grey-200);
  padding: var(--space-3) var(--space-4);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cta-bar.visible {
  transform: translateY(0);
}

.cta-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.cta-bar .btn {
  flex: 1;
  max-width: 280px;
}

/* ===== 푸터 ===== */
.footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: var(--space-7) 0 var(--space-6);
  text-align: center;
  padding-bottom: 80px; /* CTA 바 공간 확보 */
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-5);
  color: var(--grey-500);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.footer-links a {
  font-size: 13px;
  color: var(--grey-400);
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: var(--grey-600);
}

/* ===== 스크롤 애니메이션 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 반응형 (모바일 퍼스트) ===== */

/* sm: 480px+ */
@media (min-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

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

/* md: 768px+ */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }

  .header-inner {
    height: 64px;
  }

  .nav-desktop {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .hero {
    padding: var(--space-9) 0 var(--space-8);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .section {
    padding: var(--space-9) 0;
  }

  .section-title {
    font-size: 28px;
  }

  .product-intro {
    flex-direction: row;
    align-items: center;
  }

  .product-intro.reverse {
    flex-direction: row-reverse;
  }

  .product-img-wrap {
    flex: 0 0 45%;
    min-height: 300px;
  }

  .product-info {
    flex: 1;
  }

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

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

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }

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

  .scroll-hint {
    display: none;
  }

  .cta-bar-inner {
    gap: var(--space-4);
  }
}

/* lg: 1024px+ */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero h1 .vs {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .product-img-wrap {
    min-height: 360px;
  }

  .product-info h3 {
    font-size: 24px;
  }
}

/* ===== 탭 네비 (비교 섹션용) ===== */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.tab-btn {
  font-size: 14px;
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--grey-200);
  background: #fff;
  color: var(--grey-600);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.tab-btn:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
}

.tab-btn.active {
  background: var(--primary-600);
  color: #fff;
  border-color: var(--primary-600);
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: var(--space-4);
  width: 40px;
  height: 40px;
  background: var(--primary-600);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 40;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== 모바일 전용 유틸리티 ===== */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: inline;
  }
}
