/* =================================================================
   ROROLAB Design System
   Version 1.0
   ================================================================= */

/* CSS Variables */
:root {
  /* Colors */
  --bg: #050506;
  --bg-elevated: #0a0a0c;
  --fg: #f5f5f7;
  --fg-muted: rgba(245, 245, 247, 0.65);
  --fg-subtle: rgba(245, 245, 247, 0.4);
  --border: rgba(245, 245, 247, 0.08);
  --border-hover: rgba(245, 245, 247, 0.18);
  --card-bg: rgba(245, 245, 247, 0.03);
  --card-bg-hover: rgba(245, 245, 247, 0.06);
  
  /* Accent */
  --accent: #a78bfa;
  --accent-glow: rgba(167, 139, 250, 0.25);
  
  /* Layout */
  --max-width: 1320px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  
  /* Typography */
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', 
               'Noto Sans KR', 'Malgun Gothic', sans-serif;
  
  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px var(--accent-glow);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  cursor: none; /* 커스텀 커서 사용 - 기본 커서 숨김 */
  -webkit-tap-highlight-color: transparent; /* 모바일 터치 하이라이트 제거 */
}

/* 모든 클릭 가능한 요소에서 기본 커서 숨기기 */
a,
button,
.btn,
input[type="submit"],
input[type="button"],
select {
  cursor: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s var(--ease-out);
}

a:hover {
  opacity: 0.85;
}

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

/* Layout */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .wrap {
    padding: 0 48px;
  }
}

/* =================================================================
   GRAIN OVERLAY
   ================================================================= */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* =================================================================
   CUSTOM CURSOR
   ================================================================= */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  background: var(--fg);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out), border-radius 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.cursor.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(1.8);
}

.cursor.view {
  transform: translate(-50%, -50%) scale(1);
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: normal;
}

.cursor.email {
  transform: translate(-50%, -50%) scale(4);
}

.cursor.explore {
  transform: translate(-50%, -50%) scale(2.5);
}

.cursor.down {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.cursor.explore .cursor-text {
  opacity: 1;
}

.cursor.view .cursor-text {
  opacity: 0;
}

/* Cursor rocket icon */
.cursor-rocket {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translate(-50%, -50%) rotate(-30deg);
  color: var(--fg);
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
  will-change: transform, opacity;
}

/* 커스텀 커서가 활성화된 요소에서 기본 커서 숨기기 */
[data-cursor] {
  cursor: none !important;
}

.cursor.view .cursor-rocket {
  opacity: 1;
}

/* =================================================================
   TOPBAR / NAVIGATION
   ================================================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all 0.5s var(--ease-out);
}

.topbar.elevated {
  padding: 12px 0;
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

/* PC에서 브랜드와 네비게이션 간격 조정 */
@media (min-width: 1200px) {
  .topbar-inner {
    gap: 24px;
  }
  
  .brand {
    max-width: 240px;
  }
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1001;
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  min-width: 0;
}

/* 모바일에서 브랜드 간격 조정 */
@media (max-width: 768px) {
  .brand {
    gap: 12px;
  }
}

.brand:hover {
  transform: scale(1.02);
  opacity: 1;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--fg);
  transform: rotate(-30deg);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}

/* 모바일에서 로켓 로고 크기 증가 */
@media (max-width: 768px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }
}

.brand-logo svg {
  width: 100%;
  height: 100%;
}

.brand:hover .brand-logo {
  animation: logoSpin 2s ease-in-out;
}

@keyframes logoSpin {
  0% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(330deg);
  }
}

.brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* PC에서 브랜드 텍스트가 네비게이션을 가리지 않도록 조정 */
@media (min-width: 1200px) {
  .brand-text {
    font-size: 18px;
    letter-spacing: 0.1em;
    max-width: 200px;
  }
}

/* 1100px~1200px 사이에서 브랜드 텍스트 크기 조정 */
@media (min-width: 1100px) and (max-width: 1199px) {
  .brand-text {
    font-size: 16px;
    letter-spacing: 0.08em;
    max-width: 180px;
  }
  
  .brand {
    max-width: 220px;
  }
}

/* 모바일에서 브랜드 텍스트 줄바꿈 허용 */
@media (max-width: 768px) {
  .brand-text {
    font-size: 16px;
    letter-spacing: 0.08em;
    white-space: normal;
    line-height: 1.2;
    height: auto;
    max-width: 120px;
  }
}

/* Brand dot */
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Center Navigation */
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1200px) {
  .nav {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

/* 메뉴 토글이 나타나는 시점(1200px 미만)에서 topbar의 언어 선택기 숨김 */
@media (max-width: 1199px) {
  .topbar-right .lang-selector {
    display: none;
  }
}

.nav-link {
  position: relative;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  transition: color 0.3s var(--ease-out);
  overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg);
  opacity: 1;
}

.nav-link__text {
  position: relative;
  display: block;
}

.nav-link__line {
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-link:hover .nav-link__line,
.nav-link.active .nav-link__line {
  transform: scaleX(1);
  transform-origin: left;
}

/* Topbar Right Section */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1001;
}

/* Status Badge */
.status-badge {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: rgba(245, 245, 247, 0.02);
  transition: all 0.4s var(--ease-out);
}

.status-badge:hover {
  border-color: var(--border-hover);
  background: rgba(245, 245, 247, 0.04);
}

@media (min-width: 900px) {
  .status-badge {
    display: flex;
  }
}

.status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  }
  50% { 
    opacity: 0.7; 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
  }
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.lang-btn {
  padding: 6px 12px;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  cursor: none !important;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.lang-btn:hover {
  color: var(--fg);
  background: var(--bg);
}

.lang-btn.active {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 2px 8px rgba(167, 139, 250, 0.3);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 모바일 메뉴 안의 언어 선택기 스타일 */
@media (max-width: 1199px) {
  .menu-overlay__lang {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .menu-overlay__lang .lang-selector {
    padding: 6px;
    gap: 4px;
  }
  
  .menu-overlay__lang .lang-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  /* 모바일에서 추가 스타일 조정 */
  .menu-overlay__lang {
    padding: 16px 0;
  }
  
  .menu-overlay__lang .lang-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
}

.status-badge__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
}

/* Header CTA Button */
.header-cta {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.header-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md), 0 0 40px rgba(167, 139, 250, 0.2);
  opacity: 1;
}

.header-cta:hover::before {
  opacity: 1;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.header-cta__text {
  position: relative;
  z-index: 1;
}

.header-cta__icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}

.header-cta__icon svg {
  width: 100%;
  height: 100%;
}

.header-cta:hover .header-cta__icon {
  transform: translate(3px, -3px);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(245, 245, 247, 0.02);
  cursor: none !important;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* 모바일에서 메뉴 버튼 가시성 개선 */
@media (max-width: 768px) {
  .menu-btn {
    width: 56px;
    height: 56px;
    border-width: 1.5px;
    border-color: var(--border-hover);
    background: rgba(245, 245, 247, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .menu-btn__inner {
    width: 26px;
    height: 16px;
  }
  
  .menu-btn__line {
    height: 2.5px;
  }
}

.menu-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform: scale(0);
  border-radius: inherit;
  transition: transform 0.5s var(--ease-out);
}

.menu-btn:hover {
  border-color: var(--border-hover);
}

body.menu-open .menu-btn::before {
  transform: scale(1);
}

@media (min-width: 1200px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn__inner {
  position: relative;
  width: 24px;
  height: 14px;
  z-index: 1;
}

.menu-btn__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.menu-btn__line:first-child {
  top: 0;
}

.menu-btn__line:last-child {
  bottom: 0;
  width: 60%;
}

.menu-btn:hover .menu-btn__line:last-child {
  width: 100%;
}

body.menu-open .menu-btn__line {
  background: var(--bg);
}

body.menu-open .menu-btn__line:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.menu-open .menu-btn__line:last-child {
  bottom: 50%;
  width: 100%;
  transform: translateY(50%) rotate(-45deg);
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--fg);
  cursor: none !important;
  white-space: nowrap;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.1) 0%, 
    rgba(255,255,255,0) 50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  opacity: 1;
}

.btn:hover::before {
  opacity: 1;
}

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

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: transparent;
}

.btn-primary:hover {
  background: #fff;
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-outline {
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 15px;
}

.btn-icon {
  font-size: 16px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-primary:hover .btn-icon {
  transform: translate(2px, -2px);
}

/* =================================================================
   MENU OVERLAY
   ================================================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay__bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, 0.95);
  backdrop-filter: blur(30px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.menu-overlay__inner {
  position: relative;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out-expo), 
              opacity 0.5s var(--ease-out);
}

body.menu-open .menu-overlay__bg {
  opacity: 1;
}

body.menu-open .menu-overlay__inner {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 0;
}

.menu-close {
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--fg);
  font-size: 14px;
  cursor: none !important;
  transition: all 0.3s var(--ease-out);
}

.menu-close:hover {
  border-color: var(--border-hover);
  background: var(--card-bg);
}

.menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.menu-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--fg-muted);
  padding: 8px 0;
  transform: translateX(-20px);
  opacity: 0;
  transition: color 0.3s var(--ease-out), 
              transform 0.6s var(--ease-out-expo),
              opacity 0.5s var(--ease-out);
}

body.menu-open .menu-link {
  opacity: 1;
  transform: translateX(0);
}

body.menu-open .menu-link:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .menu-link:nth-child(2) { transition-delay: 0.15s; }
body.menu-open .menu-link:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .menu-link:nth-child(4) { transition-delay: 0.25s; }
body.menu-open .menu-link:nth-child(5) { transition-delay: 0.3s; }

.menu-link:hover {
  color: var(--fg);
  opacity: 1;
}

.menu-overlay__footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.menu-cta {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-muted);
}

.menu-cta:hover {
  color: var(--fg);
}

body.menu-open {
  overflow: hidden;
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 340px 0 80px;
  overflow: hidden;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 180px 0 60px;
    min-height: auto;
    align-items: flex-start;
  }
}

/* Hero background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/rorolab_main_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  filter: grayscale(100%) contrast(1.1);
  pointer-events: none;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    transparent 20%,
    transparent 70%,
    var(--bg) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.hero-glow--1 {
  top: 5%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-glow--2 {
  top: 30%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  animation-delay: -3s;
}

.hero-glow--3 {
  bottom: 10%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--card-bg);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
  margin: 0 0 32px;
}

.hero-title__line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.hero-title__line em {
  font-style: italic;
  color: var(--accent);
}

.hero-title__accent {
  color: var(--fg-muted);
  font-weight: 400;
}

.hero-lead {
  max-width: 640px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =================================================================
   MARQUEE STRIP
   ================================================================= */
.marquee-strip {
  position: relative;
  padding: 24px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

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

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  transition: color 0.3s var(--ease-out);
}

.marquee-item:hover {
  color: var(--fg);
}

.marquee-dot {
  font-size: 6px;
  color: var(--accent);
  opacity: 0.6;
}

/* =================================================================
   SECTIONS
   ================================================================= */
.section {
  position: relative;
  padding: 100px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 140px 0;
  }
}

.section-header {
  margin-bottom: 60px;
}

.section-header--row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .section-header--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-header--center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}

.section-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 20px 0 0;
}

/* =================================================================
   SERVICES SECTION
   ================================================================= */
.section-services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(167, 139, 250, 0.08) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.service-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.service-tag {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-subtle);
  background: rgba(245, 245, 247, 0.04);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-tag {
  color: var(--fg-muted);
  background: rgba(245, 245, 247, 0.08);
}

/* =================================================================
   MANIFESTO
   ================================================================= */
.manifesto {
  padding: 120px 0;
  background: #000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-content {
  max-width: 1000px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg-muted);
  margin: 0 0 48px;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}

.manifesto-text strong {
  color: var(--fg);
  font-weight: 800;
}

/* =================================================================
   WORK SECTION
   ================================================================= */
.section-work {
  background: var(--bg);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out);
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.work-card--featured {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .work-card--featured {
    grid-column: span 2;
  }
  
  .work-card--featured .work-card__image {
    aspect-ratio: 21/9;
  }
}

.work-card__link {
  display: block;
  cursor: none; /* 커스텀 커서 사용 */
}

.work-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.work-card__image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(167, 139, 250, 0.2) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(99, 102, 241, 0.15) 100%);
  transition: transform 0.6s var(--ease-out);
}

.work-card__image-inner--alt1 {
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.2) 0%,
    rgba(16, 185, 129, 0.1) 50%,
    rgba(20, 184, 166, 0.15) 100%);
}

.work-card__image-inner--alt2 {
  background: linear-gradient(135deg, 
    rgba(251, 146, 60, 0.2) 0%,
    rgba(249, 115, 22, 0.1) 50%,
    rgba(234, 88, 12, 0.15) 100%);
}

.work-card__image-inner--alt3 {
  background: linear-gradient(135deg, 
    rgba(236, 72, 153, 0.2) 0%,
    rgba(219, 39, 119, 0.1) 50%,
    rgba(190, 24, 93, 0.15) 100%);
}

.work-card__image-inner--alt4 {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.2) 0%,
    rgba(37, 99, 235, 0.1) 50%,
    rgba(29, 78, 216, 0.15) 100%);
}

.work-card:hover .work-card__image-inner {
  transform: scale(1.05);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.work-card:hover .work-card__overlay {
  opacity: 1;
}

.work-card__view {
  padding: 12px 24px;
  background: var(--fg);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out);
}

.work-card:hover .work-card__view {
  transform: translateY(0);
}

.work-card__info {
  padding: 24px;
}

.work-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.work-card__category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-card__year {
  font-size: 13px;
  color: var(--fg-subtle);
}

.work-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.work-card__desc {
  font-size: 15px;
  color: var(--fg-muted);
}

/* =================================================================
   PROCESS SECTION
   ================================================================= */
.section-process {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.process-steps {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: -1px;
  transition: all 0.4s var(--ease-out);
}

@media (min-width: 768px) {
  .process-step {
    margin-bottom: 0;
    margin-right: -1px;
    border-radius: 0;
  }
  
  .process-step:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  
  .process-step:last-child {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
}

.process-step:hover {
  z-index: 2;
  background: var(--card-bg-hover);
  border-color: var(--border-hover);
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
  transition: opacity 0.4s var(--ease-out);
}

.process-step:hover .process-step__number {
  opacity: 0.6;
}

.process-step__content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.process-step__line {
  display: none;
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.section-testimonials {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
}

.testimonial__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.testimonial__footer {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__name {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
}

.testimonial__role {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* =================================================================
   NEW SERVICE LAUNCH SECTION
   ================================================================= */
.section-new-service {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-new-service::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.new-service-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.new-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-weight: 700;
}

.badge-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.badge-year {
  font-size: 18px;
  color: var(--fg);
  position: relative;
  padding-left: 16px;
}

.badge-year::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--border);
}

.new-service-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}

.title-highlight {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.new-service-desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.new-service-desc strong {
  color: var(--fg);
  font-weight: 600;
}

.new-service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .new-service-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.service-feature {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  text-align: left;
}

.service-feature:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.service-feature h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.service-feature p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0;
}

.new-service-cta {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.cta-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .section-new-service {
    padding: 60px 0;
  }

  .new-service-badge {
    padding: 10px 20px;
    margin-bottom: 24px;
  }

  .new-service-desc {
    margin-bottom: 40px;
  }

  .new-service-features {
    margin-bottom: 40px;
  }
}

/* =================================================================
   ABOUT SECTION
   ================================================================= */
.section-about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.about-grid {
  display: grid;
  gap: 60px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.about-content .section-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feature {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
}

.about-feature:hover {
  transform: translateX(8px);
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
}

.about-feature h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-feature p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* =================================================================
   CONTACT SECTION
   ================================================================= */
.section-contact {
  padding: 120px 0 80px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  margin-bottom: 48px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}

.contact-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.contact-content {
  padding: 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s var(--ease-out);
}

.contact-email:hover {
  color: var(--accent);
  opacity: 1;
}

.contact-details {
  display: grid;
  gap: 32px;
  text-align: left;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-detail__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-checklist {
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding: 10px 0;
  padding-left: 20px;
  font-size: 15px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.contact-checklist li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-detail p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  justify-content: center;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s var(--ease-out);
}

.footer-brand-link:hover {
  opacity: 0.8;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--fg);
  transform: rotate(-30deg);
  transition: transform 0.4s var(--ease-out);
}

.footer-brand-link:hover .footer-brand-logo {
  animation: logoSpin 2s ease-in-out;
}

.footer-brand-logo svg {
  width: 100%;
  height: 100%;
}

.footer-brand .brand-text {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  height: 32px;
  display: flex;
  align-items: center;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-subtle);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.3s var(--ease-out);
}

.footer-links a:hover {
  color: var(--fg);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-subtle);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: var(--fg-muted);
}

/* =================================================================
   REVEAL ANIMATIONS
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), 
              transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-char {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out-expo), 
              transform 0.9s var(--ease-out-expo);
}

.reveal-char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-char:nth-child(1) { transition-delay: 0.1s; }
.reveal-char:nth-child(2) { transition-delay: 0.2s; }
.reveal-char:nth-child(3) { transition-delay: 0.3s; }

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal, .reveal-char {
    opacity: 1;
    transform: none;
  }
  
  /* 모바일에서 기본 커서는 숨기되, 터치 애니메이션은 표시 */
  .cursor {
    display: block !important;
    opacity: 0;
    pointer-events: none;
  }
  
  .cursor.active {
    opacity: 1;
  }
  
  .cursor.view .cursor-rocket {
    opacity: 1;
  }
  
  .grain {
    display: none;
  }
  
  /* 모바일에서 기본 커서 및 터치 하이라이트 숨김 */
  body {
    cursor: default;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
  }
  
  a, button, .btn, input, textarea, select {
    cursor: default;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
  }
}

/* =================================================================
   CIRCLE BADGE (Rotating text around rocket)
   ================================================================= */
.circle-badge {
  position: fixed;
  bottom: 32px;
  right: 32px;
  left: auto;
  transform: translateX(0) scale(0.55);
  width: 240px;
  height: 240px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.6s var(--ease-out);
  pointer-events: auto;
}

.circle-badge:hover {
  transform: translateX(0) scale(0.62);
  opacity: 1;
}

/* Home page only - starts at top center */
body[data-page="home"] .circle-badge {
  top: 100px;
  left: 50%;
  bottom: auto;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  z-index: 1;
}

body[data-page="home"] .circle-badge:hover {
  transform: translateX(-50%) scale(1.06);
}

/* Scrolled state - moves to bottom right (home page only) */
body[data-page="home"] .circle-badge.is-scrolled {
  top: auto;
  bottom: 32px;
  left: auto;
  right: 32px;
  transform: translateX(0) scale(0.55);
  width: 240px;
  height: 240px;
}

body[data-page="home"] .circle-badge.is-scrolled:hover {
  transform: translateX(0) scale(0.62);
}

@media (max-width: 768px) {
  .circle-badge {
    width: 200px;
    height: 200px;
    bottom: 20px;
    right: 20px;
    left: auto;
    transform: translateX(0) scale(0.5);
  }
  
  .circle-badge:hover {
    transform: translateX(0) scale(0.55);
  }
  
  /* Home page mobile - 숨김 */
  body[data-page="home"] .circle-badge {
    display: none;
  }
}

.circle-badge__rocket-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.circle-badge__rocket {
  width: 70px;
  height: 70px;
  color: var(--accent);
  filter: drop-shadow(0 0 14px var(--accent-glow));
  transition: transform 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}

@media (max-width: 768px) {
  .circle-badge__rocket {
    width: 55px;
    height: 55px;
  }
}

/* Rocket exhaust container */
.circle-badge__exhaust {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -15px;
  opacity: 0;
  transform-origin: top;
  transition: opacity 0.2s, transform 0.3s;
}

.circle-badge:hover .circle-badge__exhaust {
  transform: translateX(-50%) scaleY(1);
}

.circle-badge:not(:hover) .circle-badge__exhaust {
  transform: translateX(-50%) scaleY(0);
}

/* Rocket flame */
.circle-badge__flame {
  display: flex;
  justify-content: center;
  gap: 3px;
  position: relative;
  z-index: 2;
}

.flame {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(to bottom, #fff 0%, #ffcc00 20%, #ff6b35 50%, #ff4444 80%, #cc0000 100%);
  animation: flicker 0.1s infinite alternate;
  box-shadow: 0 0 10px #ff6b35, 0 0 20px #ff4444, 0 0 30px rgba(255, 100, 50, 0.5);
}

.flame--1 {
  width: 10px;
  height: 28px;
  animation-delay: 0s;
}

.flame--2 {
  width: 14px;
  height: 40px;
  animation-delay: 0.03s;
}

.flame--3 {
  width: 18px;
  height: 55px;
  animation-delay: 0.06s;
}

.flame--4 {
  width: 14px;
  height: 40px;
  animation-delay: 0.09s;
}

.flame--5 {
  width: 10px;
  height: 28px;
  animation-delay: 0.12s;
}

@keyframes flicker {
  0% { 
    transform: scaleX(1) scaleY(1) translateY(0); 
    opacity: 1;
  }
  100% { 
    transform: scaleX(0.8) scaleY(1.15) translateY(-2px); 
    opacity: 0.85;
  }
}

/* Smoke effect */
.circle-badge__smoke {
  position: relative;
  width: 80px;
  height: 50px;
  margin-top: -10px;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 180, 180, 0.8) 0%, rgba(120, 120, 120, 0.4) 50%, transparent 70%);
  animation: smokeRise 0.8s ease-out infinite;
}

.smoke--1 {
  width: 20px;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.smoke--2 {
  width: 28px;
  height: 28px;
  left: 30%;
  top: 10px;
  animation-delay: 0.1s;
}

.smoke--3 {
  width: 32px;
  height: 32px;
  left: 55%;
  top: 8px;
  animation-delay: 0.2s;
}

.smoke--4 {
  width: 24px;
  height: 24px;
  left: 20%;
  top: 20px;
  animation-delay: 0.3s;
}

.smoke--5 {
  width: 30px;
  height: 30px;
  left: 60%;
  top: 18px;
  animation-delay: 0.15s;
}

.smoke--6 {
  width: 26px;
  height: 26px;
  left: 40%;
  top: 25px;
  animation-delay: 0.25s;
}

@keyframes smokeRise {
  0% {
    opacity: 0.7;
    transform: translateY(0) scale(0.8);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(20px) scale(1.5);
  }
}

/* Hover states - Launch sequence */
.circle-badge:hover .circle-badge__rocket-wrap {
  animation: rocketLaunch 1.4s var(--ease-out) forwards;
  animation-delay: 0.6s;
}

.circle-badge:hover .circle-badge__rocket {
  transform: scale(1.1) rotate(-10deg);
  animation: rocketShake 0.6s ease-in-out;
}

.circle-badge:hover .circle-badge__exhaust {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
  transition-delay: 0.2s;
}

@keyframes rocketShake {
  0%, 100% { transform: scale(1.1) rotate(-10deg) translateX(0); }
  15% { transform: scale(1.12) rotate(-7deg) translateX(-3px); }
  30% { transform: scale(1.08) rotate(-13deg) translateX(3px); }
  45% { transform: scale(1.11) rotate(-8deg) translateX(-2px); }
  60% { transform: scale(1.09) rotate(-12deg) translateX(2px); }
  75% { transform: scale(1.1) rotate(-9deg) translateX(-1px); }
  90% { transform: scale(1.1) rotate(-11deg) translateX(1px); }
}

@keyframes rocketLaunch {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  30% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -450%);
    opacity: 0;
  }
}

/* Reset when not hovering */
.circle-badge:not(:hover) .circle-badge__rocket-wrap {
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: none;
}

.circle-badge__ring {
  position: absolute;
  inset: 0;
  animation: ringRotate 12s linear infinite;
}

.circle-badge:hover .circle-badge__ring {
  animation-play-state: paused;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-badge__ring span {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg);
  transform: rotate(calc(var(--i) * 12.86deg));
  transition: color 0.3s var(--ease-out);
}

@media (max-width: 768px) {
  .circle-badge__ring span {
    font-size: 18px;
    padding-top: 6px;
  }
}

.circle-badge:hover .circle-badge__ring span {
  color: var(--fg);
}

/* =================================================================
   SCROLLBAR
   ================================================================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--fg-subtle);
}

/* =================================================================
   PAGE HERO (for sub-pages)
   ================================================================= */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 140px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
}

.page-hero__desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
}

/* =================================================================
   HOME PAGE - SERVICES PREVIEW
   ================================================================= */
.section-services-preview {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-preview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-preview-card {
  display: block;
  padding: 32px 28px;
  background: var(--card-bg);
  cursor: none; /* 커스텀 커서 사용 */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* 카드 가장자리를 한 바퀴 도는 애니메이션 - border만 그리기 */
.service-preview-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(90deg, var(--accent), #8b5cf6, #7c3aed, #6d28d9, var(--accent));
  background-size: 400% 100%;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
  z-index: 1;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  transition: clip-path 0.8s var(--ease-out), opacity 0.3s var(--ease-out);
}

.service-preview-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
  opacity: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.service-preview-card:hover::before {
  opacity: 1;
  animation: borderDraw 0.8s var(--ease-out) forwards, borderGradient 2s linear infinite;
}

@keyframes borderDraw {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  25% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  50% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
  }
  75% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes borderGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 400% 0%;
  }
}

.service-preview-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-preview-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-preview-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* =================================================================
   HOME PAGE - WORK PREVIEW
   ================================================================= */
.section-work-preview {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.work-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .work-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =================================================================
   HOME PAGE - CTA
   ================================================================= */
.section-home-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.home-cta-inner {
  text-align: center;
  padding: 60px 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.home-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.home-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.home-cta__desc {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  position: relative;
}

/* =================================================================
   PAGE CTA (for sub-pages)
   ================================================================= */
.section-page-cta {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.page-cta-inner {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.page-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-cta-inner p {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

/* =================================================================
   PROCESS PAGE - DETAIL
   ================================================================= */
.section-process-detail {
  background: var(--bg);
}

.process-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process-detail-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
}

@media (min-width: 768px) {
  .process-detail-item {
    grid-template-columns: 200px 1fr;
    gap: 48px;
  }
}

.process-detail-item:hover {
  border-color: var(--border-hover);
  transform: translateX(8px);
}

.process-detail-item__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-detail-item__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
}

.process-detail-item__header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.process-detail-item__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 24px;
}

.process-detail-item__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-detail-item__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(245, 245, 247, 0.02);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--fg-muted);
}

.process-detail-item__list li::before {
  content: '→';
  color: var(--accent);
}

/* =================================================================
   ABOUT PAGE - DETAIL
   ================================================================= */
.section-about-detail {
  background: var(--bg);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .about-detail-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}

.about-detail-main h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.about-detail-main p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.about-features-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */
.contact-hero {
  padding: 160px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  text-align: center;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 15vw, 160px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
}

.contact-hero__desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

.section-contact-content {
  background: var(--bg-elevated);
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.contact-main {
  padding: 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

@media (min-width: 900px) {
  .contact-main {
    text-align: left;
  }
}

.contact-email-large {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s var(--ease-out);
  word-break: break-all;
}

.contact-email-large:hover {
  color: var(--accent);
  opacity: 1;
}

.contact-actions {
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .contact-actions {
    justify-content: flex-start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.contact-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--fg-muted);
  transition: all 0.3s var(--ease-out);
}

.contact-checklist li:hover {
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
}

.contact-checklist__icon {
  color: var(--accent);
  font-weight: 600;
}

/* Contact Form Styles */
.contact-email-display {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.contact-email-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  transition: all 0.3s var(--ease-out);
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.5;
}

.form-textarea {
  min-height: 140px;
  line-height: 1.6;
}

.btn-submit {
  margin-top: 8px;
  width: 100%;
}

.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s var(--ease-out);
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Contact Info Cards */
.contact-info-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}

.contact-info-card:hover {
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
  transform: translateY(-2px);
}

.contact-info-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info-card__icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
}

.contact-info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0;
}

/* Checklist Grid */
.contact-checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.contact-checklist-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease-out);
}

.contact-checklist-item:hover {
  border-color: var(--border-hover);
  background: var(--card-bg);
  transform: translateX(4px);
}

.contact-checklist-item:hover::before {
  transform: scaleY(1);
}

.checklist-item__number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  flex-shrink: 0;
  min-width: 40px;
  transition: opacity 0.3s var(--ease-out);
}

.contact-checklist-item:hover .checklist-item__number {
  opacity: 0.6;
}

.checklist-item__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.checklist-item__content strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  display: block;
}

.checklist-item__content span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-main {
    padding: 32px 24px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .contact-checklist-item {
    padding: 16px;
  }

  .checklist-item__number {
    font-size: 24px;
    min-width: 32px;
  }
}
