:root {
  --bg-color: #0B0C10;
  --surface-color: #171821;
  --primary-color: #FF9B8A;
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8C4;
  --accent-glow: rgba(255, 155, 138, 0.2);
  --glass-bg: rgba(23, 24, 33, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --focus-ring: 0 0 0 3px rgba(255, 155, 138, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
  line-height: 1.3;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #FF9B8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

/* Ambient Background */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(ellipse 60% 60% at 50% -20%, var(--accent-glow) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(100, 100, 255, 0.05) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

/* Header & Glassmorphism Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: var(--transition-smooth);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
}

/* Main Menu Navigation */
.main-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 40px;
  margin-right: auto;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.dropdown-trigger {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text-secondary);
  transition: var(--transition-smooth);
}

.dropdown-trigger:hover,
.dropdown:hover .dropdown-trigger {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown:hover .dropdown-trigger::after {
  border-top-color: var(--text-primary);
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: -45px;
  background: var(--surface-color);
  min-width: 180px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 8px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%) translateY(10px);
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  color: var(--text-secondary);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .main-menu {
    display: none;
  }
}

.lang-switcher-wrap {
  display: flex;
  align-items: center;
  position: relative;
  gap: 24px;
}

/* 모바일: 트리거만 보이고, 열리면 드롭다운 */
.lang-switcher-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  min-width: 44px;
  min-height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition-smooth);
  -webkit-tap-highlight-color: transparent;
}

.lang-switcher-trigger:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switcher-trigger:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.lang-switcher-trigger[aria-expanded="true"] {
  color: var(--primary-color);
  background: rgba(255, 155, 138, 0.12);
  border-color: rgba(255, 155, 138, 0.25);
}

@media (max-width: 767px) {
  .lang-switcher-trigger {
    display: inline-flex;
  }

  .lang-switcher {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    padding: 8px;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    z-index: 200;
    gap: 2px;
  }

  .lang-switcher-wrap.lang-dropdown-open .lang-switcher {
    display: flex;
  }

  .lang-switcher a {
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
    min-width: auto;
  }
}

@media (min-width: 768px) {
  .lang-switcher-trigger {
    display: none;
  }

  .lang-switcher {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }
}

.lang-switcher {
  align-items: center;
  gap: 4px;
}

.lang-switcher a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  min-width: 2.5rem;
  text-align: center;
}

.lang-switcher a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switcher a.active {
  color: var(--primary-color);
  background: rgba(255, 155, 138, 0.12);
}

.lang-switcher a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 24px;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nav-cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Animations Core */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  background: rgba(255, 155, 138, 0.1);
  border: 1px solid rgba(255, 155, 138, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease-out;
}

.hero-pill {
  background: rgba(255, 155, 138, 0.1);
  border: 1px solid rgba(255, 155, 138, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease-out forwards;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.6;
  text-wrap: balance;
  animation: fadeUp 1s ease-out 0.4s backwards;
}

/* Badge Buttons */
.badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
  animation: fadeUp 1s ease-out 0.6s backwards;
}

#download {
  scroll-margin-top: 80px;
}

.ph-badge {
  display: inline-flex;
  transition: var(--transition-smooth);
}

.ph-badge img {
  height: 54px;
  width: 250px;
  border-radius: 12px;
  display: block;
  aspect-ratio: 250 / 54;
}

.ph-badge:hover {
  transform: translateY(-2px);
}

.ph-badge:active {
  transform: translateY(0) scale(0.98);
}

@media (min-width: 480px) {
  .badges {
    flex-direction: row;
    justify-content: center;
  }
}

.store-badge {
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 14px;
  background-color: var(--text-primary);
  color: #000;
  text-decoration: none;
  transition: var(--transition-smooth);
  min-width: 180px;
  height: 54px;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.store-badge:active {
  transform: translateY(0) scale(0.98);
}

.store-badge:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.store-badge.disabled {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  cursor: not-allowed;
}

.store-badge.disabled:hover {
  transform: none;
  box-shadow: none;
}

.store-icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  fill: currentColor;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-subtitle {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}

.store-title {
  font-size: 18px;
  font-weight: 700;
}

/* Hero Visual — 앱 스크린샷 (스토어 등록 이미지) */
.hero-visual {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  animation: fadeUp 1.2s ease-out 0.8s backwards;
  aspect-ratio: 380 / 825;
}

.hero-device {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: var(--surface-color);
  aspect-ratio: 660 / 1434;
}

.hero-screenshot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 660 / 1434;
}

/* App preview 섹션 — 스크린샷 3장 */
.app-preview {
  padding: 80px 20px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.app-preview .section-header {
  margin-bottom: 48px;
}

.app-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  justify-items: center;
}

.app-preview-item {
  margin: 0;
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.app-preview-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.app-preview-item:nth-child(1) {
  transition-delay: 0.05s;
}

.app-preview-item:nth-child(2) {
  transition-delay: 0.15s;
}

.app-preview-item:nth-child(3) {
  transition-delay: 0.25s;
}

.app-preview-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  background: var(--surface-color);
}

.app-preview-item figcaption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

@media (min-width: 900px) {
  .hero-visual {
    max-width: 340px;
  }

  .app-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
  }

  .app-preview-item {
    max-width: 280px;
  }
}

/* Section header (공통) */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.feature-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.feature-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-header p {
  color: var(--text-secondary);
  font-size: 18px;
}

/* Strengths (무다노트가 특별한 이유) */
.strengths {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.strength-card {
  background: var(--surface-color);
  border: 1px solid var(--glass-border);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: left;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.strength-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.strength-card:nth-child(1) {
  transition-delay: 0.05s;
}

.strength-card:nth-child(2) {
  transition-delay: 0.1s;
}

.strength-card:nth-child(3) {
  transition-delay: 0.15s;
}

.strength-card:nth-child(4) {
  transition-delay: 0.2s;
}

.strength-card:nth-child(5) {
  transition-delay: 0.25s;
}

.strength-card:nth-child(6) {
  transition-delay: 0.3s;
}

.strength-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 155, 138, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.strength-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 12px;
  background: rgba(255, 155, 138, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(255, 155, 138, 0.12);
}

.strength-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.strength-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
  word-break: keep-all;
}

.strength-card p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Features Section */
.features {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface-color);
  border: 1px solid var(--glass-border);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: left;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for feature cards */
.feature-card:nth-child(1) {
  transition-delay: 0.05s;
}

.feature-card:nth-child(2) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.15s;
}

.feature-card:nth-child(4) {
  transition-delay: 0.2s;
}

.feature-card:nth-child(5) {
  transition-delay: 0.25s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 155, 138, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 155, 138, 0.05), transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.feature-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: inline-block;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  word-break: keep-all;
}

/* Products (MoodaLab 프로덕트) */
.products {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card {
  background: var(--surface-color);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px 36px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.product-current {
  border-color: rgba(255, 155, 138, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 155, 138, 0.08);
}

.product-card.product-upcoming {
  opacity: 0.92;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(255, 155, 138, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
}

.product-badge.upcoming {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
}

.product-info {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 155, 138, 0.2);
}

.product-icon.placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
}

.product-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
  word-break: keep-all;
}

.product-cta {
  display: inline-block;
  background: var(--primary-color);
  color: #0B0C10;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.product-cta:hover {
  background: #ffab9e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 155, 138, 0.35);
}

.product-cta:active {
  transform: translateY(0) scale(0.98);
}

.product-cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* CTA Section */
.cta {
  padding: 80px 20px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-inner {
  text-align: center;
  padding: 56px 32px;
  background: linear-gradient(145deg, rgba(255, 155, 138, 0.08) 0%, transparent 50%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
}

.cta-inner h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 12px;
  font-weight: 700;
}

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

.cta .badges {
  margin-bottom: 0;
  justify-content: center;
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 20px 40px;
  background: var(--bg-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-secondary);
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  opacity: 0.9;
  margin: -8px 0 0;
}

.footer-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  filter: grayscale(100%) opacity(0.7);
}

.copyright {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-group a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-group a:hover {
  color: var(--accent-primary);
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-links a:focus-visible {
  outline: none;
  color: var(--primary-color);
  border-radius: 4px;
  box-shadow: var(--focus-ring);
}

/* 터치 타깃: 푸터 링크 최소 높이 */
.footer-links a {
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hidden-link {
  display: none;
}

/* FAQ Section */
.faq {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item summary {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-secondary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 2px;
  height: 12px;
}

.faq-icon::after {
  width: 12px;
  height: 2px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 32px 32px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.faq-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 20px;
  }

  .faq-item summary {
    padding: 20px;
    font-size: 16px;
  }

  .faq-content {
    padding: 0 20px 24px;
    font-size: 15px;
  }
}

/* Mockup Alignment Fix */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-device {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

.hero-screenshot {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Adjustments for Hindi specifically */
[lang="hi"] .nav-cta {
  min-width: 130px;
  text-align: center;
}