/* Landing Page - 팝업매니저 */
/* 텐트/부스 컨셉 + 힙한 컬러 */

:root {
  --land-primary: #FF3B5C;
  --land-primary-dark: #E0274A;
  --land-secondary: #1A1A2E;
  --land-accent: #FFD93D;
  --land-bg: #FFFAF5;
  --land-card: #ffffff;
  --land-text: #1A1A2E;
  --land-muted: #6B7280;
  --land-stripe-1: #FF3B5C;
  --land-stripe-2: #ffffff;
}

.landing {
  min-height: 100vh;
  background: var(--land-bg);
  color: var(--land-text);
}

/* Header */
.landing-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.landing-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--land-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.landing-logo svg { stroke: var(--land-primary); }
.landing-nav { display: flex; gap: 1.25rem; align-items: center; }
.landing-nav a { color: var(--land-text); font-weight: 500; font-size: 0.9375rem; text-decoration: none; }
.landing-nav a:hover { color: var(--land-primary); }
.landing-nav .btn { padding: 0.5rem 1.25rem; font-size: 0.9375rem; background: var(--land-primary); border-color: var(--land-primary); }
.landing-nav .btn:hover { background: var(--land-primary-dark); border-color: var(--land-primary-dark); }

/* Hero - tent stripe background */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--land-stripe-2) 0px,
    var(--land-stripe-2) 40px,
    var(--land-stripe-1) 40px,
    var(--land-stripe-1) 44px
  );
  opacity: 0.08;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,250,245,0.3) 0%, var(--land-bg) 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--land-primary);
  box-shadow: 0 2px 12px rgba(255,59,92,0.15);
  margin-bottom: 2rem;
  border: 1px solid rgba(255,59,92,0.1);
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--land-secondary);
}
.hero h1 span {
  background: linear-gradient(135deg, var(--land-primary), #FF6B81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1875rem;
  color: var(--land-muted);
  max-width: 550px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FFF5E6, #FFEBCC);
  color: #92400E;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,183,77,0.3);
}
.hero-highlight svg { stroke: #F59E0B; flex-shrink: 0; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-primary {
  background: var(--land-primary);
  border-color: var(--land-primary);
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
}
.hero-actions .btn-primary:hover { background: var(--land-primary-dark); border-color: var(--land-primary-dark); }
.hero-actions .btn-outline {
  border-color: var(--land-secondary);
  color: var(--land-secondary);
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
}

/* Pay when you use section */
.pay-when-use {
  background: var(--land-secondary);
  color: white;
  padding: 4rem 2rem;
}
.pay-when-use-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.pay-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.pay-when-use h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pay-when-use p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.pay-when-use strong {
  color: var(--land-accent);
}

/* Features */
.features {
  padding: 5rem 2rem;
}
.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--land-secondary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--land-card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  background: rgba(255,59,92,0.08);
}
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--land-secondary);
}
.feature-card p {
  font-size: 0.9375rem;
  color: var(--land-muted);
  line-height: 1.7;
}

/* Pricing */
.pricing {
  padding: 5rem 2rem;
  background: white;
}
.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.pricing h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--land-secondary);
}
.pricing-subtitle {
  text-align: center;
  color: var(--land-muted);
  margin-bottom: 3rem;
  font-size: 1.125rem;
}
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--land-bg);
  border-radius: 1.5rem;
  padding: 3rem;
  border: 2px solid var(--land-primary);
  text-align: center;
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--land-primary);
  color: white;
  padding: 0.375rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--land-secondary);
  margin: 1.5rem 0 0.5rem;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--land-muted);
}
.pricing-sub {
  font-size: 0.9375rem;
  color: var(--land-muted);
  margin-bottom: 1rem;
}
.pricing-no-charge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ECFDF5;
  color: #065F46;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.pricing-no-charge svg { stroke: #10B981; }
.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-features li {
  list-style: none;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--land-text);
}
.pricing-features li::before {
  content: "✓";
  color: var(--land-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn-primary {
  background: var(--land-primary);
  border-color: var(--land-primary);
}
.pricing-card .btn-primary:hover {
  background: var(--land-primary-dark);
  border-color: var(--land-primary-dark);
}

/* CTA */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--land-primary), var(--land-primary-dark));
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 40px,
    rgba(255,255,255,0.05) 40px,
    rgba(255,255,255,0.05) 44px
  );
}
.cta-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.cta-section p { font-size: 1.125rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.7; }
.cta-section .btn {
  background: white;
  color: var(--land-primary);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 0.875rem 2.5rem;
}
.cta-section .btn:hover { background: #FFF5F7; }

/* Footer */
.landing-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: white;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer-links a {
  color: var(--land-muted);
  font-size: 0.875rem;
  text-decoration: none;
}
.footer-links a:hover { color: var(--land-text); }
.footer-company {
  font-size: 0.8125rem;
  color: var(--land-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.footer-copyright {
  font-size: 0.8125rem;
  color: #9CA3AF;
}

/* Modal body */
.modal-body {
  padding: 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--land-text);
}
.modal-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--land-secondary);
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p {
  color: var(--land-muted);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-header-inner { padding: 1rem; }
  .landing-nav a:not(.btn) { display: none; }
  .hero-content { padding: 3rem 1.5rem 2.5rem; }
  .hero-highlight { font-size: 0.875rem; padding: 0.625rem 1rem; }
  .features { padding: 3rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing { padding: 3rem 1.5rem; }
  .pricing-card { padding: 2rem; }
  .pay-when-use { padding: 3rem 1.5rem; }
  .cta-section { padding: 3rem 1.5rem; }
  .footer-links { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .features h2, .pricing h2, .cta-section h2 { font-size: 1.5rem; }
  .pricing-price { font-size: 2.5rem; }
}
