/* ==========================================================================
   인포디오 홈페이지 - 메인 스타일시트
   Design System: SUIT Font, Brand Orange #f47e20
   Responsive: Desktop(1440) → Tablet(1024) → Mobile(768)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS 커스텀 속성 (디자인 토큰)
   -------------------------------------------------------------------------- */
:root {
  /* 브랜드 컬러 */
  --color-primary: #f47e20;        /* 메인 오렌지 */
  --color-primary-dark: #e06d10;   /* 호버용 진한 오렌지 */

  /* 텍스트 컬러 */
  --color-text-black: #000000;
  --color-text-dark: #222222;
  --color-text-body: #5c5c5c;
  --color-text-muted: #6b7684;
  --color-text-footer: #6d7882;

  /* 배경 컬러 */
  --color-bg-white: #ffffff;
  --color-bg-gray: #f9fafb;
  --color-bg-tag: #f3f3f3;

  /* 상품 카드 배경 컬러 */
  --color-card-tourmap: #ffdba7;
  --color-card-stamp: #efba4a;
  --color-card-audio: #ebcfff;
  --color-card-video: #ffa657;
  --color-card-chatbot: #cbecff;

  /* 상품 카드 텍스트 컬러 */
  --color-tourmap-text: #e99552;
  --color-stamp-text: #ffffff;
  --color-audio-text: #7a52ac;
  --color-video-text: #faf3eb;
  --color-chatbot-text: #17a4d9;

  /* 보더 */
  --color-border-header: #cdd1d5;
  --color-border-circle: #c0c7d1;

  /* 레이아웃 */
  --max-width: 1240px;             /* 컨텐츠 최대 너비 */
  --header-height: 59px;           /* 헤더 높이 */

  /* 폰트 */
  --font-primary: 'SUIT', -apple-system, BlinkMacSystemFont, sans-serif;

  /* 트랜지션 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* --------------------------------------------------------------------------
   1. 리셋 & 기본 스타일
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* 부드러운 스크롤 */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-black);
  line-height: 1.5;
  background: var(--color-bg-white);
  overflow-x: hidden; /* 가로 스크롤 방지 */
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   2. 유틸리티 클래스
   -------------------------------------------------------------------------- */

/* 컨텐츠 영역 래퍼 - 가로 최대 너비 제한 + 중앙 정렬 */
.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* 스크롤 시 페이드인 애니메이션 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* IntersectionObserver가 붙여주는 클래스 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 순차 딜레이 (자식 요소별) */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* 섹션 공통 헤더 스타일 */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* 섹션 라벨 (Problem, Products, References) */
.section-header__label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.8px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* 섹션 제목 */
.section-header__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-black);
  letter-spacing: -1.6px;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* 섹션 설명 */
.section-header__desc {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: -0.8px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   3. 헤더 (앱바) - 가로 전체 너비
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;              /* 가로 전체 차지 */
  height: var(--header-height);
  background: var(--color-bg-white);
  border-bottom: 0.5px solid var(--color-border-header);
  z-index: 1000;             /* 최상단 레이어 */
  display: flex;
  align-items: center;
}

/* 헤더 내부 컨텐츠 영역 */
.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* 로고 */
.header__logo img {
  height: 38px;
  width: auto;
}

/* 네비게이션 */
.header__nav {
  display: flex;
  gap: 90px;
}

.header__nav a {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-body);
  letter-spacing: -0.64px;
  line-height: 1.6;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--color-primary);
}

/* 언어 선택 */
.header__lang {
  margin-left: auto;
  display: flex;
  gap: 20px;
  font-size: 16px;
  letter-spacing: -0.64px;
  line-height: 1.6;
}

.header__lang button {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-body);
  letter-spacing: -0.64px;
  transition: color var(--transition-fast), font-weight var(--transition-fast);
}

/* 현재 선택된 언어 강조 */
.header__lang button.is-active {
  color: var(--color-text-black);
  font-weight: 700;
}

/* 모바일 햄버거 메뉴 버튼 */
.header__menu-btn {
  display: none; /* 데스크탑에서 숨김 */
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-black);
  transition: var(--transition-normal);
}

/* --------------------------------------------------------------------------
   4. 히어로 섹션
   -------------------------------------------------------------------------- */
.hero {
  /* 헤더 높이만큼 상단 패딩 */
  padding-top: var(--header-height);
  background: var(--color-bg-white);
  position: relative;
  min-height: calc(var(--header-height) + 820px);
  overflow: hidden;
}

/* 히어로 내부 레이아웃 */
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;                /* 이미지 위에 텍스트 표시 */
  display: flex;
  align-items: center;
  min-height: 820px;
}

/* 히어로 텍스트 영역 */
.hero__content {
  position: relative;
  z-index: 2;                /* 이미지 위에 표시 */
  max-width: 635px;
  padding: 160px 0;
}

/* 히어로 부제목 */
.hero__subtitle {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-black);
  letter-spacing: -0.8px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* 히어로 메인 타이틀 */
.hero__title {
  margin-bottom: 20px;
}

.hero__title-line1 {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--color-text-black);
  letter-spacing: -1.6px;
  line-height: 1.2;
}

.hero__title-brand {
  display: block;
  font-size: 60px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -2.4px;
  line-height: 1.2;
}

/* 히어로 설명 텍스트 */
.hero__desc {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: -0.8px;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* 히어로 CTA 버튼 그룹 */
.hero__buttons {
  display: flex;
  gap: 10px;
}

/* 히어로 버튼 공통 */
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.hero__btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.hero__btn:hover svg {
  stroke: #fff;
}

.hero__btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  transition: stroke var(--transition-fast);
}

/* 히어로 우측 이미지 - hero__inner 기준 absolute */
.hero__image {
  position: absolute;
  right: -20%;
  top: -10%;
  width: 90%;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: auto;              /* 비율 유지하며 너비 기준으로 확대 */
  object-position: right center;
}

/* --------------------------------------------------------------------------
   5. Problem 섹션
   -------------------------------------------------------------------------- */
.problem {
  background: var(--color-bg-gray); /* 배경 전체 너비 */
  padding: 150px 0;
}

/* Problem 카드 컨테이너 */
.problem__cards {
  display: flex;
  justify-content: center;
  /* 원형 카드가 살짝 겹치는 디자인 */
  padding-right: 20px;
}

/* 개별 Problem 카드 (원형) */
.problem__card {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--color-border-circle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-shrink: 0;
  margin-right: -20px;       /* 원형끼리 살짝 겹침 */
  background: var(--color-bg-gray);
}

.problem__card:last-child {
  margin-right: 0;
}

/* 이모지 아이콘 */
.problem__icon {
  font-size: 50px;
  line-height: 1;
  /* 그레이스케일 필터로 디자인과 동일한 회색 톤 적용 */
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Problem 카드 텍스트 */
.problem__card-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-black);
  line-height: 1;
  text-align: center;
}

.problem__card-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.43;
  text-align: center;
  padding: 0 30px;
}

/* --------------------------------------------------------------------------
   6. Products 섹션
   -------------------------------------------------------------------------- */
.products {
  background: var(--color-bg-white);
  padding: 150px 0;
}

/* 인포디오 BI 로고 (기린) */
.products__logo {
  text-align: center;
  margin-bottom: 50px;
}

.products__logo img {
  display: inline-block;
  width: 130px;
  height: auto;
  transform: rotate(10deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

/* 상품 그리드 레이아웃 */
.products__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 상품 그리드 행 */
.products__row {
  display: flex;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   6-1. 상품 카드 공통 스타일
   -------------------------------------------------------------------------- */
.product-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

/* 상품 카드 제목 (대문자 영문) */
.product-card__title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -4px;
  line-height: 1.1;          /* 1 → 1.1: 글자 상하 잘림 방지 */
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

/* 상품 카드 설명 - <br>로 줄바꿈 제어, 카드 타입별 너비는 개별 지정 */
.product-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* 상단 행 카드(610px): 설명 영역 넓게 (Figma 기준 267px 컨테이너) */
.product-card--tourmap .product-card__desc,
.product-card--stamp .product-card__desc {
  max-width: 300px;
}

/* 하단 행 카드(400px): 설명 영역 좁게 */
.product-card--audio .product-card__desc {
  max-width: 200px;          /* Figma: 184px */
}

.product-card--video .product-card__desc {
  max-width: 200px;          /* Figma: 180px */
}

.product-card--chatbot .product-card__desc {
  max-width: 230px;          /* Figma: 214px */
}

/* "자세히 알아보기" 버튼 */
.product-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 30px;
  padding: 0 12px;
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-top: auto;           /* 하단 고정 */
  transition: background var(--transition-fast);
  width: fit-content;
  position: relative;
  z-index: 2;                /* 이미지보다 위에 표시 */
}

.product-card__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-card__btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* 상품 카드 내부 이미지 - z-index 최하위로 텍스트 뒤에 배치 */
.product-card__image {
  position: absolute;
  z-index: 1;                /* 텍스트(z:2)보다 아래 */
}

/* --------------------------------------------------------------------------
   6-2. 디지털 투어맵 카드
   -------------------------------------------------------------------------- */
.product-card--tourmap {
  background: var(--color-card-tourmap);
  flex: 1;                    /* 행의 절반 차지 */
}

.product-card--tourmap .product-card__title,
.product-card--tourmap .product-card__desc {
  color: var(--color-tourmap-text);
}

/* Figma: 카드(610×400) 내 폰 목업 left=377, top=150, w=192, h=329 */
.product-card--tourmap .product-card__image {
  right: 40px;               /* 610 - 377 - 192 ≈ 41px */
  top: 150px;                /* 상단에서 150px */
  width: 192px;
  border-radius: 14px;
  border: 7px solid #fff;
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   6-3. 스탬프 투어 카드
   -------------------------------------------------------------------------- */
.product-card--stamp {
  background: var(--color-card-stamp);
  flex: 1;
}

.product-card--stamp .product-card__title,
.product-card--stamp .product-card__desc {
  color: var(--color-stamp-text);
}

/* Figma: 카드(610×400) 내 스탬프 left=267, top=49, w=436, rotate(-10deg) */
.product-card--stamp .product-card__image {
  right: -90px;              /* 카드 밖으로 살짝 넘침 */
  top: 50px;
  width: 72%;                /* 436/610 ≈ 71.5% */
  transform: rotate(-10deg);
}

/* --------------------------------------------------------------------------
   6-4. AI 오디오 가이드 카드
   -------------------------------------------------------------------------- */
.product-card--audio {
  background: var(--color-card-audio);
  flex: 1;
  min-height: 400px;
}

.product-card--audio .product-card__title,
.product-card--audio .product-card__desc {
  color: var(--color-audio-text);
}

/* Figma: 카드(400×400) 내 이미지 left=69, top=71, w=409, h=345 (카드 넘침) */
.product-card--audio .product-card__image {
  left: 69px;                /* 좌측에서 69px */
  top: 71px;
  width: 102%;               /* 409/400 ≈ 102%, 카드 밖으로 넘침 */
  height: auto;
}

/* --------------------------------------------------------------------------
   6-5. AI 비디오 가이드 카드
   -------------------------------------------------------------------------- */
.product-card--video {
  background: var(--color-card-video);
  flex: 1;
}

.product-card--video .product-card__title,
.product-card--video .product-card__desc {
  color: var(--color-video-text);
}

/* Figma: 카드(400×400) 내 이미지 left=182, top=138, w=231, h=262 */
.product-card--video .product-card__image {
  right: -11px;              /* 400 - 182 - 231 ≈ -13px */
  top: 138px;
  width: 58%;                /* 231/400 ≈ 57.8% */
  height: auto;
}

/* --------------------------------------------------------------------------
   6-6. AI 챗봇 카드
   -------------------------------------------------------------------------- */
.product-card--chatbot {
  background: var(--color-card-chatbot);
  flex: 1;
}

.product-card--chatbot .product-card__title,
.product-card--chatbot .product-card__desc {
  color: var(--color-chatbot-text);
}

/* 챗봇 말풍선 컨테이너 - 개별 말풍선은 각각 right 기준 배치 */
.chatbot-bubbles {
  position: absolute;
  top: 197px;
  left: 0;
  right: 0;
}

/* 사용자 질문 말풍선 */
.chatbot-bubble--user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  right: 44px;               /* Figma 기준 우측에서 44px */
  top: 0;
}

/* 사용자 말풍선 꼬리 (좌측 하단) */
.chatbot-bubble--user::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
}

.chatbot-bubble--user img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chatbot-bubble--user span {
  font-size: 14px;
  color: var(--color-text-black);
  letter-spacing: -0.56px;
  line-height: 1.6;
}

/* AI 응답 말풍선 */
.chatbot-bubble--bot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  right: 13px;               /* Figma 기준 우측에서 13px */
  top: 75px;                 /* 사용자 말풍선 아래 (약 63+12px) */
}

/* AI 말풍선 꼬리 (우측 하단) */
.chatbot-bubble--bot::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
}

.chatbot-bubble--bot img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chatbot-bubble--bot span {
  font-size: 14px;
  color: var(--color-text-black);
  letter-spacing: -0.56px;
  line-height: 1.4;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   7. References 섹션
   -------------------------------------------------------------------------- */
.references {
  background: var(--color-bg-gray);
  padding: 150px 0;
}

/* 레퍼런스 카드 그리드 */
.references__grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* 레퍼런스 개별 카드 */
.ref-card {
  width: 350px;
  flex-shrink: 0;
}

/* 레퍼런스 카드 이미지 */
.ref-card__image {
  width: 100%;
  height: 288px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 31px;
}

.ref-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.ref-card:hover .ref-card__image img {
  transform: scale(1.05);   /* 호버 시 줌인 효과 */
}

/* 레퍼런스 카드 텍스트 */
.ref-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-black);
  line-height: 20px;
  margin-bottom: 8px;
}

.ref-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.43;
  margin-bottom: 15px;
}

/* 레퍼런스 태그 */
.ref-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ref-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--color-bg-tag);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   8. CTA 섹션
   -------------------------------------------------------------------------- */
.cta {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* CTA 배경 장식 패턴 */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  /* 반투명 사각형 패턴 */
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
  background-size: 120px 120px;
  pointer-events: none;
}

/* CTA 마스코트 이미지 (기린) */
.cta__mascot {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  opacity: 0.3;
}

/* CTA 텍스트 영역 */
.cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.44px;
  margin-bottom: 15px;
}

.cta__desc {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 30px;
}

/* CTA 버튼 */
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: background var(--transition-fast);
}

.cta__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cta__btn svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* --------------------------------------------------------------------------
   9. 푸터
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-bg-white);
  padding: 50px 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* 푸터 로고 */
.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  height: 51px;
  width: auto;
}

/* 푸터 회사 정보 */
.footer__info {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-footer);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* 푸터 구분선 */
.footer__divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

/* 저작권 */
.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-footer);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   10. 반응형 - 태블릿 (1024px 이하)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  /* 섹션 헤더 축소 */
  .section-header__title {
    font-size: 32px;
  }

  .section-header__desc {
    font-size: 16px;
  }

  /* 히어로 조정 */
  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 480px;
    padding: 0 40px;
  }

  .hero__content {
    padding: 120px 0;
    max-width: 50%;
  }

  .hero__title-line1 {
    font-size: 32px;
  }

  .hero__title-brand {
    font-size: 48px;
  }

  .hero__desc {
    font-size: 16px;
  }

  .hero__image {
    right: -80px;
    top: 5%;
    width: 65%;
  }

  /* Problem 원형 카드 축소 */
  .problem__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-right: 0;
  }

  .problem__card {
    width: 220px;
    height: 220px;
    margin-right: -10px;
  }

  .problem__icon {
    font-size: 36px;
  }

  .problem__card-title {
    font-size: 15px;
  }

  .problem__card-desc {
    font-size: 12px;
    padding: 0 20px;
  }

  /* 상품 카드 제목 축소 */
  .product-card__title {
    font-size: 48px;
  }

  /* 상품 그리드 2행 구조 유지, 하단행 크기 조정 */
  .products__row--bottom {
    flex-wrap: wrap;
  }

  .products__row--bottom .product-card {
    min-width: calc(50% - 10px);
    flex: 1 1 calc(50% - 10px);
  }

  /* 레퍼런스 카드 크기 축소 */
  .ref-card {
    width: 300px;
  }

  .ref-card__image {
    height: 220px;
  }

  /* CTA 제목 축소 */
  .cta__title {
    font-size: 28px;
  }

  .cta__desc {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   11. 반응형 - 모바일 (768px 이하)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* 헤더 모바일 레이아웃 */
  .header__inner {
    gap: 0;
    justify-content: space-between;
  }

  /* 데스크탑 네비/언어 숨김, 햄버거 표시 */
  .header__nav {
    display: none;
  }

  .header__lang {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  /* 모바일 메뉴 배경 오버레이 */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .mobile-overlay.is-open {
    display: block;
  }

  /* 모바일 네비 열림 상태 */
  .header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 12px 20px 0;
    gap: 0;
    z-index: 999;
  }

  .header__nav.is-open a {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 8px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--color-text-primary);
  }

  .header__nav.is-open a:last-child {
    border-bottom: none;
  }

  .header__lang.is-open {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 12px 28px 20px;
    gap: 12px;
    z-index: 999;
    border-top: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  /* 섹션 헤더 모바일 */
  .section-header__title {
    font-size: 26px;
  }

  .section-header__desc {
    font-size: 14px;
    padding: 0 10px;
  }

  .section-header__label {
    font-size: 16px;
  }

  /* 히어로 모바일 레이아웃 (세로 배치) */
  .hero {
    min-height: auto;
  }

  .hero__inner {
    flex-direction: column;
    min-height: auto;
    height: clamp(600px, 85vh, 900px);
    padding: 40px 20px 0;
    overflow: hidden;
    position: relative;
  }

  .hero__content {
    max-width: 100%;
    padding: 40px 0;
    text-align: center;
  }

  .hero__title-line1 {
    font-size: 24px;
  }

  .hero__title-brand {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    position: absolute;
    left: -15%;
    bottom: 0;
    width: 130%;
    right: auto;
    top: auto;
  }

  .hero__image img {
    width: 100%;
    height: auto;
  }

  /* Problem 모바일 - 2x2 그리드 */
  .problem {
    padding: 80px 0;
  }

  .problem__cards {
    display: grid;
    grid-template-columns: repeat(2, 158px);
    grid-template-rows: repeat(2, 166px);
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .problem__card {
    width: 170px;
    height: 170px;
    margin: 0;
    padding: 20px;
  }

  /* Products 모바일 - 단일 열 */
  .products {
    padding: 80px 0;
  }

  .products__row {
    flex-direction: column;
  }

  .product-card {
    min-height: 350px;
  }

  .product-card__title {
    font-size: 40px;
  }

  /* References 모바일 - 단일 열 */
  .references {
    padding: 80px 0;
  }

  .references__grid {
    flex-direction: column;
    align-items: center;
  }

  .ref-card {
    width: 100%;
    max-width: 400px;
  }

  /* CTA 모바일 */
  .cta {
    padding: 60px 0;
  }

  .cta__title {
    font-size: 22px;
  }

  .cta__desc {
    font-size: 14px;
  }

  .cta__mascot {
    width: 150px;
    opacity: 0.15;
  }

  /* 푸터 모바일 */
  .footer__info {
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------
   12. 반응형 - 작은 모바일 (480px 이하)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero__title-line1 {
    font-size: 20px;
  }

  .hero__title-brand {
    font-size: 32px;
  }

  .hero__desc {
    font-size: 14px;
  }

  .hero__btn {
    height: 44px;
    font-size: 14px;
    padding: 8px 16px;
  }

  .section-header__title {
    font-size: 22px;
  }

  .problem__cards {
    grid-template-columns: repeat(2, 133px);
    grid-template-rows: repeat(2, 141px);
  }

  .problem__card {
    width: 145px;
    height: 145px;
    margin: 0;
    padding: 15px;
  }

  .problem__icon {
    font-size: 28px;
  }

  .problem__card-title {
    font-size: 12px;
  }

  .problem__card-desc {
    display: none;
  }

  .product-card__title {
    font-size: 32px;
  }

  .product-card__desc {
    font-size: 14px;
  }

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