/* themarkone 랜딩 페이지 스타일 */
body.landing_pages.themarkone {
  /* 색상 변수 */
  --color-primary: #40FFA7;
  --color-secondary: #40f9ff;
  --color-text-muted: #eeeeee;
  --color-section-darker: #0A0A0A;
  --color-section-lighter: #1A1A1A;
  
  background-color: #111827;
  color: #fff;
}

/* 배경 스타일 */
body.landing_pages.themarkone .hero-bg {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

body.landing_pages.themarkone .hero-bg-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

body.landing_pages.themarkone .hero-bg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

body.landing_pages.themarkone .hero-bg-section > * {
  position: relative;
  z-index: 2;
}

/* 섹션 배경 스타일 */
body.landing_pages.themarkone .bg-point-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), url("/assets/landingpage/themarkone/deficient-supply.webp") no-repeat center center/cover;
}

body.landing_pages.themarkone .bg-premium-location {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

body.landing_pages.themarkone .bg-type-information {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

/* 유리 효과 */
body.landing_pages.themarkone .liquid-glass-effect {
  background: rgba(0, 0, 0, 0.4); /* 검정색 반투명 배경 */
  backdrop-filter: blur(10px) brightness(0.8); /* 어둡게 조정 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9); /* 텍스트 색상 밝게 조정 */
}

/* 헤더에는 라운드 스타일 제거 */
body.landing_pages.themarkone header.liquid-glass-effect {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

/* point 섹션의 liquid-glass-effect는 더 어둡게 */
body.landing_pages.themarkone #point .liquid-glass-effect {
  background: rgba(0, 0, 0, 0.6);
}

/* 텍스트 색상 */
body.landing_pages.themarkone .text-primary {
  color: var(--color-primary);
}

body.landing_pages.themarkone .text-secondary {
  color: var(--color-secondary);
}

body.landing_pages.themarkone .text-color-muted {
  color: var(--color-text-muted);
}

/* Hero Text Gradient */
body.landing_pages.themarkone .text-gradient-hero {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.landing_pages.themarkone .icon-primary {
  color: var(--color-primary);
}

/* 배경 색상 */
body.landing_pages.themarkone .bg-color-section-darker {
  background-color: var(--color-section-darker);
}

body.landing_pages.themarkone .bg-color-section-lighter {
  background-color: var(--color-section-lighter);
}

/* 버튼 스타일 */
body.landing_pages.themarkone .btn-cta-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body.landing_pages.themarkone .btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .btn-outline:hover {
  background-color: var(--color-primary);
  color: #000;
}

/* 폼 스타일 */
body.landing_pages.themarkone .form-input-custom {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
}

body.landing_pages.themarkone .form-input-custom:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* 캐러셀 스타일 */
body.landing_pages.themarkone .carousel-indicator.active {
  background-color: var(--color-primary);
}

/* Carousel Arrows */
body.landing_pages.themarkone .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

body.landing_pages.themarkone .carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

body.landing_pages.themarkone .carousel-arrow.prev {
  left: 1rem;
}

body.landing_pages.themarkone .carousel-arrow.next {
  right: 1rem;
}

.carousel-indicators-container {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-indicator {
  cursor: pointer;
}

body.landing_pages.themarkone .carousel-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

body.landing_pages.themarkone .type-badge {
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .type-badge.active {
  background-color: var(--color-primary);
  color: #000;
}



/* 애니메이션 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.landing_pages.themarkone .animate-fade-in-down {
  animation: fadeInDown 1s ease forwards;
}

body.landing_pages.themarkone .animate-fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

body.landing_pages.themarkone .animate-delay-100 {
  animation-delay: 100ms;
}

body.landing_pages.themarkone .animate-delay-200 {
  animation-delay: 200ms;
}

body.landing_pages.themarkone .animate-delay-300 {
  animation-delay: 300ms;
}

body.landing_pages.themarkone .animate-delay-400 {
  animation-delay: 400ms;
}

body.landing_pages.themarkone .animate-delay-500 {
  animation-delay: 500ms;
}

/* 모달 CTA 버튼 */
body.landing_pages.themarkone .btn-cta-modal {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .btn-cta-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 드로워 스타일 */
body.landing_pages.themarkone .drawer-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

body.landing_pages.themarkone .drawer-container.open {
  transform: translateY(0);
}

body.landing_pages.themarkone .drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

body.landing_pages.themarkone .drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* 스크롤 잠금을 위한 클래스 */
body.body-scroll-locked {
  overflow: hidden;
}

/* 모달 선택 방지 및 스타일 */
#unitModal div[role="dialog"] {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#modalImage {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body.landing_pages.themarkone .drawer-content {
  background-color: var(--color-section-darker);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

body.landing_pages.themarkone .drawer-handle {
  width: 50px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  margin: 0 auto;
}

body.landing_pages.themarkone .drawer-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.landing_pages.themarkone .drawer-tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
}

body.landing_pages.themarkone .drawer-tab.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* 인라인 탭 스타일 - 드로워 탭과 동일하게 적용 */
body.landing_pages.themarkone .inline-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.landing_pages.themarkone .inline-tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
}

body.landing_pages.themarkone .inline-tab.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* 인라인 패널 스타일 */
body.landing_pages.themarkone .inline-panel {
  padding: 1.5rem 0;
}

body.landing_pages.themarkone .inline-panel.hidden {
  display: none;
}

/* 계약자 무상 혜택 섹션 스타일 */
body.landing_pages.themarkone .benefits-grid {
  position: relative;
  z-index: 2;
}

body.landing_pages.themarkone .benefit-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .benefit-card:hover {
  box-shadow: 0 8px 30px rgba(64, 255, 167, 0.2);
  transform: translateY(-5px) scale(1.03);
}

/* 드로워 혜택 토글 스타일 */
body.landing_pages.themarkone .benefits-toggle-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.landing_pages.themarkone .benefits-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .benefits-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-primary);
}

body.landing_pages.themarkone .benefits-toggle-btn.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

body.landing_pages.themarkone .benefits-toggle-icon {
  transition: transform 0.3s ease;
}

body.landing_pages.themarkone .benefits-toggle-btn.active .benefits-toggle-icon {
  transform: rotate(180deg);
}

body.landing_pages.themarkone .benefits-content {
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .benefit-card:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(64, 255, 167, 0), rgba(64, 255, 167, 0.1), rgba(64, 255, 167, 0));
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

body.landing_pages.themarkone .benefit-card:hover:before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

body.landing_pages.themarkone .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(64, 255, 167, 0.1);
  transition: all 0.3s ease;
}

body.landing_pages.themarkone .benefit-card:hover .benefit-icon {
  background: rgba(64, 255, 167, 0.2);
  transform: rotate(360deg);
}

body.landing_pages.themarkone .benefit-text {
  flex: 1;
}

/* 혜택 제목 그라디언트 효과 */
body.landing_pages.themarkone h3.text-gradient-hero {
  font-size: 1.75rem;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.landing_pages.themarkone .drawer-panel {
  display: none;
  padding: 1.5rem;
}

body.landing_pages.themarkone .drawer-panel.active {
  display: block;
}
