@charset "UTF-8";

/* ==========================================================================
   Moim Landing Page Scoped CSS
   ========================================================================== */

/* ==========================================================================
   Standalone Reset (common.css 없이 단독 전달 시 필요한 최소 리셋)
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol, li {
  list-style: none;
}

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

/* ==========================================================================
   Moim Landing Page Scoped CSS
   ========================================================================== */
.moim-landing-wrap {
  --ml-primary: #3b82f6;
  --ml-primary-light: #60a5fa;
  --ml-primary-dark: #2563eb;
  --ml-secondary: #8b5cf6;
  --ml-green: #10b981;
  --ml-indigo: #6366f1;

  --ml-bg-gradient: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f5f3ff 100%);
  --ml-text-main: #111827;
  --ml-text-sub: #4b5563;
  --ml-text-muted: #9ca3af;

  --ml-glass-bg: rgba(255, 255, 255, 0.7);
  --ml-glass-border: rgba(255, 255, 255, 0.5);
  --ml-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --ml-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.12);

  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  color: var(--ml-text-main);
  background: var(--ml-bg-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

.moim-landing-wrap * {
  box-sizing: border-box;
}

.moim-landing-wrap a {
  text-decoration: none;
  color: inherit;
}

/* Utils */
.ml-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-blue { background-color: #eff6ff; color: var(--ml-primary); }
.bg-indigo { background-color: #eef2ff; color: var(--ml-indigo); }
.bg-green { background-color: #ecfdf5; color: var(--ml-green); }

/* ==========================================================================
   Header
   ========================================================================== */
.ml-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--ml-glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ml-glass-border);
  transition: box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.ml-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.ml-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.ml-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 24px;
  color: var(--ml-primary);
}

.ml-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--ml-primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-logo-icon svg {
  width: 20px;
  height: 20px;
}

.ml-nav {
  display: flex;
  gap: 32px;
}

.ml-nav-link {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--ml-text-main);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

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

.ml-btn-download {
  background: var(--ml-primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.ml-btn-download::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: white;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s, transform 0.4s;
}

.ml-btn-download:active::after {
  opacity: 0.2;
  transform: scale(2);
  transition: none;
}

.ml-btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.45);
}

/* Download dropdown */
.ml-download-wrap {
  position: relative;
}

.ml-download-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  padding: 12px 14px;
  gap: 10px;
  flex-direction: column;
  min-width: 180px;
  z-index: 200;
}

.ml-download-wrap.open .ml-download-dropdown {
  display: flex;
  animation: ml-dropdown-in 0.18s ease;
}

@keyframes ml-dropdown-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ml-dropdown-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.ml-dropdown-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ml-dropdown-item img {
  display: block;
  height: 38px;
  width: auto;
}

/* Hamburger */
.ml-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ml-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ml-text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ml-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ml-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ml-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.ml-hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

/* Background blobs */
.ml-hero-bg {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96,165,250,0.2) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  animation: blobPulse 8s ease-in-out infinite;
}

.ml-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -400px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  animation: blobPulse 10s ease-in-out infinite reverse;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.08) translate(20px, -15px); }
  66%       { transform: scale(0.95) translate(-10px, 10px); }
}

.ml-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ml-hero-content {
  flex: 1;
  max-width: 500px;
}

.ml-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.ml-hero-desc {
  font-size: 20px;
  color: var(--ml-text-sub);
  margin-bottom: 40px;
  line-height: 1.6;
}

.ml-store-btns {
  display: flex;
  gap: 16px;
}

.ml-store-btn {
  display: inline-flex;
  height: 52px;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.ml-store-btn img {
  height: 100%;
  width: auto;
}

.ml-store-btn:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}

.ml-hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

/* Floating Elements */
.ml-float-item {
  position: absolute;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.ml-float-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
}

.ml-float-1 svg { width: 40px; height: 40px; }

.ml-float-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  right: -20px;
  animation: float2 7s ease-in-out infinite;
  font-size: 30px;
  font-weight: 700;
  color: var(--ml-green);
  border-radius: 50%;
  background: #d1fae5;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.05); }
}

/* Phone Mockup */
.ml-phone {
  width: 320px;
  height: 650px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 0 0 10px #f3f4f6, 0 30px 60px -15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.ml-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #f3f4f6;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.ml-phone-screen {
  padding: 40px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ml-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  padding-top: 20px;
}

.ml-phone-title {
  font-size: 22px;
  font-weight: 700;
}

.ml-phone-subtitle {
  font-size: 13px;
  color: var(--ml-text-muted);
}

.ml-phone-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.ml-phone-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f9fafb;
  border-radius: 16px;
  gap: 12px;
}

.ml-phone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 12px;
  color: #374151;
}
.ml-phone-appbar span {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.ml-phone-progress-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--ml-primary);
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 20px;
}

.ml-phone-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #3b82f6;
}
.ml-avatar-red  { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #ef4444; }
.ml-avatar-green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #10b981; }

.ml-phone-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.ml-phone-name {
  font-weight: 600;
  font-size: 14px;
}

.ml-phone-status {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
}
.ml-phone-status.done    { background: #d1fae5; color: #059669; }
.ml-phone-status.pending { background: #fee2e2; color: #dc2626; }

.ml-phone-amount {
  font-weight: 700;
  font-size: 15px;
}

.ml-phone-amount.plus { color: var(--ml-green); }
.ml-phone-amount.minus { color: #ef4444; }

.ml-phone-total {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.ml-phone-total-lbl {
  font-size: 14px;
  color: var(--ml-text-sub);
  margin-bottom: 8px;
}

.ml-phone-total-val {
  font-size: 28px;
  font-weight: 800;
}

.ml-phone-btn {
  background: var(--ml-primary);
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.ml-features, .ml-how-to {
  padding: 100px 0;
}

.ml-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.ml-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--ml-primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.ml-section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
}


/* ==========================================================================
   Features Section
   ========================================================================== */
.ml-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ml-card {
  background: var(--ml-glass-bg);
  border: 1px solid var(--ml-glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--ml-shadow);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.ml-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--ml-shadow-hover);
}

.ml-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ml-card:hover .ml-card-icon {
  transform: scale(1.12) rotate(6deg);
}

.ml-card-icon svg {
  width: 32px;
  height: 32px;
}

.ml-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ml-card-desc {
  color: var(--ml-text-sub);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   How To Use Section
   ========================================================================== */
.ml-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.ml-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.ml-step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
  color: var(--ml-primary);
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.ml-step:hover .ml-step-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 32px rgba(59, 130, 246, 0.22);
}

.ml-step-icon svg {
  width: 32px;
  height: 32px;
}

.ml-step-num {
  position: absolute;
  top: -10px;
  right: calc(50% - 50px);
  width: 28px;
  height: 28px;
  background: var(--ml-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 3;
}

.ml-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ml-step-desc {
  color: var(--ml-text-sub);
  font-size: 15px;
  line-height: 1.5;
}

.ml-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  color: #cbd5e1;
}

.ml-step-arrow svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.ml-cta {
  padding: 80px 0;
}

.ml-cta-box {
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  border-radius: 32px;
  padding: 60px 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.3);
}

.ml-cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: blobPulse 9s ease-in-out infinite;
}

.ml-cta-box::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
  bottom: -80px;
  left: 40%;
  border-radius: 50%;
  animation: blobPulse 12s ease-in-out infinite reverse;
}

.ml-cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.ml-cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.ml-cta-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.ml-cta-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
}

.ml-phone-half {
  width: 260px;
  height: 420px;
  margin-bottom: -120px;
  transform: rotate(-5deg);
  box-shadow: -20px 20px 40px rgba(0,0,0,0.2);
}

.ml-phone-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 !important;
}

.ml-splash-logo {
  width: 72px;
  height: 72px;
}

.ml-splash-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--ml-primary);
}

.ml-splash-tagline {
  font-size: 13px;
  color: var(--ml-text-muted);
}

/* 80% 완료 원형 프로그레스 */
.ml-progress-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(
    #60a5fa 0deg,
    #3b82f6 230deg,
    rgba(255,255,255,0.2) 230deg,
    rgba(255,255,255,0.2) 360deg
  );
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-progress-inner {
  width: 112px;
  height: 112px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--ml-primary);
  line-height: 1.3;
}


/* ==========================================================================
   Footer
   ========================================================================== */
.ml-footer {
  background: #f8fafc;
  padding: 80px 0 40px;
  border-top: 1px solid #e2e8f0;
}

.ml-footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.ml-footer-info {
  max-width: 300px;
}

.ml-footer-info .ml-logo {
  margin-bottom: 16px;
  color: var(--ml-text-main);
}

.ml-footer-desc {
  color: var(--ml-text-sub);
  margin-bottom: 24px;
}

.ml-socials {
  display: flex;
  gap: 16px;
}

.ml-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  color: var(--ml-text-sub);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: color 0.2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}

.ml-socials a:hover {
  color: var(--ml-primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.ml-socials svg {
  width: 20px;
  height: 20px;
}

.ml-footer-links {
  display: flex;
  gap: 80px;
}

.ml-footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.ml-footer-col a {
  display: block;
  color: var(--ml-text-sub);
  margin-bottom: 12px;
  font-size: 15px;
  transition: color 0.2s, transform 0.2s;
}

.ml-footer-col a:hover {
  color: var(--ml-primary);
  transform: translateX(3px);
}

.ml-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  color: var(--ml-text-muted);
  font-size: 14px;
}

/* ==========================================================================
   Animations (Intersection Observer — transition 기반)
   ========================================================================== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-in"]    { transform: scale(0.92); }
[data-animate="zoom-in"]    { transform: scale(0.88); }
[data-animate="draw-right"] { transform: scaleX(0); transform-origin: left center; }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0) scale(1) scaleX(1);
}

/* ==========================================================================
   Responsive (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .ml-hero-title { font-size: 48px; }
  .ml-grid-3 { gap: 20px; }
  .ml-cta-box { padding: 40px; }
}

@media (max-width: 768px) {
  .ml-hamburger { display: flex; }

  .ml-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--ml-glass-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .ml-nav.open {
    display: flex;
  }

  .ml-nav-link {
    width: 100%;
    text-align: left;
    padding: 14px 24px;
    border-radius: 0;
  }

  .ml-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .ml-hero-title { font-size: 38px; }

  .ml-hero-content {
    margin-bottom: 60px;
  }

  .ml-store-btns {
    justify-content: center;
  }

  .ml-hero-visual {
    justify-content: center;
  }

  .ml-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .ml-step-arrow {
    transform: rotate(90deg);
    padding: 20px 0;
  }

  .ml-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .ml-cta-visual {
    margin-top: 40px;
    align-self: auto;
    height: 260px;
    justify-content: center;
  }

  .ml-phone-half {
    height: 360px;
    margin-bottom: -100px;
  }

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

  .ml-footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

/* ==========================================================================
   Language Switcher (header 우측)
   ========================================================================== */
.ml-lang-switcher {
  margin-right: 12px;
}

.ml-lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 28px 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  font-family: inherit;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.2s;
}

.ml-lang-switcher select:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.ml-lang-switcher select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
