/* ============================================
   칸코드 웹사이트 - 메인 페이지 스타일
   ============================================ */

/* === Pretendard 웹폰트 === */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

/* === CSS Variables (디자인 토큰) === */
:root {
  --gray-50: #F8F8FA;
  --gray-100: #F1F1F5;
  --gray-400: #CFD1DA;
  --gray-600: #878A91;
  --gray-800: #38393D;
  --gray-900: #272729;
  --black: #000000;
  --white: #FFFFFF;
  --primary-500: #4F38F8;
  --primary-gradient: linear-gradient(139deg, #436CFF 12.93%, #4F38F8 77.89%);
  --card-gradient: linear-gradient(-48deg, #6F5DFF 30.87%, #436CFF 127.41%);

  --font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  --max-width: 1440px;
  --side-padding: 100px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--gray-900);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-content {
  position: relative;
  z-index: 1;
}

.hero-bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 980px;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, 0, 0) scale(1.04);
  transform-origin: center top;
  will-change: transform;
}

.hero-bg-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 8, 24, 0.2) 0%, rgba(0, 8, 24, 0.36) 100%);
  z-index: 1;
}

.content-sections {
  position: relative;
  z-index: 2;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  outline: none;
  font-family: inherit;
}

/* === CTA 버튼 === */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background-color: var(--primary-500);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
  background-color: #3d25e6;
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
}

/* ============================================
   GNB (Global Navigation Bar)
   ============================================ */
.gnb-wrapper {
  --gnb-height: 80px;
  --lnb-panel-height: 0px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  width: 100%;
  height: var(--gnb-height);
  margin-bottom: 0;
  overflow: hidden;
  transition: height 0.22s ease, margin-bottom 0.22s ease, box-shadow 0.22s ease;
}

/* GNB 투명 변형 (Hero 위에 겹침) */
.gnb-wrapper.gnb-transparent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
}

.gnb-wrapper.gnb-open-product,
.gnb-wrapper:has(.gnb-menu-wrapper:hover .lnb-product),
.gnb-wrapper:has(.gnb-menu-wrapper:focus-within .lnb-product) {
  --lnb-panel-height: 237px;
}

.gnb-wrapper.gnb-open-simple,
.gnb-wrapper:has(.gnb-menu-wrapper:hover .lnb-simple),
.gnb-wrapper:has(.gnb-menu-wrapper:focus-within .lnb-simple) {
  --lnb-panel-height: 84px;
}

.gnb-wrapper.gnb-open,
.gnb-wrapper:has(.gnb-menu-wrapper:hover .lnb),
.gnb-wrapper:has(.gnb-menu-wrapper:focus-within .lnb) {
  height: calc(var(--gnb-height) + var(--lnb-panel-height));
  margin-bottom: calc(0px - var(--lnb-panel-height));
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

/* 기본 상태: 흰색 로고 보임, 검정 로고 숨김 */
.gnb-wrapper.gnb-transparent .logo-white {
  display: block;
}

.gnb-wrapper.gnb-transparent .logo-black {
  display: none;
}

.gnb-wrapper.gnb-transparent .gnb-menu-item {
  color: var(--white);
  transition: color 0.3s ease;
}

.gnb-wrapper.gnb-transparent .cta-btn {
  background-color: var(--primary-500);
}

/* 호버 상태: 흰색 배경, 검정 로고, 검은 메뉴 */
.gnb-wrapper.gnb-transparent:hover,
.gnb-wrapper.gnb-transparent:focus-within,
.gnb-wrapper.gnb-transparent.gnb-hovered,
.gnb-wrapper.gnb-transparent.gnb-open,
.gnb-wrapper.gnb-transparent.gnb-scrolled {
  background-color: var(--white);
}

.gnb-wrapper.gnb-transparent:hover .logo-white,
.gnb-wrapper.gnb-transparent:focus-within .logo-white,
.gnb-wrapper.gnb-transparent.gnb-hovered .logo-white,
.gnb-wrapper.gnb-transparent.gnb-open .logo-white,
.gnb-wrapper.gnb-transparent.gnb-scrolled .logo-white {
  display: none;
}

.gnb-wrapper.gnb-transparent:hover .logo-black,
.gnb-wrapper.gnb-transparent:focus-within .logo-black,
.gnb-wrapper.gnb-transparent.gnb-hovered .logo-black,
.gnb-wrapper.gnb-transparent.gnb-open .logo-black,
.gnb-wrapper.gnb-transparent.gnb-scrolled .logo-black {
  display: block;
}

.gnb-wrapper.gnb-transparent:hover .gnb-menu-item,
.gnb-wrapper.gnb-transparent:focus-within .gnb-menu-item,
.gnb-wrapper.gnb-transparent.gnb-hovered .gnb-menu-item,
.gnb-wrapper.gnb-transparent.gnb-open .gnb-menu-item,
.gnb-wrapper.gnb-transparent.gnb-scrolled .gnb-menu-item {
  color: var(--gray-800);
}

.gnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 var(--side-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.gnb-left {
  display: flex;
  align-items: center;
  gap: 100px;
}

.gnb-logo {
  height: 20px;
  width: 87px;
  flex-shrink: 0;
}

.gnb-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gnb-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gnb-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-800);
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.gnb-menu-item:hover {
  color: var(--primary-500);
}

/* ============================================
   LNB (Local Navigation Bar) - 드롭다운 서브메뉴
   ============================================ */

/* 메뉴 래퍼 - GNB 전체 높이로 확장하여 hover 영역 확보 */
.gnb-menu-wrapper {
  position: static;
  display: flex;
  align-items: center;
  height: 80px;
}

/* LNB 공통 */
.lnb {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: transparent;
  visibility: hidden;
  z-index: 99;
  box-shadow: none;
  pointer-events: none;
}

.gnb-menu-wrapper:hover .lnb,
.gnb-menu-wrapper:focus-within .lnb,
.lnb.lnb-active {
  visibility: visible;
  pointer-events: auto;
}

.lnb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--side-padding);
}

/* ---------- 제품 LNB (menu=1) ---------- */
.lnb-product .lnb-inner {
  /* Align with the left edge of the GNB "제품" text (logo 87 + gap 100 + item padding 24). */
  padding: 20px 20px 40px calc(var(--side-padding) + 211px);
}

.lnb-product-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.lnb-product-card:hover {
  opacity: 1;
}

.lnb-product-img {
  width: 294px;
  height: 177px;
  background: url('images/lnb-inclued-thumb.png') center center / cover no-repeat;
  flex-shrink: 0;
}

.lnb-product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 150px;
}

.lnb-product-logo-wrap {
  position: relative;
  width: 150px;
  height: 36px;
}

.lnb-product-logo {
  width: 150px;
  height: 36px;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.2s ease;
}

.lnb-product-logo-default {
  opacity: 1;
}

.lnb-product-logo-hover {
  opacity: 0;
}

.lnb-product-card:hover .lnb-product-logo-default {
  opacity: 0;
}

.lnb-product-card:hover .lnb-product-logo-hover {
  opacity: 1;
}

.lnb-product-desc {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  color: var(--gray-600);
}

/* ---------- 회사소개 / 고객지원 LNB (menu=3, 4) ---------- */
.lnb-simple .lnb-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 20px 0 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* 회사소개 서브메뉴 - GNB "회사소개" 아래 정렬 */
.lnb-company .lnb-inner {
  padding-left: 493px;
}

/* 고객지원 서브메뉴 - GNB "고객지원" 아래 정렬 */
.lnb-support .lnb-inner {
  padding-left: 606px;
}

.lnb-link {
  display: flex;
  align-items: center;
  height: 24px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  color: var(--gray-800);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lnb-link:hover {
  color: var(--primary-500);
}

/* ============================================
   Hero 섹션
   ============================================ */
.hero {
  background-color: transparent;
  height: 620px;
  margin-top: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  padding-top: 140px;
  text-align: center;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: var(--white);
  margin: 0;
}

.hero-subtitle {
  margin-top: 84px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.64px;
  color: var(--white);
  text-align: center;
}

.hero-accent {
  font-weight: 700;
  background: linear-gradient(356deg, #6F5DFF 30.87%, #436CFF 127.41%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .hero {
    height: 460px;
  }

  .hero-content {
    padding-top: 108px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: -0.96px;
  }

  .hero-subtitle {
    margin-top: 60px;
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 420px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: -0.68px;
  }

  .hero-subtitle {
    margin-top: 46px;
    font-size: 18px;
    letter-spacing: -0.36px;
  }
}

/* ============================================
   Section 1 - 관제 플랫폼
   ============================================ */
.section-platform {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px var(--side-padding);
  background-color: var(--white);
}

.section-platform-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--gray-900);
  margin-bottom: 40px;
}

.platform-grid {
  display: flex;
  width: 1240px;
  height: 600px;
  overflow: hidden;
  background-color: var(--gray-900);
}

/* 좌측 카드 영역 */
.platform-left {
  width: 448px;
  height: 600px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* ---------- 공통 카드 ---------- */
.platform-card {
  width: 448px;
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--gray-900);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.6s ease;
  cursor: pointer;
}

.platform-card.active {
  height: 400px;
  background: var(--card-gradient);
}

/* 카드 헤더 (로고/타이틀 + 설명) */
.card-header {
  position: relative;
  padding: 40px;
  z-index: 2;
}

.card-logo {
  width: 208px;
  height: 50px;
  margin-bottom: 22px;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 18px;
}

.card-desc {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.48px;
  color: var(--white);
}

/* 열림 시 노출 콘텐츠 (버튼) */
.card-open-content {
  position: absolute;
  top: 315px;
  left: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  z-index: 2;
}

.platform-card.active .card-open-content {
  opacity: 1;
  transform: translateY(0);
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  padding: 12px 14px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.36px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.card-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* 인디케이터 바 */
.card-indicator-track {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card.active .card-indicator-track {
  opacity: 1;
}

.card-indicator-fill {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card.active .card-indicator-fill {
  opacity: 1;
  animation: indicatorProgress 5s linear forwards;
}

@keyframes indicatorProgress {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

/* ---------- 우측 콘텐츠 슬라이드 ---------- */
.platform-right {
  width: 792px;
  height: 600px;
  position: relative;
  overflow: hidden;
  background-color: var(--gray-900);
}

.platform-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.platform-slide.active {
  opacity: 1;
}

.platform-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 792px;
  height: 792px;
  opacity: 0.5;
  object-fit: cover;
}

.platform-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 792px;
  padding: 40px;
  display: flex;
  align-items: center;
}

.platform-slide-text p {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.8px;
  color: var(--white);
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

/* ============================================
   Section 2 - 기술 노하우
   ============================================ */
.section-tech {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px var(--side-padding);
  background-color: var(--white);
}

.section-tech-header {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.section-tech-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--gray-900);
  width: 384px;
  flex-shrink: 0;
}

.section-tech-title .gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 멀티모달 분석 카드 (큰 카드) */
.card-multimodal {
  width: 818px;
  height: 420px;
  background-color: var(--primary-500);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-multimodal-bg {
  position: absolute;
  top: -63px;
  left: 0;
  width: 1009px;
  height: 673px;
  opacity: 0.3;
  mix-blend-mode: color-dodge;
  object-fit: cover;
  pointer-events: none;
}

.card-multimodal-title {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.72px;
  color: var(--white);
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

.card-multimodal-desc {
  position: absolute;
  top: 116px;
  left: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.48px;
  color: var(--white);
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

/* 하단 3개 카드 그리드 */
.tech-cards-row {
  display: flex;
  gap: 26px;
  margin-top: 0;
}

.tech-card {
  width: 396px;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.tech-card-dark {
  background-color: var(--black);
}

.tech-card-light {
  background-color: var(--gray-50);
}

.tech-card-gray {
  background-color: var(--gray-900);
}

.tech-card-title {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.72px;
}

.tech-card-title.text-white {
  color: var(--white);
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

.tech-card-title.text-dark {
  color: var(--gray-900);
}

.tech-card-desc {
  position: absolute;
  top: 116px;
  left: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.48px;
  white-space: nowrap;
}

.tech-card-desc.text-white {
  color: var(--white);
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

.tech-card-desc.text-dark {
  color: var(--gray-900);
}

/* 상황 분석 카드 이미지 */
.card-prism-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 396px;
  height: 207px;
  object-fit: cover;
}

/* 객체 탐색 카드 이미지 */
.card-magnifying-container {
  position: absolute;
  left: 40px;
  top: 126px;
  width: 356px;
  height: 356px;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: multiply;
}

.card-magnifying-img {
  width: 356px;
  height: 356px;
  opacity: 0.6;
  object-fit: cover;
  transform: scaleY(-1) rotate(180deg);
}

/* AI 에이전트 카드 이미지 */
.card-ai-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  opacity: 0.5;
  object-fit: cover;
}

.card-object-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 396px;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   Section 3 - 산업 분야 캐러셀
   ============================================ */
.section-industry {
  background-color: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.section-industry-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.8px;
  color: var(--gray-900);
  padding: 0 var(--side-padding);
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 var(--side-padding);
  width: max-content;
  animation: carousel-scroll 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* 카드 7개: (360px + 24px) × 7 = 2688px */
    transform: translateX(-2688px);
  }
}

.carousel-card {
  width: 360px;
  height: 380px;
  background-color: var(--gray-800);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
}

.carousel-card-title {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.68px;
  color: var(--white);
  z-index: 1;
}

/* ============================================
   End Section - CTA 배너
   ============================================ */
.section-cta {
  background-color: var(--gray-900);
  height: 422px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.section-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 632px;
}

.section-cta-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.96px;
  color: var(--white);
  text-align: center;
}

.section-cta .cta-btn {
  width: 160px;
  height: 48px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--gray-100);
  width: 100%;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px var(--side-padding);
  position: relative;
  height: 410px;
}

.footer-logo {
  display: block;
  width: 218px;
  height: 50px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-nav {
  position: absolute;
  top: 70px;
  left: 855px;
  width: 485px;
  height: 128px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
}

.footer-nav-group:nth-child(1) {
  left: 0;
}

.footer-nav-group:nth-child(2) {
  left: 124px;
}

.footer-nav-group:nth-child(3) {
  left: 277px;
}

.footer-nav-group:nth-child(4) {
  left: 425px;
}

.footer-nav-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.28px;
  color: var(--gray-900);
  margin-bottom: 40px;
}

.footer-nav-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.28px;
  color: var(--gray-900);
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--primary-500);
}

.footer-nav-link-hidden {
  display: none;
}

.footer-bottom {
  position: absolute;
  top: 353px;
  left: var(--side-padding);
}

.footer-company {
  position: absolute;
  top: 210px;
  left: var(--side-padding);
  max-width: 760px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.28px;
  color: var(--gray-900);
}

.footer-company p {
  margin-bottom: 6px;
}

.footer-company p:last-child {
  margin-bottom: 0;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.28px;
  color: var(--gray-600);
}
