/* ===================================
   Layout Styles
   =================================== */

/* Header */
.header {
  background: white;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, height 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #212224;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.menu-list {
  display: flex;
  gap: 24px;
}

.menu-item {
  font-size: 16px;
  color: #212224;
  transition: opacity 0.3s;
}

.menu-item:hover {
  opacity: 0.7;
}

.utils {
  display: flex;
  gap: 24px;
  align-items: center;
}

.icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.icon:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, #49f094 0%, #67a8f3 50.962%, #f37df1 100%);
  padding: 216px 0 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 76px;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
}

.section-title-hero {
  text-align: center;
  margin-bottom: 76px;
}

.section-title-hero .title {
  font-size: 56px;
  font-weight: 700;
  color: #212224;
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title-hero .title.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-title-hero .sub-title {
  font-size: 32px;
  color: #212224;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-title-hero .sub-title.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Benefit Section */
.benefit-section {
  background: #6ee0db;
  padding: 96px 0;
}

.benefit-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.benefit-inner .section-title {
  font-size: 44px;
  font-weight: 700;
  color: #212224;
  text-align: center;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefit-inner .section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Review Section */
.review-section {
  background: black;
  padding: 96px 0;
}

.review-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  margin-bottom: 48px;
}

.section-title-white {
  font-size: 44px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title-white.animate {
  opacity: 1;
  transform: translateY(0);
}

.sub-title-white {
  font-size: 20px;
  color: white;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.sub-title-white.animate {
  opacity: 1;
  transform: translateY(0);
}

/* QnA Section */
.qna-section {
  background: white;
  padding: 100px 0;
}

.qna-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.qna-inner .section-title {
  font-size: 44px;
  font-weight: 700;
  color: #212224;
  text-align: center;
  line-height: 1.4;
}

.qna-inner .section-title.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Footer */
.footer {
  background: #111111;
  padding: 48px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-text-wrap {
  flex: 1;
  min-width: 287px;
  max-width: 287px;
}

.footer-logo {
  font-size: 16px;
  color: #959ea8;
  display: block;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.5;
}

.sitemap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  min-width: 300px;
  max-width: 438px;
}

.sitemap-item {
  font-size: 16px;
  color: #d1d5db;
  font-weight: 500;
  transition: color 0.3s;
}

.sitemap-item:hover {
  color: white;
}

.sns-list {
  display: flex;
  gap: 16px;
  align-items: center;
}

.sns-icon {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}

.sns-icon:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 16px;
  color: #94a3b8;
  flex: 1;
  min-width: 276px;
}

.policy-list {
  display: flex;
  gap: 15px;
  flex: 1;
  min-width: 182px;
  max-width: 182px;
}

.policy {
  font-size: 16px;
  color: #94a3b8;
  transition: color 0.3s;
}

.policy:hover {
  color: white;
}
