/* 기본 설정 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #3b70ff;
  --dark-blue: #265ef6;
  --light-blue: #e7efff;
  --text-dark: #1a1a1a;
  --text-gray: #535355;
  --white: #ffffff;
  --pink: #ffe5f0;
  --red: #ffe5e5;
  --cyan: #e0f7fa;
  --gray: #f5f5f5;
}

body {
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR",
    -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 160px;
}

/* 네비게이션 - 외부 라이브러리(Tailwind 등)로부터 보호 */
.navbar {
  background: white !important;
  padding: 15px 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.nav-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
}

.logo-img {
  height: 24px !important;
  width: auto !important;
  display: inline-block !important;
}

.nav-menu {
  display: flex !important;
  list-style: none !important;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-menu a {
  text-decoration: none !important;
  color: var(--text-dark) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: color 0.3s !important;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue) !important;
}

.nav-buttons {
  display: flex !important;
  gap: 10px !important;
}

.btn-login {
  background: transparent !important;
  border: 1px solid #e5e7eb !important;
  color: var(--text-dark) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.3s !important;
}

.btn-login:hover {
  border-color: var(--primary-blue) !important;
  color: var(--primary-blue) !important;
}

.btn-signup {
  background: var(--primary-blue) !important;
  border: none !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.btn-signup:hover {
  background: var(--dark-blue) !important;
  transform: translateY(-2px) !important;
}

/* 히어로 섹션 */
.hero {
  background: linear-gradient(180deg, #a3c5fb 0%, #3b70ff 100%);
  padding: 0;
  color: white;
  position: relative;
  overflow: hidden;
}

/* 배경 플로팅 아이콘들 - 피그마 디자인 반영 */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

/* 배경 플로팅 아이콘 스타일 - SVG 아이콘으로 교체 */
.bg-icon {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

/* 말풍선 아이콘 (좌측 상단) */
.bg-icon-1 {
  top: 6%;
  left: 4%;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='1.5'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
}

/* 하트 아이콘 (중앙 좌측) */
.bg-icon-2 {
  top: 52%;
  left: 28%;
  width: 55px;
  height: 55px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.8)' stroke='none'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
}

/* 스마일 아이콘 */
.bg-icon-3 {
  top: 72%;
  left: 6%;
  width: 45px;
  height: 45px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'/%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'/%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
}

/* 전화 아이콘 */
.bg-icon-4 {
  top: 88%;
  left: 10%;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='1.5'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
}

/* 말풍선 (중앙 상단) */
.bg-icon-5 {
  top: 3%;
  left: 38%;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.8)' stroke='none'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
}

/* 커서/화살표 아이콘 (우측 상단) */
.bg-icon-6 {
  top: 5%;
  right: 48%;
  width: 35px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='2'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
  transform: rotate(-45deg);
}

/* 커서 아이콘 */
.bg-icon-7 {
  top: 12%;
  right: 32%;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='2'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  transform: rotate(45deg);
}

/* 말풍선 (우측) */
.bg-icon-8 {
  top: 42%;
  right: 6%;
  width: 45px;
  height: 45px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='1.5'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
}

.hero-badges {
  position: relative;
  height: 0;
}

.floating-badge {
  position: absolute;
  z-index: 10;
  white-space: nowrap;
}

/* 합리적 비용 배지 */
.floating-badge.badge-1 {
  top: 89px;
  right: 320px;
  background: #3b70ff;
  opacity: 0.6;
  border-radius: 15px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* 국내 실제 사용자 배지 */
.floating-badge.badge-2 {
  top: 450px;
  right: 60px;
  background: #265ef6;
  border-radius: 15px;
  padding: 12px 24px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

/* 전문 노하우 축적 배지 - 사용 안 함으로 변경 */
.floating-badge.badge-3 {
  display: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 100px;
  padding-bottom: 0;
}

.hero-text {
  flex: 1;
  max-width: 903px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.brand-name {
  display: block;
  font-size: 56px;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 50px;
  font-weight: 500;
  max-width: 903px;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow: 0px 0px 3px rgba(0, 25, 61, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  color: #3b70ff;
  border: none;
  padding: 20px 60px;
  border-radius: 15px;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  letter-spacing: 0;
  min-width: 280px;
  min-height: 80px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-image {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

/* 📱 부드러운 흰색 폰 목업 프레임 */
.phone-mockup {
  position: relative;
  background: #f3f3fa;
  border-radius: 50px 50px 0 0;
  width: 380px;
  height: 560px;
  padding: 18px;
  padding-bottom: 0;
  box-shadow: 0 30px 80px rgba(91, 127, 255, 0.25),
    0 15px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 하단 페이드 아웃 효과 */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 65%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
}

/* 🖼️ 화면 영역 */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #eeeef5;
  border-radius: 60px 60px 0 0;
  overflow: hidden;
  position: relative;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 60px 60px 0 0;
}

.hero-title-wrapper {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-subtitle-img {
  max-width: 903px;
  width: 100%;
  height: auto;
}

.hero-logo-img {
  max-width: 903px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
}

/* 히어로 하단 페이드 */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 202px;
  background: linear-gradient(180deg, rgba(59, 112, 255, 0) 0%, #3b70ff 100%);
  pointer-events: none;
}

/* 통계 섹션 */
.stats-section {
  background: #3b70ff;
  padding: 30px 0 90px;
  color: white;
}

.stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #225bf4;
  padding: 40px 80px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 43px;
  letter-spacing: 0;
}

.stat-label {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0;
  opacity: 1;
}

/* 비교 섹션 */
.comparison {
  padding: 100px 0;
  background: white;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.awards-full {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}

.awards-full-img {
  width: 100%;
  height: auto;
  max-width: 1100px;
  object-fit: contain;
}

.awards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.award-item {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-badge-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.award-badge-img:hover {
  transform: scale(1.05);
}

.award-full-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.award-full-img:hover {
  transform: scale(1.03);
}

.award-card-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.award-card-img:hover {
  transform: scale(1.03);
}

.award-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

.award-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  line-height: 1.5;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-button:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
}

/* 서비스 섹션 */
.services {
  padding: 100px 0;
  background: var(--light-blue);
}

.service-grid-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.service-bg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* SEO 텍스트 레이어 - 이미지 위에 투명 텍스트 (선택 가능) */
.service-seo-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.service-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.8%;
  width: 100%;
  height: 100%;
  padding: 0;
}

.service-seo-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* 이미지 텍스트 위치에 맞춤: 상단 25%, 좌측 5%, 우측 40% 여백 */
  padding-top: 10%;
  padding-left: 5%;
  padding-right: 40%;
  padding-bottom: 5%;
  /* 텍스트는 투명하지만 선택하면 파란 블럭으로 보임 */
  color: transparent;
  cursor: text;
  user-select: text;
  border-radius: 28px;
}

/* 텍스트 선택 시 파란 배경으로 표시 */
.service-seo-card::selection,
.service-seo-card *::selection {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.service-seo-card h3 {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  margin-bottom: 5%;
  color: transparent;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.service-seo-card p {
  font-size: clamp(11px, 1.25vw, 15px);
  line-height: 1.75;
  color: transparent;
  letter-spacing: -0.01em;
}

/* 하단 카드(틱톡, 트위터)는 어두운 배경이라 위치 동일 */
.service-seo-tiktok,
.service-seo-twitter {
  padding-top: 12%;
}

/* 기존 스타일 유지 (하위 호환) */
.service-grid-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-grid-full-img {
  width: 100%;
  height: auto;
  max-width: 1100px;
  object-fit: contain;
  border-radius: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.pink {
  background: var(--pink);
}

.service-card.red {
  background: var(--red);
}

.service-card.cyan {
  background: var(--cyan);
}

.service-card.gray {
  background: var(--gray);
}

.service-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* 기능 섹션 */
.features {
  padding: 100px 0;
  background: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.feature-icon-img {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  border-radius: 16px;
  overflow: hidden;
}

.feature-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-illustration {
  transform: scale(1.05);
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* 선택 이유 섹션 */
.reasons {
  padding: 100px 0;
  background: var(--light-blue);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.reason-item {
  text-align: center;
}

.reason-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.reason-item p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* 블로그 섹션 */
.blog {
  padding: 100px 0;
  background: #f8fafc;
}

.blog-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}

.blog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
}

.blog-arrow:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.blog-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.blog-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.blog-arrow.disabled:hover {
  background: #ffffff;
  color: #64748b;
  border-color: #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-arrow-left {
  left: -24px;
}

.blog-arrow-right {
  right: -24px;
}

.blog-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-grid::-webkit-scrollbar {
  display: none;
}

.blog-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.blog-date {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #3b82f6;
  letter-spacing: -0.02em;
}

.blog-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
  flex-grow: 1;
}

/* 후기 섹션 */
.reviews {
  padding: 100px 0;
  background: linear-gradient(135deg, #5b7fff 0%, #7b9aff 100%);
}

.section-title.white {
  color: white;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  color: white;
  transition: all 0.3s;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.reviewer-name {
  font-weight: 600;
}

.review-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.review-text {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}

/* CTA 섹션 */
.cta {
  padding: 0;
  background: transparent;
}

.cta-full-img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-full-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.btn-cta {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(91, 127, 255, 0.3);
}

.cta-illustration {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.illustration {
  font-size: 200px;
}

.cta-logo-img {
  max-width: 500px;
  height: auto;
  margin-bottom: 30px;
}

.cta-character-img {
  max-width: 350px;
  height: auto;
}

.cta-subtitle {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #6b7280 !important;
  margin-bottom: 15px !important;
  letter-spacing: 3px !important;
}

/* 푸터 */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-info .label {
  color: #9ca3af;
  margin-right: 10px;
}

.footer-info .value {
  color: white;
}

.footer-section p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.support-time {
  margin-top: 20px;
  font-size: 13px !important;
}

.btn-contact {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: var(--dark-blue);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 14px;
}

/* 반응형 디자인 */
@media (max-width: 1400px) {
  .container {
    padding: 0 80px;
  }

  .hero-image {
    flex: 0 0 340px;
  }

  .phone-mockup {
    width: 340px;
    height: 500px;
    border-radius: 45px 45px 0 0;
  }

  .phone-screen {
    border-radius: 45px 45px 0 0;
  }

  .phone-screen-img {
    border-radius: 45px 45px 0 0;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .nav-menu {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-slider-container {
    margin-top: 40px;
  }

  .blog-arrow {
    width: 44px;
    height: 44px;
  }

  .blog-arrow-left {
    left: -12px;
  }

  .blog-arrow-right {
    right: -12px;
  }

  .blog-grid {
    gap: 20px;
  }

  .blog-card {
    min-width: 260px;
    max-width: 280px;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards {
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-badge.badge-1 {
    right: 220px;
    top: 70px;
  }

  .floating-badge.badge-2 {
    right: 10px;
    top: 350px;
  }

  .hero-image {
    flex: 0 0 300px;
  }

  .phone-mockup {
    width: 300px;
    height: 440px;
    border-radius: 40px 40px 0 0;
  }

  .phone-screen {
    border-radius: 40px 40px 0 0;
  }

  .phone-screen-img {
    border-radius: 40px 40px 0 0;
  }

  .hero-description {
    font-size: 18px;
    line-height: 26px;
  }

  .btn-primary {
    font-size: 20px;
    padding: 16px 40px;
    min-width: 220px;
    min-height: 60px;
  }

  .stats {
    padding: 30px 40px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    flex-direction: column;
    padding-top: 60px;
  }

  .hero-subtitle-img,
  .hero-logo-img {
    max-width: 100%;
  }

  .hero-text {
    text-align: center;
    align-items: center;
  }

  .hero-title-wrapper {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex: none;
    margin-top: 40px;
  }

  .phone-mockup {
    width: 260px;
    height: 380px;
    border-radius: 36px 36px 0 0;
  }

  .phone-screen {
    border-radius: 36px 36px 0 0;
  }

  .phone-screen-img {
    border-radius: 36px 36px 0 0;
  }

  .hero-description {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .btn-primary {
    font-size: 18px;
    padding: 14px 32px;
    min-width: 180px;
    min-height: 54px;
  }

  .stats {
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .stat-item {
    padding: 0;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 16px;
  }

  .service-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .blog-slider-container {
    margin-top: 30px;
  }

  .blog-arrow {
    width: 40px;
    height: 40px;
  }

  .blog-arrow-left {
    left: -8px;
  }

  .blog-arrow-right {
    right: -8px;
  }

  .blog-arrow svg {
    width: 20px;
    height: 20px;
  }

  .blog-grid {
    gap: 16px;
  }

  .blog-card {
    min-width: 240px;
    max-width: 260px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .blog-card h3 {
    font-size: 16px;
  }

  .blog-card p {
    font-size: 13px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta .container {
    flex-direction: column;
    text-align: center;
  }

  .illustration {
    font-size: 120px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .floating-badge,
  .bg-icon {
    display: none;
  }

  .stats-section {
    padding: 20px 0 60px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .hero-title {
    font-size: 28px;
  }

  .brand-name {
    font-size: 32px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 22px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 12px 28px;
    min-width: 160px;
    min-height: 48px;
  }

  .stats {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 14px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .awards {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 220px;
    height: 320px;
    border-radius: 30px 30px 0 0;
  }

  .phone-screen {
    border-radius: 30px 30px 0 0;
  }

  .phone-screen-img {
    border-radius: 30px 30px 0 0;
  }

  .stats-section {
    padding: 15px 0 40px;
  }
}

/* ========================================
   가격표 섹션 스타일
   ======================================== */
.pricing-section {
  padding: 100px 0;
  background: #fff;
}

.pricing-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 80px;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 가격표 카드 공통 */
.pricing-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e3e4e7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card-full {
  width: 100%;
}

/* 카드 헤더 */
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  background: #f3f5f7;
}

.platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.platform-icon-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.instagram-icon {
  color: #523cdb;
}
.youtube-icon {
  color: #df0b0b;
}
.tiktok-icon {
  color: #40c9c9;
}
.twitter-icon {
  color: #101010;
}

.platform-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

/* 카드 바디 */
.pricing-card-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.pricing-card-body.three-columns {
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}

/* 가격 컬럼 */
.pricing-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.column-badge {
  display: inline-block;
  padding: 4px 18px;
  border: 1.5px solid #3b70ff;
  border-radius: 30px;
  color: #3b70ff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Pretendard", sans-serif;
  text-align: center;
}

/* 가격 아이템 */
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.price-item span:first-child {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
}

.price-item .price {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
}

/* 카드 푸터 */
.pricing-card-footer {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.order-btn {
  display: inline-block;
  padding: 4px 18px;
  background: #e7efff;
  border-radius: 30px;
  color: #3b70ff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Pretendard", sans-serif;
  text-decoration: none;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background: #d4e2ff;
}

/* 하단 3개 카드 행 */
.pricing-cards-row {
  display: flex;
  gap: 50px;
}

.pricing-cards-row .pricing-card {
  flex: 1;
}

/* 반응형 */
@media (max-width: 1024px) {
  .pricing-card-body.three-columns {
    flex-direction: column;
    gap: 40px;
  }

  .pricing-column {
    width: 100%;
  }

  .pricing-cards-row {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .pricing-content {
    gap: 30px;
    padding: 0 20px;
  }

  .pricing-card-header {
    padding: 8px 15px;
  }

  .platform-name {
    font-size: 18px;
  }

  .pricing-card-body {
    padding: 20px 15px;
  }

  .price-item span:first-child {
    font-size: 14px;
  }

  .price-item .price {
    font-size: 16px;
  }

  .column-badge {
    font-size: 14px;
    padding: 4px 14px;
  }

  .order-btn {
    font-size: 14px;
    padding: 4px 14px;
  }
}

/* ========================================
   결제 방법 섹션 스타일
   ======================================== */
.payment-section {
  padding: 100px 0;
  background: #f3f5f7;
}

.payment-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 80px;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.payment-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.payment-card {
  flex: 1;
  max-width: 270px;
  height: 220px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e3e4e7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.payment-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon i {
  font-size: 60px;
  color: #3b70ff;
}

.payment-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

@media (max-width: 1024px) {
  .payment-cards {
    flex-wrap: wrap;
    gap: 30px;
  }

  .payment-card {
    flex: 1 1 calc(50% - 15px);
    max-width: none;
  }
}

@media (max-width: 768px) {
  .payment-section {
    padding: 60px 0;
  }

  .payment-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .payment-cards {
    padding: 0 20px;
    gap: 20px;
  }

  .payment-card {
    flex: 1 1 calc(50% - 10px);
    height: 180px;
  }

  .payment-icon {
    width: 80px;
    height: 80px;
  }

  .payment-icon i {
    font-size: 48px;
  }

  .payment-name {
    font-size: 16px;
  }
}

/* ========================================
   베스트 리뷰 섹션 스타일
   ======================================== */
.best-review-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #3b70ff 0%, #aec8fa 100%);
  overflow: hidden;
}

.best-review-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 80px;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.review-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.review-cards-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.review-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.best-review-card {
  flex: 0 0 430px;
  min-width: 430px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.review-avatar {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-badge {
  padding: 10px 30px;
  border: 1px solid #a3c5fb;
  border-radius: 30px;
  color: #a3c5fb;
  font-size: 18px;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  text-align: center;
}

.review-headline {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 35px;
  font-family: "Pretendard", sans-serif;
  margin: 0;
}

.review-content {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Pretendard", sans-serif;
  margin: 0;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-arrow:hover {
  background: #fff;
}

.review-arrow-left {
  left: 10px;
}

.review-arrow-right {
  right: 10px;
}

.review-arrow svg {
  color: #3b70ff;
}

@media (max-width: 768px) {
  .best-review-section {
    padding: 60px 0;
  }

  .best-review-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .best-review-card {
    flex: 0 0 300px;
    min-width: 300px;
    padding: 30px 20px;
  }

  .review-avatar {
    width: 80px;
    height: 80px;
  }

  .review-author-badge {
    font-size: 14px;
    padding: 8px 20px;
  }

  .review-headline {
    font-size: 20px;
    line-height: 28px;
  }

  .review-content {
    font-size: 14px;
    line-height: 22px;
  }

  .review-arrow {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   고객 후기 섹션 스타일
   ======================================== */
.customer-review-section {
  padding: 100px 0;
  background: #fff;
}

.customer-review-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 80px;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.platform-tab {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #e4e4e7;
  color: #737373;
}

.platform-tab.active {
  background: #3b70ff;
  border-color: #3b70ff;
  color: #fff;
  font-weight: 600;
}

.platform-tab:hover:not(.active) {
  border-color: #3b70ff;
  color: #3b70ff;
}

.rating-box {
  max-width: 591px;
  margin: 0 auto;
  padding: 28px 10px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.rating-score {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.score-number {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.score-total {
  font-size: 30px;
  font-weight: 500;
  color: #9ca3af;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  letter-spacing: 4.5px;
}

.rating-divider {
  width: 1px;
  height: 40px;
  background: #e4e4e7;
}

.rating-stars {
  display: flex;
  gap: 5px;
}

.rating-stars i {
  font-size: 20px;
  color: #3b70ff;
}

.rating-stars i.empty {
  color: #d6d3d1;
}

/* 리뷰 카드 그리드 */
.review-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.review-card-item {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-category-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 16px;
  border: 1.5px solid #3b70ff;
  border-radius: 30px;
  color: #3b70ff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Pretendard", sans-serif;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewer-id {
  font-size: 18px;
  font-weight: 700;
  color: #18181b;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  letter-spacing: -0.5px;
}

.reviewer-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star-rating {
  display: flex;
  gap: 0;
}

.star-rating i {
  font-size: 14px;
  color: #facc15;
}

.star-rating i.empty {
  color: #d6d3d1;
}

.rating-number {
  font-size: 18px;
  font-weight: 600;
  color: #18181b;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.review-card-text {
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  line-height: 24px;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  margin: 0;
}

@media (max-width: 1024px) {
  .review-grid-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .customer-review-section {
    padding: 60px 0;
  }

  .customer-review-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .platform-tabs {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .platform-tab {
    font-size: 16px;
    padding: 8px 18px;
  }

  .rating-box {
    margin: 0 20px;
    padding: 20px 10px;
    gap: 20px;
  }

  .score-number {
    font-size: 28px;
  }

  .score-total {
    font-size: 22px;
  }

  .review-grid-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

/* ===== FAQ 페이지 스타일 ===== */
.faq-section {
  background: #f3f5f7;
  padding: 100px 160px;
}

.faq-section .container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  margin-bottom: 25px;
}

/* FAQ 탭 스타일 */
.faq-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.faq-tab {
  padding: 10px 25px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #787878;
  border: 1px solid #e3e4e7;
}

.faq-tab:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.faq-tab.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  font-weight: 600;
}

/* FAQ 아코디언 스타일 */
.faq-accordion {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-q {
  color: var(--primary-blue);
  font-size: 20px;
  font-weight: 600;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  line-height: 18px;
}

.faq-question-text {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  line-height: 18px;
}

.faq-arrow {
  color: #b6bbc5;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: none;
  padding: 0 20px 20px;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.8;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  padding-top: 20px;
  border-top: 1px solid #e4e4e7;
  margin: 0;
}

/* FAQ 반응형 */
@media (max-width: 1400px) {
  .faq-section {
    padding: 100px 80px;
  }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 80px 40px;
  }

  .faq-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .faq-tab {
    font-size: 16px;
    padding: 8px 18px;
  }

  .faq-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-section .container {
    gap: 40px;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .faq-tabs {
    margin-bottom: 40px;
  }

  .faq-tab {
    font-size: 14px;
    padding: 8px 14px;
  }

  .faq-accordion {
    gap: 15px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-q {
    font-size: 16px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* ===== 공지사항 페이지 스타일 ===== */
.notice-section {
  background: #f3f5f7;
  padding: 100px 160px;
}

.notice-section .container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.notice-title {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.notice-list {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notice-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.notice-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notice-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notice-header:hover {
  background: #f9fafb;
}

.notice-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.notice-text {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  line-height: 18px;
}

.notice-date {
  font-size: 16px;
  font-weight: 400;
  color: #b6bbc5;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  line-height: 12px;
}

.notice-arrow {
  color: #b6bbc5;
  font-size: 18px;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.notice-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.notice-item.active .notice-detail {
  max-height: 2000px;
}

.notice-detail-content {
  display: flex;
  gap: 30px;
  padding: 30px;
  border-top: 1px solid #e3e4e7;
}

.notice-image {
  flex-shrink: 0;
  width: 300px;
  min-height: 200px;
  border-radius: 8px;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.notice-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.notice-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.notice-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  margin: 0;
}

.notice-body p {
  font-size: 16px;
  font-weight: 400;
  color: #535355;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.notice-body p strong {
  color: #1a1a1a;
  font-weight: 600;
}

.notice-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e3e4e7;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.pagination-btn.active {
  color: var(--primary-blue);
  font-weight: 800;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-btn:disabled:hover {
  border-color: #e3e4e7;
  color: #1a1a1a;
}

.pagination-btn i {
  font-size: 14px;
  color: #535355;
}

.pagination-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #b6bbc5;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

/* 공지사항 반응형 */
@media (max-width: 1400px) {
  .notice-section {
    padding: 100px 80px;
  }
}

@media (max-width: 1024px) {
  .notice-section {
    padding: 80px 40px;
  }

  .notice-title {
    font-size: 32px;
  }

  .notice-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .notice-section {
    padding: 60px 20px;
  }

  .notice-section .container {
    gap: 40px;
  }

  .notice-title {
    font-size: 28px;
  }

  .notice-list {
    gap: 10px;
  }

  .notice-item {
    padding: 0;
  }

  .notice-header {
    padding: 15px;
  }

  .notice-text {
    font-size: 16px;
  }

  .notice-date {
    font-size: 14px;
  }

  .notice-detail-content {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .notice-image {
    width: 100%;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .notice-image img {
    height: auto;
    width: 100%;
  }

  .notice-body h3 {
    font-size: 20px;
  }

  .notice-body p {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .notice-detail-content {
    flex-direction: column;
  }

  .notice-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .notice-image img {
    height: auto;
  }
}

/* PC 버전 80% 스케일 축소 (1024px 이상) */
@media (min-width: 1024px) {
  /* 1. 최상위 body에 배율 적용 */
  body {
    zoom: 0.8; /* 크롬, 사파리, 엣지에서 레이아웃 흐름을 유지하며 축소 */
    -moz-transform: scale(0.8); /* 파이어폭스 호환성 */
    -moz-transform-origin: top center;
  }

  /* 2. 축소로 인해 하단 배경이 잘리지 않도록 최소 높이 보정 (1 / 0.8 = 1.25) */
  html,
  body {
    min-height: 125vh;
  }
}

/* 리뷰 페이지네이션 */
.review-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.review-pagination .pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.review-pagination .pagination-btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #7c3aed;
}

.review-pagination .pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.review-pagination .pagination-numbers {
  display: flex;
  gap: 4px;
}

.review-pagination .pagination-num {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.2s;
}

.review-pagination .pagination-num:hover {
  background: #f5f5f5;
  border-color: #7c3aed;
}

.review-pagination .pagination-num.active {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #fff;
}
