@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Maru+Buri:wght@200..900&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

@font-face {
  font-family: 'Paperlogy';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --primary-blue: #0056b3;
  --light-blue-bg: #eef6fc;
  --dark-text: #333;
  --gray-text: #666;
  --white: #fff;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 140%;
  word-break: keep-all;
  letter-spacing: -0.24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* 버튼 공통 */
.btn {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: #004494;
}

.text-point {
  color: var(--primary-blue);
}

.text-point-sub {
  color: #FFFCAA;
}


/* PC 헤더 */
header {
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}

header.active {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 25px;
  width: auto;
}

/* PC 네비게이션 */
.pc-nav {
  margin-left: auto;
  margin-right: 50px;
}

.pc-nav ul {
  display: flex;
  gap: 40px;
}

.pc-nav a {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--dark-text);
  transition: color 0.3s;
}

.pc-nav a:hover {
  color: var(--primary-blue);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-register {
  display: inline-block;
}

.btn-inquire {
  display: none;
}

.hamburger {
  display: none;
  width: 24px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu ul {
  padding: 20px;
  text-align: center;
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu li:nth-last-child(1) {
  margin-bottom: 0;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
}

.mobile-menu.active {
  display: block;
}

/* PC 본문 */
section {
  padding: 200px 0;
}

/* PC Hero 섹션*/
.hero {
  position: relative;
  height: 845px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: var(--white);
  overflow: hidden;
}

.hero-content span {
  display: block;
  margin-bottom: 20px;
  font-weight: 300;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./image/hero_pc.png') no-repeat center center/cover;
  z-index: 0;
  animation: bgZoomOut 2s ease-out forwards;
}

@keyframes bgZoomOut {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1.0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'MaruBuri', serif;
  font-size: 3.3rem;
  letter-spacing: -1.602px;
  margin-bottom: 10px;
  font-weight: 600;
  background: linear-gradient(270deg, #0082DF 0%, #0959B5 100%);
  padding: 0 10px;
  line-height: 1.5;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 30px;
  line-height: 150%;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--dark-text);
  margin-bottom: 10px;
  line-height: 135%;
}

.section-title .sub-title,
.sub-title-2 {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.section-title .sub-title {
  color: var(--primary-blue);
}

.sub-title-2 {
  color: #fff;
}

/* PC Community 색션 */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.community-card img {
  width: 100%;
  border-radius: 25px;
  margin-bottom: 28px;
}

.community-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  line-height: 130%;
  letter-spacing: -0.6px;
}

.community-card p {
  font-size: 1.1rem;
  line-height: 140%;
  font-weight: 400;
  color: var(--gray-text);
}

/* PC Vision 섹션 */
.vison-bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 0 185px 0;
}

.bg-decoration {
  position: absolute;
  top: 243px;
  right: 0;
  width: 65%;
  height: 500px;
  background-color: #F7F7F7;
  z-index: -1;
}

.vison-text h3 {
  font-size: 2.2rem;
  margin-bottom: 38px;
}

.vison-subtext {
  font-size: 1.5rem;
  margin-bottom: 13px;
  line-height: 140%;
}

.vison-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.vison-row:nth-of-type(2) .badge {
  left: -104px;
  top: -23px;
}

.vison-row:nth-of-type(3) .badge {
  left: 641px;
  top: -21px;
}

.vison-caption {
  font-size: 1.1rem;
  line-height: 140%;
  font-weight: 400;
  color: var(--gray-text);
}

.vison-row:nth-child(even) {
  flex-direction: row-reverse;
}

.vison-text {
  flex: 1;
  position: relative;
}

.vison-img {
  flex: 1;
}

.vison-img img {
  border-radius: 15px;
}

.badge {
  background: var(--primary-blue);
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  position: absolute;
  top: -40px;
  left: 0;
}

/* PC  Benefits 섹션 */
.benefits {
  background: url('./image/benefits_bg.png') center/cover;
  color: #fff;
}

.benefits .section-title h2 {
  color: #fff;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.benefits-list {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.pc-br {
  display: none;
}

.icon-circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
  flex-shrink: 0;
}

.icon-img {
  width: 60px;
}

.benefit-item:nth-child(2) .icon-img {
  width: 67px;
}

.benefit-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.benefit-title {
  margin-bottom: 0;
  margin-right: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  min-width: 220px;
}

.benefit-desc-wrap {
  padding-left: 30px;
}

.main-desc {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 140%;
  font-weight: 500;
}

.sub-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  font-weight: 300;
  line-height: 140%;
}

.highlight {
  background-color: #FFFCAA;
  padding: 2px 4px;
  border-radius: 3px;
  color: var(--primary-blue);
  font-weight: 600;
}

.logo_goodtv {
  width: 256px;
  margin-bottom: 1px;
}

.logo-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/* PC QA 섹션 */
.qa {
  background: url('./image/qa_bg.png') center/cover;
}

.qa .container {
  position: relative;
  z-index: 1;
}

.qa-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1064px;
  margin: 0 auto;
}

.qa-card {
  background: #fff;
  border-radius: 500px;
  padding: 60px 85px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 250px;
}

.qa-container .qa-card:nth-child(2) {
  padding-left: 120px;
}

.qa-text-wrap {
  max-width: 71%;
}

.qa-title {
  font-size: 1.8rem;
  color: #0056b3;
  font-family: 'Paperlogy';
  margin-bottom: 20px;
}

.qa-desc {
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 500;
  color: #333;
}

.qa-desc span {
  font-weight: 700;
}

.plus-deco {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 0;
}

.plus-deco::before,
.plus-deco::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  border-radius: 50px;
}

.plus-deco::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 30px;
  transform: translateY(-50%);
}

.plus-deco::after {
  top: 0;
  left: 50%;
  width: 30px;
  height: 125%;
  transform: translateX(-50%);
}

.blue-plus {
  color: #BEDDF4;
  top: 54px;
  left: -10px;
}

.yellow-plus {
  color: #F1F1CE;
  top: 42px;
  right: 32px;
}

.person-img {
  position: relative;
}

.qa-img-wrap {
  width: 250px;
  height: 280px;
  position: absolute;
  bottom: 0;
  right: 80px;
}

.qa-card:first-child .person-img {
  left: 42px;
}

.qa-card:nth-child(2) .person-img {
  left: -65px;
  top: -23px;
}

.qa-card:first-child {
  justify-content: flex-end;
}

.qa-card:first-child .qa-img-wrap {
  right: auto;
  left: 80px;
}

.plus-deco {
  position: absolute;
  width: 100px;
  height: 100px;
}

/* PC CTA 섹션 */
.cta {
  padding: 150px 0 581px;
  background: url('./image/cta_bg.png')center/cover;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  margin-bottom: 42px;
  display: flex;
  justify-content: center;
  margin-left: 18px
}

.cta-content h2 {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 135%;
}

.cta-desc {
  margin-bottom: 60px;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 400;
}

.cta-btn-main {
  font-family: paperlogy, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1.6rem;
  padding: 15px 15px 15px 60px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
  transition: transform 0.3s, background 0.3s;
  width: 100%;
  max-width: 446px;
  background: linear-gradient(270deg, #0082DF 0%, #0959B5 100%);
}

.cta-btn-main:hover {
  background-color: #004494;
  transform: translateY(-3px);
}

.cta-ai {
  font-size: 0.9rem;
  color: #7c7c7c;
  margin-top: 90px;
  font-weight: 300;
}


.btn-arrow {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 스크롤 애니메이션 */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}


/* =================================================================
   ★ 모바일 (1024px 이하)
   ================================================================= */
@media (max-width: 1024px) {

  /* 레이아웃 & 폰트 */
  .container {
    padding: 0 25px;
  }

  section {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title .sub-title {
    font-size: 1rem;
  }

  /* 헤더 */
  header {
    height: 70px;
  }

  .pc-nav {
    display: none;
  }

  /* .btn-register {
    display: none;
  } */

  .btn-inquire {
    display: inline-block;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: none;
    top: 70px;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-right {
    gap: 10px;
  }

  .logo img {
    height: 20px;
  }

  /* Hero */
  .hero {
    height: 700px;
    text-align: center;
    align-items: flex-start;
  }

  .hero::before {
    background-image: url('./image/hero_m.png');
    background-position: bottom center;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .hero p {
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 600px;
  }

  .hero-content span {
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }

  .hero-content {
    text-align: -webkit-center;
  }

  /* Community */
  .community-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Vision */
  .vison-row {
    flex-direction: column-reverse;
    display: flex;
    gap: 20px;
    padding: 0;
    margin-bottom: 60px;
    position: relative;
  }

  .vison-row:nth-child(even) {
    flex-direction: column-reverse;
  }

  .vison-img {
    width: 100%;
  }

  .vison-img img {
    width: 100%;
    border-radius: 15px;
  }

  .badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    margin: 0;
    width: 50px;
    height: 50px;
  }

  .vison-row:nth-of-type(2) .badge,
  .vison-row:nth-of-type(3) .badge {
    top: -26px;
    left: -12px;
  }

  .vison-text {
    position: static;
  }

  .vison-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .vison-subtext {
    font-size: 1.3rem;
  }

  .bg-decoration {
    display: none;
  }

  .vison-bg {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  /* Benefits */
  .benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .benefits-list {
    margin-bottom: 50px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .icon-img {
    width: 35px;
  }

  .benefit-item:nth-child(2) .icon-img {
    width: 40px;
  }

  .benefit-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 20px;
  }

  .benefit-title {
    font-size: 1.4rem;
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0px;
  }

  .benefit-desc-wrap {
    padding-left: 0;
    border-left: none;
  }

  .main-desc {
    font-size: 1.2rem;
  }

  .sub-desc {
    font-size: 1rem;
    max-width: 100%;
    padding-left: 0;
  }

  .m-br {
    display: none;
  }

  .pc-br {
    display: inline;
  }

  .logo_goodtv {
    width: 173px;
    margin-bottom: 0;
  }

  .logo-container {
    gap: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* QA */

  /* 섹션 제목 흰색으로 변경 */
  .qa {
    padding-bottom: 100px;
  }

  .qa .section-title h2 {
    color: #fff;
  }

  .qa .section-title .sub-title {
    color: #fff;
  }

  .qa-container {
    gap: 40px;
    margin-top: 20px;
  }

  .qa-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px 30px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    overflow: visible;
    min-height: auto
  }

  .qa-card:first-child {
    justify-content: flex-start;
  }

  .qa-container .qa-card:nth-child(2) {
    padding-left: 30px;
  }

  .qa-text-wrap {
    max-width: 100%;
    margin-top: 0;
  }

  .qa-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    padding-right: 110px;
    line-height: 130%;
  }

  .qa-desc {
    font-size: 1.1rem;
    word-break: keep-all;
    line-height: 140%;
  }

  .qa-img-wrap {
    width: 130px;
    height: 130px;
    position: absolute;
    top: -45px;
    right: 5px;
    left: auto;
    bottom: auto;
  }

  .qa-card:first-child .qa-img-wrap {
    right: 0px;
    left: auto
  }

  .qa-card:nth-child(2) .qa-img-wrap {
    left: auto;
    right: 0px;
  }

  .person-img {
    position: static;
    left: 0 !important;
    top: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .plus-deco {
    width: 30px;
    height: 30px;
  }

  .plus-deco::before {
    height: 8px;
    top: 50%;
  }

  .plus-deco::after {
    width: 8px;
    left: 50%;
  }

  .blue-plus {
    top: 62px;
    left: -10px;
  }

  .yellow-plus {
    top: 62px;
    left: -10px;
    right: auto;
  }

  /* CTA */
  .cta {
    padding: 50px 0 25px 0;
    background-color: #FAFAFA;
    background-image: none;
  }

  .cta-content h2 {
    font-size: 2rem;
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 135%;
  }

  .cta-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .cta-btn-main {
    font-size: 1.2rem;
    padding: 10px 10px 10px 40px;
    max-width: 320px;
  }

  .cta-icon {
    margin-bottom: 20px;
  }

  .cta-icon img {
    width: 70px;
    margin-left: 0px;
  }

  .btn-arrow {
    width: 40px;
    height: 40px;
  }
}