/* Override common.css background for landing page */
body.landing_page::before {
  display: none !important;
}

body.landing_page {
  background-color: #181818 !important;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  font-family: "LG EI Text", sans-serif;
}

/* Override #contents from common.css */
#contents.landing_contents {
  display: block !important;
  padding: 0 !important;
  justify-content: unset !important;
  background: #181818;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  font-family: "LG EI Text", sans-serif;
}

/* Landing Page Styles */
.landing_header {
  background: transparent;
  backdrop-filter: none;
}

.landing_logo_lgup {
  height: 32px;
  width: auto;
  cursor: pointer;
}

.landing_header_menu {
  gap: 36px;
}

@media screen and (max-width: 768px) {
  .landing_header_menu {
    gap: 0;
  }
}

.landing_inquiry_button {
  background: #47B8FF !important;
  border-radius: 4px;
  padding: 10px;
}

.landing_inquiry_button > span {
  color: white !important;
}

.landing_hero {
  position: relative;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background: #181818 url("../../../assets/image/page/landing/background_1.svg") center/50% no-repeat;
  background-size: 70%;
  background-position: center;
}

.landing_hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(24, 24, 24, 0.3) 50%, rgba(24, 24, 24, 0.7) 80%, #181818 100%);
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .landing_hero {
    min-height: 400px;
    background: #181818 url("../../../assets/image/page/landing/icon_mobile_background.svg") center/cover no-repeat;
    background-size: 100% 120%;
    background-position: center top;
    padding-bottom: 100px;
  }
  
  .landing_hero::after {
    background: linear-gradient(to bottom, transparent 0%, rgba(24, 24, 24, 0.2) 40%, rgba(24, 24, 24, 0.5) 70%, rgba(24, 24, 24, 0.8) 90%, #181818 100%);
  }
}

.landing_hero_content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
  min-height: 832px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .landing_hero_content {
    min-height: 400px;
    padding: 80px 0 120px;
    position: relative;
    z-index: 2;
  }
}

.landing_hero_text {
  position: absolute;
  left: 228.5px;
  top: 87.06px;
  width: 1462.995px;
  max-width: calc(100% - 457px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 50px 0;
}

@media screen and (max-width: 1440px) {
  .landing_hero_text {
    left: 120px;
    width: auto;
    max-width: calc(100% - 240px);
  }
}

@media screen and (max-width: 768px) {
  .landing_hero_text {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 50px 0;
    gap: 17px;
    align-items: center;
    justify-content: center;
  }
}

.landing_hero_logo {
  margin-bottom: 0;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.landing_hero_logo_text{
  font-family: "LG EI Text";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  flex-direction: row;
}
.landing_hero_logo_text div:first-child{
  color: #FFF;
}
.landing_hero_logo_text div:last-child{
  color: #47B8FF;
}

@media screen and (max-width: 768px) {
  .landing_hero_logo {
    margin-bottom: 0;
    justify-content: center;
  }
}

.landing_logo_mobile {
  height: 56px;
  width: auto;
}

.landing_hero_title {
  font-size: 80px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -1px;
  margin-bottom: 0;
  color: white;
  padding: 10px;
}

@media screen and (max-width: 1080px) {
  .landing_hero_title {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .landing_hero_title {
    font-size: 36px;
    margin-bottom: 0;
    text-align: center;
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .landing_hero_title {
    font-size: 24px;
  }
}

.landing_hero_subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  color: white;
  max-width: 100%;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .landing_hero_subtitle {
    font-size: 15px;
    max-width: 100%;
    text-align: center;
    padding: 10px;
  }
}

.landing_hero_scroll_indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.landing_scroll_icon {
  width: 36px;
  height: 36px;
  display: block;
}

@media screen and (max-width: 768px) {
  .landing_hero_scroll_indicator {
    margin-top: 0;
  }
}

.landing_hero_images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .landing_hero_images {
    height: 100%;
  }
}

.landing_hero_screens {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.landing_screen {
  position: absolute;
  width: 858px;
  height: 653px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.landing_screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .landing_screen {
    width: 524px;
    height: 400px;
  }
}

.landing_screen_1 {
  top: 414px;
  left: 658px;
  transform: rotate(-2deg);
}

@media screen and (max-width: 1440px) {
  .landing_screen_1 {
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
  }
}

@media screen and (max-width: 768px) {
  .landing_screen_1 {
    top: 373px;
    left: 93px;
  }
}

.landing_screen_2 {
  top: 839px;
  left: 100px;
  transform: rotate(1deg);
}

@media screen and (max-width: 1440px) {
  .landing_screen_2 {
    left: 10%;
  }
}

@media screen and (max-width: 768px) {
  .landing_screen_2 {
    top: 634px;
    left: -248px;
  }
}

.landing_screen_3 {
  top: 1084px;
  left: 417px;
  transform: rotate(-1deg);
}

@media screen and (max-width: 1440px) {
  .landing_screen_3 {
    left: 30%;
  }
}

@media screen and (max-width: 768px) {
  .landing_screen_3 {
    top: 784px;
    left: -55px;
  }
}

.landing_screen_4 {
  top: 659px;
  left: 974px;
  transform: rotate(2deg);
}

@media screen and (max-width: 1440px) {
  .landing_screen_4 {
    left: 60%;
  }
}

@media screen and (max-width: 768px) {
  .landing_screen_4 {
    top: 523px;
    left: 286px;
  }
}

.landing_section {
  padding: 48px 0;
  position: relative;
  background: #181818;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .landing_section {
    padding: 62px 16px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }
}

.landing_contents > .landing_section + .landing_section {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .landing_contents > .landing_section + .landing_section {
    margin-top: 0;
  }
}

.landing_section_content {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .landing_section_content {
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }
}

.landing_section_title {
  font-size: 52px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  margin-bottom: 27px;
  color: #47B8FF;
}

@media screen and (max-width: 768px) {
  .landing_section_title {
    font-size: 30px;
    margin-bottom: 16px;
  }
}

.landing_section_subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: white;
  margin-bottom: 80px;
  max-width: 456px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .landing_section_subtitle {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.landing_video_section {
  background: #181818;
}

.landing_video_container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 190px;
}

@media screen and (max-width: 1440px) {
  .landing_video_container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .landing_video_container {
    padding: 0;
  }
}

.landing_video_player {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: #000;
}

.landing_dashboard_section {
  background: #181818;
}

.landing_feature_layout {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 0;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .landing_feature_layout {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .landing_feature_layout {
    gap: 24px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}

.landing_feature_layout_reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1080px) {
  .landing_feature_layout_reverse {
    flex-direction: column;
  }
}

.landing_feature_image {
  flex: 0 0 752px;
  max-width: 752px;
}

@media screen and (max-width: 1080px) {
  .landing_feature_image {
    flex: 1;
    max-width: 100%;
  }
}

.landing_dashboard_mockup,
.landing_player_mockup {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 4px 31px rgba(0, 0, 0, 0.15);
}

.landing_feature_texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  min-width: 545px;
  max-width: 600px;
}

.landing_player_section .landing_feature_texts {
  min-width: 493px;
  max-width: 550px;
}

@media screen and (max-width: 1080px) {
  .landing_feature_texts {
    width: 100%;
    padding: 0;
    min-width: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .landing_feature_texts {
    gap: 24px;
    align-items: stretch;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

.landing_feature_item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .landing_feature_item {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
  }
  
  .landing_feature_item .landing_feature_icon {
    order: 1;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .landing_feature_item .landing_feature_content {
    order: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: visible;
  }
  
  .landing_feature_item .landing_feature_content .landing_feature_title {
    display: block;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
    overflow: visible;
  }
}

.landing_feature_icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.landing_feature_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media screen and (max-width: 768px) {
  .landing_feature_icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    overflow: visible;
  }
  
  .landing_feature_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
}

.landing_feature_content {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .landing_feature_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }
}

.landing_feature_title {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 12px;
  color: white;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .landing_feature_title {
    font-size: 18px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
    width: 100%;
    line-height: 1.4;
  }
}

.landing_feature_description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  letter-spacing: 0.2px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .landing_feature_description {
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

.landing_player_section {
  background: linear-gradient(180deg, #181818 0%, #00426B 100%);
}

.landing_integration_section {
  background: #181818;
  padding: 50px 0 120px 0;
}

.landing_integration_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px;
  max-width: 985px;
  margin: 0 auto;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .landing_integration_cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 23px;
  }
}




.landing_integration_card {
  background: #FFFFFF;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 4px 31px rgba(0, 0, 0, 0.15);
  gap: 48px;
}

@media screen and (max-width: 768px) {
  .landing_integration_card {
    padding: 32px 24px;
    gap: 32px;
  }
}

.landing_integration_card_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 0;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .landing_integration_card_title {
    font-size: 18px;
  }
}

.landing_integration_card_description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5C5C5C;
  letter-spacing: 0.2px;
  flex: 1;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .landing_integration_card_description {
    font-size: 14px;
  }
}

.landing_integration_card_image {
  width: 100%;
  aspect-ratio: 379/284;
  border-radius: 8px;
  overflow: hidden;
}

.landing_integration_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing_cta_section {
  background: #47B8FF;
  padding: 87px 0;
  margin-top: 0;
  position: relative;
}

.landing_cta_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
  height: 100%;
  background: #47B8FF;
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .landing_cta_section {
    padding: 50px 0;
  }
}

.landing_cta_content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 318px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1440px) {
  .landing_cta_content {
    padding: 0 100px;
  }
}

@media screen and (max-width: 768px) {
  .landing_cta_content {
    flex-direction: column;
    padding: 0 16px;
    text-align: center;
    gap: 24px;
    align-items: center;
  }
}

.landing_cta_left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing_cta_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .landing_cta_right {
    align-items: center;
  }
}

.landing_cta_contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .landing_cta_contact {
    align-items: center;
  }
}

.landing_cta_contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.landing_cta_contact_item:hover {
  opacity: 0.9;
}

.landing_cta_contact_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.landing_cta_tagline {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  color: white;
}

.landing_cta_logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .landing_cta_logo {
    justify-content: center;

  }
}

.landing_cta_logo_text {
  color: var(--, #FFF);
  font-family: "LG EI Text";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .landing_cta_tagline {
    font-size: 20px;
  }
}

.landing_cta_button {
  min-width: 240px;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: 1px solid white;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.landing_cta_button:hover {
  background: white;
  color: #47B8FF;
}

.landing_cta_button:hover > span {
  color: #47B8FF !important;
}

.landing_cta_text_mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .landing_cta_button {
    width: 100%;
    max-width: 240px;
  }

  .landing_cta_text_pc {
    display: none;
  }

  .landing_cta_text_mobile {
    display: inline;
  }
}

@media screen and (max-width: 599.89px) {
  .landing_hero_title {
    font-size: 20px;
  }

  .landing_section_title {
    font-size: 24px;
  }

  .landing_feature_title {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .landing_feature_description {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .landing_feature_item {
    gap: 10px;
  }
  
  .landing_feature_icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .landing_integration_card_title {
    font-size: 20px;
  }
}

/* GSAP 애니메이션 성능 최적화 */
.landing_logo_mobile,
.landing_hero_logo_text div:first-child,
.landing_hero_logo_text div:last-child,
.landing_hero_title,
.landing_hero_subtitle,
.landing_hero_scroll_indicator,
.landing_section_title,
.landing_section_subtitle,
.landing_feature_item,
.landing_feature_image img,
.landing_integration_card,
.landing_integration_card_image img,
.landing_video_container {
  will-change: transform, opacity;
}

/* 스크롤 인디케이터 애니메이션 */
.landing_scroll_icon {
  will-change: transform;
}