:root {
  /* Warm minimal + coral accent (Fyxer / prompt-first inspired) */
  --lp-bg: #f5f2ec;
  --lp-bg-alt: #fffcf8;
  --lp-coral: #ff5c35;
  --lp-coral-hover: #e54a28;
  --lp-coral-soft: rgba(255, 92, 53, 0.14);
  --lp-accent: var(--lp-coral);
  --lp-accent-hover: var(--lp-coral-hover);
  --lp-accent-muted: #ffe8e0;
  --lp-hero: #2c1810;
  --lp-hero-light: #4a2f22;
  --lp-text: #1a1a1a;
  --lp-text-secondary: #5c5855;
  --lp-border: #e8e2da;
  --lp-shadow: 0 12px 40px rgba(44, 24, 16, 0.08);
  --lp-shadow-sm: 0 4px 20px rgba(44, 24, 16, 0.06);
  --lp-radius: 20px;
  --lp-radius-sm: 14px;
  --lp-radius-xl: 28px;
  --lp-container: 1080px;
  --lp-serif: 'Source Serif 4', 'Noto Serif KR', Georgia, serif;
}

html {
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Noto Sans KR', sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  padding-bottom: env(safe-area-inset-bottom, 1rem);
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -20%, rgba(255, 92, 53, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255, 200, 180, 0.12), transparent 45%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  padding-bottom: 1.5rem;
}

/* Header — floating pill (Fyxer-style) */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.landing-header-inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-header-floating {
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  box-shadow: var(--lp-shadow-sm);
  padding: 0.55rem 1rem 0.55rem 1.25rem;
}

.landing-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-nav a {
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 9px;
  transition: color 0.2s, background-color 0.2s;
}

.landing-nav a:hover {
  color: var(--lp-accent);
  background: var(--lp-coral-soft);
}

.landing-cta-nav {
  padding: 0.75rem 1.5rem !important;
  background: var(--lp-accent) !important;
  color: #fff !important;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(255, 92, 53, 0.32);
  text-decoration: none;
}

.landing-cta-nav:hover {
  background: var(--lp-accent-hover) !important;
  color: #fff !important;
}

@media (max-width: 640px) {
  .landing-nav a:not(.landing-cta-nav) {
    display: none;
  }
}

/* Hero — warm + prompt-first */
.landing-hero {
  background: linear-gradient(180deg, #fdfbf9 0%, #f5f0e8 100%);
  color: var(--lp-text);
  padding: 2rem 1.25rem 4rem;
}

.landing-hero-warm {
  padding-top: 1rem;
}

.landing-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.landing-hero-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.landing-hero-badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
}

.landing-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: badge-dot-pulse 2s ease-in-out infinite;
}
@keyframes badge-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

.landing-hero-lead {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
}

.landing-hero-price {
  margin: 1.25rem 0 0.35rem;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.landing-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.landing-hero-title-line {
  color: var(--lp-text);
}

.landing-hero-title-accent {
  color: var(--lp-coral);
}

.landing-hero-desc {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--lp-text-secondary);
}

.landing-hero-trust {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--lp-text-secondary);
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.landing-hero-cta-hint {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--lp-text-secondary);
}

.landing-hero-social-count {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--lp-text-muted, #9c9590);
  letter-spacing: 0.01em;
}

/* Prompt box */
.landing-hero-prompt {
  text-align: left;
  background: #fff;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow:
    0 0 0 1px rgba(255, 92, 53, 0.06),
    0 8px 32px rgba(255, 92, 53, 0.12),
    var(--lp-shadow-sm);
  padding: 1rem 1.1rem;
  margin: 0 auto 1.25rem;
  max-width: 560px;
}

.landing-hero-prompt textarea {
  width: 100%;
  min-height: 5.5rem;
  border: none;
  resize: none;
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--lp-text);
  background: transparent;
}

.landing-hero-prompt textarea::placeholder {
  color: #9c9590;
}

.landing-hero-prompt textarea:focus {
  outline: none;
}

.landing-hero-prompt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--lp-border);
  margin-bottom: 0.75rem;
}

/* chips inside the card */
.landing-hero-prompt .landing-hero-examples-label {
  margin: 0.25rem 0 0.5rem;
  text-align: left;
}

.landing-hero-prompt .landing-hero-example-chips {
  justify-content: flex-start;
  margin-bottom: 0;
}

.landing-hero-prompt-hint {
  font-size: 0.75rem;
  color: var(--lp-text-secondary);
  opacity: 0.7;
}

.landing-hero-prompt-hint .hint-chip {
  font-weight: 600;
  color: var(--lp-coral);
  opacity: 1;
}

.landing-hero-cta-inline {
  padding: 0.48rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: none;
  background: linear-gradient(145deg, var(--lp-coral) 0%, var(--lp-coral-hover) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 92, 53, 0.38);
  transition: transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.landing-hero-cta-inline:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(255, 92, 53, 0.46);
}

/* Inline lead-capture form */
.landing-hero-inline-form {
  border-top: 1px solid var(--lp-border);
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.landing-hero-inline-form input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fafafa;
  color: var(--lp-text);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.landing-hero-inline-form input:focus {
  outline: none;
  border-color: var(--lp-coral);
  background: #fff;
}

.landing-hero-inline-form input::placeholder {
  color: #b0aba5;
}

.landing-hero-inline-submit {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--lp-coral) 0%, var(--lp-coral-hover) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 92, 53, 0.38);
  transition: transform 0.15s;
  margin-top: 0.15rem;
}

.landing-hero-inline-submit:hover { transform: scale(1.02); }

.landing-hero-inline-success {
  text-align: center;
  padding: 0.75rem 0 0.25rem;
  font-size: 0.9rem;
  color: var(--lp-text);
}

.landing-hero-inline-success strong {
  color: var(--lp-coral);
}

.landing-hero-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.landing-cat-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--lp-text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.landing-cat-tile:hover {
  border-color: var(--lp-coral);
  background: #fff;
}

.landing-hero-examples-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-hero-example-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.landing-example-chip {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  color: var(--lp-text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.landing-example-chip:hover {
  border-color: var(--lp-coral);
  color: var(--lp-text);
}

.landing-cat-tile.is-active {
  border-color: var(--lp-coral);
  background: rgba(255, 92, 53, 0.07);
  color: var(--lp-coral);
}

.landing-example-chip.is-active {
  border-color: var(--lp-coral);
  color: var(--lp-coral);
  background: rgba(255, 92, 53, 0.05);
}

/* Inline chat preview panel */
.landing-hero-preview {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease, padding 0.3s ease;
  margin: 0 -1.1rem;
  padding: 0 1.1rem;
}

.landing-hero-preview.is-visible {
  max-height: 120px;
  opacity: 1;
  padding: 0.5rem 1.1rem 0.4rem;
  /* no border-bottom — footer border-top is enough */
  margin-bottom: 0;
}

.landing-hero-preview-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lp-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.5rem;
  opacity: 0.7;
}

.landing-hero-preview-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.25rem;
}

.landing-hero-preview-row.is-ai {
  justify-content: flex-end;
}

.landing-hero-preview-bubble {
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 0.35rem 0.6rem;
  max-width: 86%;
  animation: previewFadeIn 0.25s ease forwards;
}

@keyframes previewFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.landing-hero-preview-bubble-guest {
  background: #f1f0ee;
  border-radius: 12px 12px 12px 3px;
  color: var(--lp-text);
}

.landing-hero-preview-bubble-ai {
  background: rgba(255, 92, 53, 0.09);
  border-radius: 12px 12px 3px 12px;
  color: var(--lp-text);
}

/* Typewriter cursor */
.landing-hero-prompt textarea.is-typing::after {
  content: '|';
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Stats block (채널톡 스타일 숫자 블록) */
.landing-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
  margin: 0 0 1rem;
  padding: 1rem 0;
}

.landing-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.landing-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-coral);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.landing-final-cta {
  background: linear-gradient(165deg, var(--lp-hero) 0%, var(--lp-hero-light) 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-final-cta .landing-section-title {
  color: #fff;
}

.landing-final-cta .landing-section-desc {
  color: rgba(255, 255, 255, 0.88);
}

.landing-final-cta .landing-final-cta-trust {
  color: rgba(255, 255, 255, 0.75);
}

.landing-final-cta .landing-btn-primary {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.landing-final-cta .landing-section-inner {
  text-align: center;
}

.landing-final-cta-trust {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
}

.landing-stat-label {
  font-size: 0.85rem;
  color: var(--lp-text-secondary);
  font-weight: 500;
}

/* Buttons */
.landing-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  border-radius: var(--lp-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.landing-btn:active {
  transform: scale(0.98);
}

.landing-btn-primary {
  background: var(--lp-accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 92, 53, 0.32);
  border-radius: 999px;
}

.landing-btn-primary:hover {
  background: var(--lp-accent-hover);
  color: #fff;
}

.landing-btn-outline {
  background: #fff;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
  border-radius: 999px;
}

.landing-btn-outline:hover {
  border-color: var(--lp-coral);
  color: var(--lp-text);
}

.landing-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.landing-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.landing-btn-block {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.landing-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Social proof */
.landing-social-proof {
  padding: 1.75rem 1.25rem;
  background: var(--lp-bg-alt);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.landing-social-proof-text {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  text-align: center;
  color: var(--lp-text-secondary);
  line-height: 1.7;
}

.landing-social-proof-text strong {
  color: var(--lp-coral);
}

.landing-proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.landing-proof-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
}

/* Lead capture */
.landing-lead {
  padding: 2.5rem 1.25rem;
  background: linear-gradient(180deg, var(--lp-bg-alt) 0%, var(--lp-bg) 100%);
  border-top: 1px solid var(--lp-border);
}

.landing-lead-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lp-text);
  text-align: center;
}

.landing-lead-desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.landing-lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto 0.5rem;
}

.landing-lead-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-bg-alt);
}

.landing-lead-input:focus {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.12);
}

.landing-lead-btn {
  flex-shrink: 0;
}

.landing-lead-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--lp-text-secondary);
  text-align: center;
  opacity: 0.85;
}

.landing-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.85rem 1.5rem;
  background: var(--lp-hero);
  color: #fff;
  border-radius: var(--lp-radius-sm);
  font-size: 0.9rem;
  z-index: 1000;
  animation: landingToast 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@keyframes landingToast {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.landing-price-trust {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--lp-text-secondary);
}

/* Sections common */
.landing-section {
  padding: 3.5rem 1.25rem;
  scroll-margin-top: 80px;
}

.landing-section-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.landing-section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
  color: var(--lp-text);
  text-align: center;
  line-height: 1.35;
}

.landing-section-desc {
  margin: 0 0 2rem;
  font-size: 1rem;
  color: var(--lp-text-secondary);
  text-align: center;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Features */
.landing-features {
  background: var(--lp-bg-alt);
}

.landing-chat-demos {
  text-align: center;
  box-sizing: border-box;
}

.landing-chat-demo-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

@media (min-width: 900px) {
  .landing-chat-demo-row {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0.25rem;
  }
}

.landing-chat-demo-title {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-text);
}

.landing-chat-demo-hint {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
}

/* 데모 블록: 한국어 / English 각각 compact */
.landing-chat-demo {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 0 0.5rem;
  text-align: center;
  box-sizing: border-box;
}

.landing-chat-demo:last-of-type {
  margin-bottom: 0;
}

.landing-chat-demo-lang-label {
  flex-shrink: 0;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: 0.02em;
}

.landing-chat-demo-frame-wrap {
  height: 932px;
  width: 430px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
}

.landing-chat-demo-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: none;
  vertical-align: top;
}

.landing-chat-demo-link {
  flex-shrink: 0;
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-accent);
  text-decoration: none;
}

.landing-chat-demo-link:hover {
  text-decoration: underline;
}

.landing-feature-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 760px) {
  .landing-feature-list {
    grid-template-columns: 1fr;
  }
}

.landing-feature-item {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.landing-feature-item:hover {
  border-color: rgba(255, 92, 53, 0.35);
  box-shadow: var(--lp-shadow);
  transform: translateY(-2px);
}

.landing-feature-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.landing-feature-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-text);
}

.landing-feature-item p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.55;
}

.landing-lang-label {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.landing-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.landing-lang-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  color: var(--lp-text);
  background: var(--lp-accent-muted);
  border-radius: 999px;
  border: 1px solid var(--lp-border);
}

/* How it works */
.landing-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.landing-step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  margin-bottom: 1rem;
  background: #fdfdff;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  counter-increment: step;
}

.landing-step-num {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(38, 67, 233, 0.25);
}

.landing-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-text);
}

.landing-step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.55;
}

/* 챗봇 부착 방법 (How to use) */
.landing-how-to-attach {
  background: var(--lp-bg-alt);
}

.landing-problem-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.landing-problem-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fcfdff;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  padding: 1rem 1.25rem;
}

.landing-problem-list .emoji {
  font-size: 1.6rem;
}

.landing-problem-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.6;
}

.landing-usecase-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.landing-usecase-list li {
  background: #fcfdff;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  padding: 1.25rem 1.5rem;
}

.landing-usecase-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-text);
}

.landing-usecase-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.6;
}

.landing-attach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.landing-attach-item {
  padding: 1.25rem;
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
}

.landing-attach-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  background: var(--lp-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
}

.landing-attach-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-text);
}

.landing-attach-item p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.5;
}

.landing-attach-visual {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 55, 40, 0.06);
  border-radius: var(--lp-radius-sm);
  border: 1px dashed var(--lp-border);
}

.landing-attach-placeholder {
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
  text-align: center;
  padding: 1rem;
}

.landing-attach-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
  text-align: center;
}

/* Pricing */
.landing-pricing {
  background: var(--lp-bg);
}

.landing-price-anchor {
  margin: 0 auto 1.5rem;
  max-width: 420px;
  font-size: 1rem;
  color: var(--lp-text);
  text-align: center;
  line-height: 1.5;
}

.landing-price-anchor strong {
  color: var(--lp-accent);
}

.landing-price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

.landing-price-card {
  max-width: 360px;
  width: 100%;
  margin: 0;
  padding: 2rem;
  background: var(--lp-bg-alt);
  border-radius: var(--lp-radius);
  border: 1px solid rgba(255, 92, 53, 0.22);
  text-align: center;
  box-shadow: var(--lp-shadow);
}

.landing-price-card-main {
  flex: 1;
  min-width: 280px;
}

.landing-price-card-pro {
  border-color: var(--lp-border);
  opacity: 0.9;
}

.landing-price-card-pro .landing-price-badge {
  background: var(--lp-border);
  color: var(--lp-text-secondary);
}

/* 요금 토글 — 기본값 연간(B2B SaaS 정석) */
.landing-price-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.landing-price-toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
}

.landing-price-toggle-wrap .landing-price-toggle-label[data-period="annual"] {
  color: var(--lp-accent);
}

.landing-price-toggle-wrap:has(.landing-price-toggle.is-monthly) .landing-price-toggle-label[data-period="annual"] {
  color: var(--lp-text-secondary);
}

.landing-price-toggle-wrap:has(.landing-price-toggle.is-monthly) .landing-price-toggle-label[data-period="monthly"] {
  color: var(--lp-accent);
}

.landing-price-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--lp-border);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.landing-price-toggle:hover {
  background: var(--lp-accent-muted);
}

.landing-price-toggle[aria-pressed="true"] {
  background: var(--lp-accent);
}

.landing-price-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.landing-price-toggle.is-monthly .landing-price-toggle-slider {
  transform: translateX(24px);
}

.landing-price-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.75rem;
  background: #ecf2ff;
  color: var(--lp-text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
}

.landing-price-amount {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  color: var(--lp-text);
}

.landing-price-amount strong {
  color: var(--lp-accent);
}

.landing-price-sub {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
}

.landing-price-note {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
}

.landing-price-card .landing-btn-primary {
  background: var(--lp-accent);
  color: #fff;
}

.landing-price-card .landing-btn-primary:hover {
  background: var(--lp-accent-hover);
  color: #fff;
}

/* CTA block */
.landing-cta {
  padding: 3rem 1.25rem;
  background: linear-gradient(165deg, var(--lp-hero) 0%, var(--lp-hero-light) 100%);
  color: #fff;
  text-align: center;
}

.landing-cta-inner {
  max-width: 520px;
  margin: 0 auto;
}

.landing-cta-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.landing-cta-desc {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  opacity: 0.95;
}

.landing-cta .landing-btn-primary {
  background: var(--lp-accent);
  color: #ffffff;
}

.landing-cta .landing-btn-primary:hover {
  background: #fff;
  color: var(--lp-hero);
}

/* Footer */
.landing-footer {
  padding: 1.5rem 1.25rem;
  background: #ffffff;
  border-top: 1px solid var(--lp-border);
}

.landing-footer-inner {
  max-width: var(--lp-container);
  margin: 0 auto;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  align-items: start;
}

.landing-footer-col-left {
  /* left aligned */
}

.landing-footer-col-right {
  /* right side: legal info */
}

.landing-footer-brand {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-accent);
}

.landing-footer-copy {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  color: var(--lp-text-secondary);
}

.landing-footer-cs {
  margin: 0;
  font-size: 0.8rem;
  color: var(--lp-text-secondary);
}

.landing-footer-cs a {
  color: var(--lp-accent);
  text-decoration: none;
}

.landing-footer-cs a:hover {
  text-decoration: underline;
}

.landing-footer-refund {
  margin: 0;
  font-size: 0.75rem;
  color: var(--lp-text-secondary);
  opacity: 0.8;
}

.landing-footer-links {
  margin: 0;
  font-size: 0.85rem;
}

.landing-footer-links a {
  color: var(--lp-accent);
  text-decoration: none;
  margin-right: 0.75rem;
}

.landing-footer-links a:hover {
  text-decoration: underline;
}

.landing-footer-legal-label {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-text-primary, #222);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.landing-footer-legal-body {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--lp-text-secondary);
}

.landing-footer-legal-body a {
  color: var(--lp-accent);
  text-decoration: none;
}

.landing-footer-legal-body a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .landing-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.landing-compare-grid,
.landing-proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .landing-compare-grid,
  .landing-proof-grid {
    grid-template-columns: 1fr;
  }
}

.landing-compare-card,
.landing-proof-card {
  background: #fcfdff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-sm);
  padding: 1.1rem 1.2rem;
  text-align: left;
}

.landing-compare-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--lp-text);
}

.landing-compare-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--lp-text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.landing-compare-card.is-primary {
  border-color: rgba(255, 92, 53, 0.25);
  background: #fff8f5;
}

.landing-proof-quote {
  margin: 0 0 0.6rem;
  color: var(--lp-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.landing-proof-meta {
  margin: 0;
  color: var(--lp-text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

.landing-security-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.landing-security-list li {
  text-align: left;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #ffffff;
  color: var(--lp-text-secondary);
  font-size: 0.93rem;
}

.landing-security-list strong {
  color: var(--lp-text);
}

.landing-integration-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.landing-integration-chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #f8faff;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
}

.landing-faq-list {
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.landing-faq-list details {
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem 0.95rem;
}

.landing-faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--lp-text);
}

.landing-faq-list p {
  margin: 0.55rem 0 0;
  color: var(--lp-text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Wide container */
.landing-inner-wide {
  max-width: 1000px;
}

/* Lorikeet-style compare */
.landing-compare-showcase {
  background: linear-gradient(180deg, #efeae3 0%, #f5f2ec 100%);
}

.landing-compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

@media (max-width: 720px) {
  .landing-compare-head {
    grid-template-columns: 1fr;
  }
}

.landing-title-serif {
  font-family: var(--lp-serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: var(--lp-text);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.landing-title-serif-accent {
  color: var(--lp-coral);
}

.landing-compare-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.55;
}

.landing-compare-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 720px) {
  .landing-compare-mockups {
    grid-template-columns: 1fr;
  }
}

.landing-mock {
  border-radius: var(--lp-radius-xl);
  padding: 1rem 1.1rem;
  text-align: left;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.landing-mock-problem {
  background: #e8e4de;
  border: 1px solid #dad5cd;
}

.landing-mock-solution {
  background: #fff;
  border: 1px solid var(--lp-border);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.12),
    0 14px 40px rgba(34, 197, 94, 0.1);
}

.landing-mock-head {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lp-text-secondary);
  margin-bottom: 0.65rem;
}

.landing-mock-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.landing-mock-line {
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.landing-mock-line.is-user {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.07);
  max-width: 94%;
}

.landing-mock-line.is-bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--lp-border);
  max-width: 96%;
}

.landing-mock-problem .landing-mock-line.is-bot {
  background: #f0eeea;
}

.landing-mock-foot {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
}

.landing-mock-foot-bad {
  color: #b45309;
}

.landing-mock-foot-good {
  color: #15803d;
}

.landing-compare-tabbar {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-cmp-tab {
  padding: 0.42rem 0.95rem;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--lp-text-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.landing-cmp-tab.is-active {
  background: var(--lp-text);
  color: #fff;
  border-color: var(--lp-text);
}

/* Korean: compare mock + tab pills match section title serif (Source Serif / Noto Serif KR) */
html[lang="ko"] .landing-compare-showcase .landing-mock,
html[lang="ko"] .landing-compare-showcase .landing-compare-tabbar {
  font-family: var(--lp-serif);
}

/* Tab buttons explicitly inherit from tabbar; keep weight readable in serif */
html[lang="ko"] .landing-compare-showcase .landing-cmp-tab {
  font-family: inherit;
}

/* Bento testimonial */
.landing-proof-bento .landing-bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  text-align: left;
  margin-top: 0.75rem;
}

@media (max-width: 720px) {
  .landing-proof-bento .landing-bento-grid {
    grid-template-columns: 1fr;
  }
}

.landing-bento-side {
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
}

.landing-bento-trust-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-text);
}

.landing-bento-trust-sub {
  margin: 0;
  font-size: 0.86rem;
  color: var(--lp-text-secondary);
  line-height: 1.5;
}

.landing-bento-main {
  position: relative;
  padding: 1.65rem 1.4rem 1.15rem;
  background: #fff;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.landing-bento-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.landing-bento-avatar-wrap {
  flex-shrink: 0;
}

.landing-bento-avatar {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lp-border);
  background: var(--lp-coral-soft);
  box-shadow: var(--lp-shadow-sm);
}

.landing-bento-quote-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}

@media (max-width: 480px) {
  .landing-bento-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .landing-bento-quote-wrap {
    text-align: center;
  }
  .landing-bento-controls {
    justify-content: center;
  }
}

.landing-bento-quote-icon {
  position: absolute;
  top: 0.85rem;
  left: 1.1rem;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--lp-coral);
  opacity: 0.35;
  font-family: var(--lp-serif);
  pointer-events: none;
}

.landing-bento-quote {
  margin: 0.25rem 0 1rem;
  padding: 0 0 0 0.25rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.55;
  color: var(--lp-text);
  font-family: var(--lp-serif);
  font-style: italic;
}

.landing-bento-meta {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
}

.landing-bento-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 1rem;
}

.landing-bento-nav {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: #fff;
  color: var(--lp-text);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.landing-bento-nav:hover {
  border-color: var(--lp-coral);
  background: var(--lp-coral-soft);
}

/* Header language toggle */
.landing-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  margin-left: 0.6rem;
}

.landing-lang-btn {
  border: none;
  background: transparent;
  color: var(--lp-text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.landing-lang-btn.is-active {
  background: var(--lp-text);
  color: #fff;
}

/* Global readability spacing tune */
body {
  line-height: 1.72;
}

.landing-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.landing-section-title {
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.landing-section-desc {
  margin-bottom: 2.5rem;
  line-height: 1.82;
}

.landing-hero-inner {
  max-width: 700px;
}

.landing-hero-badge {
  margin-bottom: 1.5rem;
}

.landing-hero-title {
  margin-bottom: 1.35rem;
}

.landing-hero-desc {
  margin-bottom: 1.8rem;
}

.landing-hero-prompt {
  margin-bottom: 1.75rem;
  padding: 1.2rem 1.3rem;
}

.landing-hero-categories {
  margin-bottom: 1rem;
  gap: 0.6rem;
}

.landing-hero-example-chips {
  margin-bottom: 0.8rem;
  gap: 0.55rem;
}

.landing-hero-actions {
  margin-top: 0.35rem;
  gap: 0.9rem;
}

.landing-social-proof {
  padding-top: 2.3rem;
  padding-bottom: 2.2rem;
}

.landing-stats {
  gap: 2.4rem 3.2rem;
  margin-bottom: 1.3rem;
}

.landing-feature-list,
.landing-problem-list,
.landing-usecase-list,
.landing-security-list,
.landing-faq-list {
  gap: 1.05rem;
}

.landing-feature-item,
.landing-usecase-list li,
.landing-problem-list li,
.landing-security-list li,
.landing-faq-list details,
.landing-price-card,
.landing-bento-main,
.landing-bento-side {
  padding: 1.35rem 1.4rem;
}

.landing-feature-item p,
.landing-usecase-list p,
.landing-problem-list p,
.landing-security-list li,
.landing-faq-list p {
  line-height: 1.74;
}

.landing-chat-demo-title {
  margin-top: 2rem;
}

.landing-chat-demo-hint {
  margin-bottom: 1.65rem;
}

.landing-compare-head {
  margin-bottom: 2rem;
}

.landing-compare-tabbar {
  margin-top: 1rem;
  padding-top: 1.25rem;
}

.landing-price-anchor {
  margin-bottom: 2rem;
}

.landing-price-note {
  margin-bottom: 1.9rem;
  line-height: 1.7;
}

.landing-final-cta .landing-section-inner {
  max-width: 780px;
}

.landing-footer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .landing-header-floating {
    padding-right: 0.55rem;
  }

  .landing-lang-toggle {
    margin-left: 0.3rem;
  }
}

@media (max-width: 640px) {
  .landing-header {
    padding-top: 0.5rem;
  }

  .landing-header-floating {
    border-radius: 18px;
    padding: 0.65rem 0.8rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .landing-logo {
    flex: 1;
  }

  .landing-lang-toggle {
    margin-left: auto;
  }

  .landing-section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .landing-hero {
    padding-top: 1.2rem;
  }
}

/* ── Email Capture Modal ─────────────────────────────────────────────────── */
.lead-modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.lead-modal-backdrop.hidden { display: none; }

.lead-modal {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  text-align: center;
  animation: lead-modal-in 0.25s ease;
}
@keyframes lead-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.lead-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: var(--lp-text-secondary);
  line-height: 1; padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.lead-modal-close:hover { background: #f0ede8; }

.lead-modal-emoji { font-size: 2rem; margin: 0 0 0.5rem; }

.lead-modal-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--lp-text); margin: 0 0 0.5rem;
}

.lead-modal-desc {
  font-size: 0.9rem; color: var(--lp-text-secondary);
  margin: 0 0 1.25rem; line-height: 1.5;
}

.lead-modal-input {
  width: 100%; box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--lp-border);
  border-radius: 0.75rem;
  font-size: 1rem; font-family: inherit;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.lead-modal-input:focus { outline: none; border-color: var(--lp-coral); }

.lead-modal-submit {
  display: block; width: 100%;
  padding: 0.85rem 1rem;
  background: var(--lp-coral); color: #fff;
  border: none; border-radius: 999px;
  font-size: 1rem; font-weight: 600; font-family: inherit;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 1rem;
}
.lead-modal-submit:hover { opacity: 0.88; }
.lead-modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.lead-modal-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.82rem; color: var(--lp-text-secondary);
}

.lead-modal-success.hidden { display: none; }

/* ── Sticky CTA Bar ──────────────────────────────────────────────────────── */
.landing-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(110%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.landing-sticky-cta.is-visible {
  transform: translateY(0);
}
.landing-sticky-cta-text {
  font-size: 0.88rem;
  color: var(--lp-text-muted, #6b6560);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landing-sticky-cta-btn {
  flex-shrink: 0;
  background: var(--lp-accent, #e8451a);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.landing-sticky-cta-btn:hover {
  opacity: 0.88;
}
@media (max-width: 480px) {
  .landing-sticky-cta-text { display: none; }
  .landing-sticky-cta { justify-content: center; }
  .landing-sticky-cta-btn { width: 100%; text-align: center; }
}
