/* ============ 친근한 일러스트 톤 디자인 토큰 ============ */
:root {
  /* 크림 배경 */
  --cream: #FFF8EE;
  --cream-soft: #FFF2E0;
  --cream-warm: #FCE8D0;

  /* 파스텔 컬러 */
  --peach: #FFCBA4;
  --peach-light: #FFE4D0;
  --peach-dark: #FFA87A;

  --mint: #B8E4D3;
  --mint-light: #D9F0E5;
  --mint-dark: #7DC5A8;

  --lilac: #D4C5F0;
  --lilac-light: #E8DFF7;
  --lilac-dark: #A888D9;

  --yellow: #FFE8A3;
  --yellow-light: #FFF3CC;
  --yellow-dark: #F4CF5F;

  --pink: #FFC8D9;
  --pink-light: #FFE0EB;
  --pink-dark: #F490B4;

  --sky: #B8DCF0;
  --sky-light: #D9EBF7;
  --sky-dark: #7DB8DD;

  /* 메인 액센트 */
  --main: #FF8A65;
  --main-soft: #FFD4C4;
  --main-dark: #E86D4A;

  /* 텍스트 (카카오톡 느낌 진한 브라운) */
  --ink: #3D2E1F;
  --ink-soft: #5C4933;
  --ink-light: #7D6A55;
  --ink-muted: #A89882;

  /* 그림자 (둥글둥글한 손글씨 느낌 살짝 오프셋) */
  --shadow-sm: 3px 3px 0 rgba(61, 46, 31, 0.08);
  --shadow: 5px 5px 0 rgba(61, 46, 31, 0.1);
  --shadow-lg: 8px 8px 0 rgba(61, 46, 31, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  letter-spacing: -0.2px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ============ 손글씨 느낌 구름 배경 ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, var(--peach-light) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, var(--mint-light) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, var(--yellow-light) 0%, transparent 40%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ============ HEADER ============ */
header {
  background: var(--cream);
  border-bottom: 2px dashed var(--peach-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  background: var(--main);
  border-radius: 50% 60% 50% 60% / 60% 50% 60% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: white;
  transform: rotate(-5deg);
  transition: transform 0.3s;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

.brand:hover .brand-mark { transform: rotate(5deg) scale(1.05); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.brand-tag {
  font-size: 12px;
  color: var(--main-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* 메인 메뉴 */
.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.main-menu > li { position: relative; }

.main-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  transition: all 0.2s;
  border-radius: 20px;
  border: 2px solid transparent;
}

.main-menu > li:hover > a,
.main-menu > li > a.active {
  background: var(--yellow-light);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
}

.main-menu .chevron {
  font-size: 10px;
  color: var(--ink-muted);
  transition: transform 0.2s;
}

.main-menu li:hover .chevron { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  list-style: none;
  box-shadow: var(--shadow);
  z-index: 10;
}

.main-menu > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.15s;
}

.submenu li a::before {
  content: '•';
  color: var(--main);
  font-size: 18px;
  line-height: 1;
}

.submenu li a:hover,
.submenu li a.active {
  background: var(--peach-light);
  color: var(--main-dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-tel .tel-num {
  color: var(--main-dark);
  font-size: 17px;
  font-weight: 800;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 800;
  color: white;
  background: var(--main);
  border: 2px solid var(--ink);
  border-radius: 100px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.2px;
}

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--main-dark);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow-light);
  border: 2px solid var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.breadcrumb a { color: var(--ink-light); }
.breadcrumb a:hover { color: var(--main-dark); }
.breadcrumb .sep { color: var(--peach-dark); font-weight: 400; }
.breadcrumb .current { color: var(--ink); font-weight: 700; }

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 2px solid var(--mint-dark);
  transform: rotate(-1deg);
}

.page-tag::before {
  content: '✦';
  font-size: 14px;
}

.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.3px;
  color: var(--ink);
  margin-bottom: 16px;
  word-break: keep-all;
}

.page-header h1 .accent {
  color: var(--main);
  position: relative;
  display: inline-block;
}

.page-header h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -4px;
  right: -4px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 50px;
  transform: rotate(-1deg);
}

.page-header h1 .wave {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}

.page-lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 500;
  word-break: keep-all;
}

.page-meta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 600;
  flex-wrap: wrap;
}

.page-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: white;
  border: 1.5px dashed var(--peach-dark);
  border-radius: 100px;
}

.page-meta strong { color: var(--main-dark); font-weight: 800; }

/* ============ CONTENT ============ */
.content {
  padding: 40px 0 80px;
}

.content-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-inner h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin: 56px 0 20px;
  letter-spacing: -0.6px;
  line-height: 1.35;
  word-break: keep-all;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-inner h2:first-child { margin-top: 0; }

.content-inner h2::before {
  content: '';
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--main);
  border-radius: 50% 60% 50% 60% / 60% 50% 60% 50%;
  border: 2.5px solid var(--ink);
  transform: rotate(-8deg);
  box-shadow: 3px 3px 0 rgba(61, 46, 31, 0.1);
}

.content-inner h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 36px 0 14px;
  letter-spacing: -0.3px;
  word-break: keep-all;
  position: relative;
  padding-left: 28px;
}

.content-inner h3::before {
  content: '🌟';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
}

.content-inner p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 18px;
  word-break: keep-all;
  font-weight: 500;
}

.content-inner strong {
  color: var(--main-dark);
  font-weight: 800;
  background: var(--yellow-light);
  padding: 1px 6px;
  border-radius: 6px;
  box-decoration-break: clone;
}

.content-inner ul, .content-inner ol {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}

.content-inner li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 12px;
  word-break: keep-all;
  font-weight: 500;
  padding-left: 36px;
  position: relative;
}

.content-inner ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: var(--mint);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 2px solid var(--ink);
}

.content-inner ol {
  counter-reset: ol-counter;
}

.content-inner ol li {
  counter-increment: ol-counter;
}

.content-inner ol li::before {
  content: counter(ol-counter);
  background: var(--lilac);
  color: var(--ink);
  width: 26px;
  height: 26px;
  font-size: 13px;
  border: 2px solid var(--ink);
}

/* 귀여운 정보 박스 */
.info-box {
  background: var(--mint-light);
  border: 2.5px solid var(--mint-dark);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  box-shadow: var(--shadow);
}

.info-box::before {
  content: '💡';
  position: absolute;
  top: -18px;
  left: 24px;
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-box .info-label {
  display: inline-block;
  font-size: 13px;
  color: var(--mint-dark);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  margin-left: 44px;
}

.info-box p {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.8;
  font-weight: 500;
}

.info-box p:last-child { margin-bottom: 0; }
.info-box strong { background: white; color: var(--ink); font-weight: 800; border: 1.5px solid var(--mint-dark); }

/* 주의 박스 */
.warning-box {
  background: var(--peach-light);
  border: 2.5px solid var(--peach-dark);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  box-shadow: var(--shadow);
}

.warning-box::before {
  content: '⚠️';
  position: absolute;
  top: -18px;
  left: 24px;
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--peach-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.warning-box .warning-label {
  display: inline-block;
  font-size: 13px;
  color: var(--main-dark);
  font-weight: 800;
  margin-bottom: 10px;
  margin-left: 44px;
}

.warning-box p {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.8;
  font-weight: 500;
}

.warning-box p:last-child { margin-bottom: 0; }
.warning-box strong { background: white; color: var(--main-dark); border: 1.5px solid var(--peach-dark); }

/* 하이라이트 박스 (팁 같은 느낌) */
.tip-box {
  background: var(--lilac-light);
  border: 2.5px solid var(--lilac-dark);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  box-shadow: var(--shadow);
}

.tip-box::before {
  content: '✨';
  position: absolute;
  top: -18px;
  left: 24px;
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--lilac-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.tip-box .tip-label {
  display: inline-block;
  font-size: 13px;
  color: var(--lilac-dark);
  font-weight: 800;
  margin-bottom: 10px;
  margin-left: 44px;
}

.tip-box p {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.8;
  font-weight: 500;
}

.tip-box p:last-child { margin-bottom: 0; }
.tip-box strong { background: white; color: var(--lilac-dark); border: 1.5px solid var(--lilac-dark); }

/* 데이터 테이블 - 둥글둥글 파스텔 */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  font-size: 14.5px;
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid var(--ink);
  margin: 32px 0;
  box-shadow: var(--shadow);
}

.data-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
}

.data-table-wrap .data-table { margin: 0; min-width: 540px; }

.data-table thead {
  background: var(--yellow);
}

.data-table th {
  padding: 16px 18px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  text-align: left;
  letter-spacing: -0.2px;
  border-bottom: 2.5px solid var(--ink);
}

.data-table th.center { text-align: center; }

.data-table td {
  padding: 14px 18px;
  border-bottom: 1.5px dashed var(--cream-warm);
  color: var(--ink-soft);
  font-weight: 500;
}

.data-table td.center { text-align: center; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: var(--cream-soft); }
.data-table tbody tr:hover { background: var(--yellow-light); }
.data-table td:first-child { font-weight: 700; color: var(--ink); }

/* 페이지 CTA */
.page-cta {
  background: var(--main);
  color: white;
  text-align: center;
  padding: 48px 32px;
  border-radius: 28px;
  border: 3px solid var(--ink);
  margin-top: 64px;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--yellow);
  border-radius: 50%;
  border: 3px solid var(--ink);
  opacity: 0.3;
}

.page-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: var(--mint);
  border-radius: 50%;
  border: 3px solid var(--ink);
  opacity: 0.25;
}

.page-cta > * { position: relative; z-index: 1; }

.page-cta h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.page-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 500;
}

.page-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  color: var(--main-dark);
  font-size: 15px;
  font-weight: 800;
  border-radius: 100px;
  border: 3px solid var(--ink);
  transition: all 0.2s;
  box-shadow: 4px 4px 0 var(--ink);
  letter-spacing: -0.3px;
}

.page-cta-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--yellow);
}

/* 관련 페이지 카드 */
.related {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 2.5px dashed var(--peach-dark);
}

.related-label {
  font-size: 14px;
  color: var(--main-dark);
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-label::before {
  content: '👀';
  font-size: 18px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-card {
  display: block;
  background: white;
  border: 2.5px solid var(--ink);
  padding: 22px 26px;
  border-radius: 20px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.related-card:nth-child(1) { background: var(--peach-light); }
.related-card:nth-child(2) { background: var(--mint-light); }

.related-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.related-card-tag {
  display: inline-block;
  font-size: 11px;
  color: white;
  background: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.related-card h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  word-break: keep-all;
}

.related-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  word-break: keep-all;
  font-weight: 500;
}

/* ============ FOOTER ============ */
footer {
  background: var(--cream-warm);
  color: var(--ink-soft);
  padding: 56px 24px 28px;
  font-size: 13.5px;
  line-height: 1.8;
  border-top: 3px dashed var(--peach-dark);
}

.footer-wrap { max-width: 1120px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 2px dashed var(--peach-dark);
  margin-bottom: 24px;
}

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

.footer-logo {
  width: 44px;
  height: 44px;
  background: var(--main);
  border-radius: 50% 60% 50% 60% / 60% 50% 60% 50%;
  border: 2.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  transform: rotate(-5deg);
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  display: block;
}

.footer-brand-tag {
  font-size: 12px;
  color: var(--main-dark);
  font-weight: 700;
}

.footer-desc {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 340px;
  font-weight: 500;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col h5::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--main);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 4px 0; }

.footer-col a {
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.15s;
}
.footer-col a:hover { color: var(--main-dark); padding-left: 4px; }

.footer-notice {
  padding: 20px 24px;
  background: white;
  border: 2px dashed var(--peach-dark);
  border-radius: 18px;
  font-size: 12.5px;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-notice strong {
  color: var(--main-dark);
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.footer-copy {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-light);
  padding-top: 20px;
  border-top: 1.5px dashed var(--peach-dark);
  line-height: 1.75;
  font-weight: 500;
}

/* ============ FLOATING CTA ============ */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--main);
  color: white;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  cursor: pointer;
  border: 2.5px solid var(--ink);
}

.float-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--main-dark);
}

.float-cta .bounce {
  display: inline-block;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1060px) {
  .main-menu > li > a { padding: 10px 14px; font-size: 14px; }
}

@media (max-width: 960px) {
  .main-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    transition: right 0.3s;
    overflow-y: auto;
    border-left: 3px dashed var(--peach-dark);
    z-index: 99;
  }
  .main-menu.active { right: 0; }
  .main-menu > li { border-bottom: 2px dashed var(--peach-dark); padding: 4px 0; }
  .main-menu > li:last-child { border-bottom: none; }
  .main-menu > li > a { padding: 14px 12px; font-size: 16px; justify-content: space-between; border-radius: 12px; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 16px;
    margin: 0;
    background: transparent;
    min-width: 0;
  }
  .submenu li a { font-size: 14.5px; padding: 8px 14px; }
  .nav-tel { display: none; }
  .hamburger { display: flex; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-box { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  .nav { padding: 14px 18px; }

  .page-header { padding: 44px 0 40px; }
  .page-header-inner { padding: 0 18px; }
  .page-header h1 { font-size: 2rem; }
  .page-lead { font-size: 15.5px; }

  .content { padding: 32px 0 56px; }
  .content-inner { padding: 0 18px; }
  .content-inner h2 { font-size: 22px; margin: 40px 0 14px; gap: 10px; }
  .content-inner h2::before { width: 30px; height: 30px; }
  .content-inner h3 { font-size: 18px; margin: 28px 0 10px; padding-left: 26px; }
  .content-inner p, .content-inner li { font-size: 15px; }
  .info-box, .warning-box, .tip-box { padding: 22px 22px; border-radius: 18px; }

  .page-cta { padding: 36px 22px; border-radius: 22px; }
  .page-cta h3 { font-size: 20px; }
  .related-grid { grid-template-columns: 1fr; }

  .data-table th, .data-table td { padding: 12px 14px; font-size: 13.5px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .float-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 13px; }
}
