/* ===================================================
   최현구 세무사사무소 — 메인 스타일시트
   =================================================== */

:root {
  --navy:      #0d1f3c;
  --navy-dark: #07152a;
  --gold:      #c9a84c;
  --gold-lt:   #e8c96a;
  --white:     #ffffff;
  --gray-100:  #f5f6fa;
  --gray-200:  #e8eaf0;
  --gray-500:  #8892a4;
  --gray-700:  #4a5568;
  --kakao-bg:  #FEE500;
  --kakao-txt: #3B1D1D;
  --shadow:    0 4px 24px rgba(13,31,60,0.12);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.18);
  --radius:    12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== 버튼 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-kakao {
  background: var(--kakao-bg);
  color: var(--kakao-txt);
  border-color: var(--kakao-bg);
  font-weight: 700;
}
.btn-kakao:hover {
  background: #fdd800;
  border-color: #fdd800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,229,0,0.5);
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== 헤더 ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(7,21,42,0.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-kr {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.gnb {
  display: flex;
  align-items: center;
  gap: 28px;
}
.gnb a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.gnb a:hover { color: var(--gold); }
.gnb .btn-gold { color: var(--navy-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.header .btn-sm { margin-left: 4px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(21,42,78,0.8) 0%, transparent 60%);
}

/* 인물 영역 */
.hero-person-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-person-img {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%; width: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
}
/* 왼쪽 그라데이션 페이드 */
.hero-person-fade-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 52%;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(13,31,60,0.95) 25%,
    rgba(13,31,60,0.7) 55%,
    transparent 100%
  );
}
.hero-person-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 18%;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

/* 히어로 텍스트 컨테이너 */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ★ 핵심 수정: 히어로 글자 블록을 오른쪽으로 10% 이동 */
.hero-content {
  max-width: 520px;
  padding-left: 10%;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat span { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.stat p { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== 섹션 공통 ===== */
section { padding: 100px 0; }
.section-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-title.left { text-align: left; }
.section-sub.left { text-align: left; }

/* ===== 이벤트/혜택 ===== */
.event-section {
  background: var(--navy);
  text-align: center;
  padding: 80px 0;
}
.event-section .section-title { color: var(--white); }
.event-section .section-sub { color: rgba(255,255,255,0.6); }
.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.event-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.event-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
}
.event-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}
.event-card h3 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.event-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.event-period {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== 서비스 ===== */
.services-section { background: var(--gray-100); text-align: center; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(13,31,60,0.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.service-card ul { list-style: none; padding: 0; }
.service-card ul li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== WHY ===== */
.why-section { background: var(--white); text-align: center; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-num {
  position: absolute; top: 16px; right: 20px;
  font-size: 2rem; font-weight: 900;
  color: rgba(13,31,60,0.06);
  line-height: 1;
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 18px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ===== 고객 후기 ===== */
.reviews-section { background: var(--gray-100); text-align: center; }
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.review-quote { color: var(--gold); font-size: 1.4rem; margin-bottom: 8px; }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}
.review-info {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  flex-shrink: 0;
}
.review-info strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 700; }
.review-info span { display: block; font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.review-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 0;
}
.r-stat { text-align: center; }
.r-stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); }
.r-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.r-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ===== 진행 절차 ===== */
.process-section { background: var(--white); text-align: center; }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.process-step {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  flex: 1;
  max-width: 220px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.process-step:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.step-num { font-size: 2rem; font-weight: 900; color: var(--gold); opacity: 0.5; margin-bottom: 12px; }
.step-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }
.process-arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 60px;
  opacity: 0.6;
}

/* ===== FAQ ===== */
.faq-section { background: var(--gray-100); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-100); }
.faq-q i { transition: transform 0.3s; color: var(--gold); flex-shrink: 0; }
.faq-q.active i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.faq-section { text-align: center; }

/* ===== 상담 신청 ===== */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-items { margin-bottom: 28px; }
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-item i {
  width: 40px; height: 40px;
  background: rgba(13,31,60,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.info-item a, .info-item span {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.info-item a:hover { color: var(--gold); }

.kakao-contact-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--kakao-bg);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.kakao-contact-banner strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--kakao-txt); }
.kakao-contact-banner span { font-size: 0.82rem; color: var(--kakao-txt); opacity: 0.75; }
.kakao-contact-banner > div { flex: 1; }
.btn-kakao-sm {
  padding: 8px 16px;
  background: var(--kakao-txt);
  color: var(--kakao-bg);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.contact-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 36px;
}
.btn-kakao-top { margin-bottom: 20px; }
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gray-500);
  font-size: 0.82rem;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 10px; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 48px 0 0; }
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: block; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-info p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-info i { margin-right: 8px; color: var(--gold); }
.footer-sns { display: flex; gap: 10px; align-items: center; }
.sns-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  font-size: 1rem;
}
.sns-btn--phone { background: rgba(255,255,255,0.08); color: var(--white); }
.sns-btn--phone:hover { background: var(--gold); color: var(--navy); }
.sns-btn--kakao { background: var(--kakao-bg); border: none; }
.sns-btn--kakao:hover { background: #fdd800; transform: scale(1.08); }
.sns-btn--email { background: rgba(255,255,255,0.08); color: var(--white); }
.sns-btn--email:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  padding: 18px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ===== 플로팅 버튼 ===== */
.floating-btns {
  position: fixed;
  bottom: 30px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.floating-btns.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all var(--transition);
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn--call { background: var(--navy); color: var(--white); }
.float-btn--kakao { background: var(--kakao-bg); color: var(--kakao-txt); border: none; }
.float-btn--consult { background: var(--gold); color: var(--navy-dark); }

/* ===== 모달 ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.4rem;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }
.modal-kakao-icon {
  width: 68px; height: 68px;
  background: var(--kakao-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.modal-box h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.modal-box p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.modal-channel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 20px;
}
#kakaoChannelName { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.btn-copy {
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.modal-steps {
  text-align: left;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  counter-reset: step;
  list-style: none;
}
.modal-steps li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 5px 0 5px 24px;
  position: relative;
  counter-increment: step;
}
.modal-steps li::before {
  content: counter(step);
  position: absolute; left: 0;
  width: 18px; height: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  top: 6px;
}

/* ===== 토스트 ===== */
.toast {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s;
  z-index: 3000;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== 애니메이션 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .review-cards { grid-template-columns: repeat(2, 1fr); }
  .event-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .gnb { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .gnb.open { display: flex; }
  .gnb a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-person-wrap { width: 100%; opacity: 0.2; }
  .hero-person-fade-left { width: 100%; background: linear-gradient(to right, var(--navy) 40%, rgba(13,31,60,0.5) 100%); }
  /* 모바일에서는 padding-left 제거 */
  .hero-content { max-width: 100%; padding-left: 0; }
  .hero-stats { gap: 14px; }
  .stat strong { font-size: 1.5rem; }
  .hero-cta { flex-direction: column; }
  .service-cards { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .event-cards { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); margin: 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .review-stats { gap: 20px; flex-wrap: wrap; }
}
