:root {
  --lp-bg: #ffffff;
  --lp-bg-alt: #f7f8fa;
  --lp-text: #111827;
  --lp-muted: #4b5563;
  --lp-border: rgba(17, 24, 39, 0.08);
  --lp-primary: #fee500;
  --lp-primary-text: #181600;
  --lp-accent: #3b82f6;
  --lp-radius: 16px;
  --lp-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --lp-max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", Pretendard, Roboto, sans-serif;
  color: var(--lp-text);
  background: var(--lp-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-header__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-brand__logo { width: 28px; height: 28px; border-radius: 6px; }
.lp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted);
  transition: color 0.15s, background 0.15s;
}
.lp-nav a:hover { color: var(--lp-text); background: var(--lp-bg-alt); }
.lp-nav__link--active {
  color: var(--lp-text) !important;
  background: rgba(254, 229, 0, 0.28);
  box-shadow: inset 0 0 0 1px rgba(254, 229, 0, 0.42);
}
.lp-cta {
  margin-left: 8px;
  background: var(--lp-primary);
  color: var(--lp-primary-text) !important;
  padding: 10px 18px;
}
.lp-cta:hover { background: #ffd900; }
.lp-login-btn,
.lp-header-auth__logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #ffffff;
  color: #374151;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.lp-login-btn {
  border-color: #0b1320;
  background: #0b1320;
  color: #ffffff;
}
.lp-login-btn:hover,
.lp-header-auth__logout:hover {
  color: var(--lp-text);
  background: var(--lp-bg-alt);
  border-color: rgba(17, 24, 39, 0.14);
}
.lp-login-btn:hover {
  color: #ffffff;
  background: #111923;
  border-color: #111923;
}
.lp-header-auth {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}
.lp-header-auth.hidden,
.lp-login-btn.hidden {
  display: none;
}
.lp-header-auth__welcome {
  max-width: 180px;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-header-auth__logout {
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.24);
  background: #fff7f7;
}
.lp-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.lp-menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
}

.lp-login-modal.hidden { display: none; }
.lp-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lp-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-login-modal__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 34px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  text-align: center;
}
.lp-login-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #ffffff;
  color: #374151;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lp-login-modal__logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 12px;
}
.lp-login-modal__panel h2 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.lp-login-modal__panel p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}
.lp-login-modal__kakao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin: 24px 0 14px;
  border: 1px solid #f2d600;
  border-radius: 12px;
  background: #fee500;
  color: #181600;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(254, 229, 0, 0.26);
}
.lp-login-modal__kakao:hover { background: #ffd900; }
.lp-login-modal__notice {
  font-size: 12px !important;
  line-height: 1.6;
}
.lp-login-modal__notice a {
  color: #111827;
  font-weight: 800;
  text-decoration: underline;
}
.lp-login-modal-open { overflow: hidden; }

/* ── PC 연결 안내 모달 (시작하기 클릭 시) ─────────────────────────── */
.lp-pc-modal.hidden { display: none; }
.lp-pc-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lp-pc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-pc-modal__panel {
  position: relative;
  width: min(440px, 100%);
  padding: 32px 28px 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  text-align: center;
}
.lp-pc-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #ffffff;
  color: #374151;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lp-pc-modal__close:hover { background: var(--lp-bg-alt); }
.lp-pc-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: rgba(254, 229, 0, 0.18);
  border-radius: 16px;
}
.lp-pc-modal__panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}
.lp-pc-modal__desc {
  margin: 0 0 24px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.65;
}
.lp-pc-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-pc-modal__actions .lp-btn {
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14.5px;
}
.lp-pc-modal-open { overflow: hidden; }

/* Hero */
.lp-hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(254, 229, 0, 0.16), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.10), transparent 50%),
    linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
  padding: 100px 24px 80px;
}
.lp-hero__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 0 24px;
  background: rgba(254, 229, 0, 0.18);
  color: #8b6e00;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lp-hero__title {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.lp-hero__sub {
  margin: 0 0 36px;
  color: var(--lp-muted);
  font-size: clamp(15px, 2vw, 18px);
}
.lp-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.lp-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}
.lp-hero__stats li { text-align: center; }
.lp-hero__stats b {
  display: block;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}
.lp-hero__stats span {
  font-size: 13px;
  color: var(--lp-muted);
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.lp-btn--primary {
  background: var(--lp-primary);
  color: var(--lp-primary-text);
  box-shadow: 0 4px 12px rgba(254, 229, 0, 0.35);
}
.lp-btn--primary:hover { background: #ffd900; transform: translateY(-1px); }
.lp-btn--ghost {
  background: #ffffff;
  color: var(--lp-text);
  border-color: var(--lp-border);
}
.lp-btn--ghost:hover { background: var(--lp-bg-alt); }
.lp-btn--disabled,
.lp-btn--disabled:hover {
  cursor: default;
  opacity: 0.62;
  filter: grayscale(0.15);
  transform: none;
}
.lp-btn--large { padding: 18px 36px; font-size: 16px; }

/* Sections */
.lp-section {
  padding: 96px 24px;
  background: var(--lp-bg);
}
.lp-section--alt { background: var(--lp-bg-alt); }
.lp-section__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp-section__eyebrow {
  margin: 0 0 12px;
  color: var(--lp-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.lp-section__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}
.lp-section__sub {
  margin: 0 0 56px;
  color: var(--lp-muted);
  font-size: 16px;
  text-align: center;
}

/* Features */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.lp-feature {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
}
.lp-feature__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.lp-feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.lp-feature p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}

/* Pricing */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.lp-pricing__notice {
  max-width: 920px;
  margin: 18px auto 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.lp-pricing__notice a {
  color: #1d4ed8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp-plan {
  position: relative;
  padding: 34px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 251, 235, 0.74) 0%, rgba(255, 255, 255, 0) 34%),
    #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lp-plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #fee500, #60a5fa);
}
.lp-plan--featured {
  border-color: var(--lp-primary);
  box-shadow: 0 18px 44px rgba(254, 229, 0, 0.24), 0 12px 30px rgba(15, 23, 42, 0.08);
}
.lp-plan:hover,
.lp-plan--featured:hover {
  transform: translateY(-8px);
  border-color: var(--lp-primary);
  box-shadow: 0 18px 44px rgba(254, 229, 0, 0.22), 0 12px 30px rgba(15, 23, 42, 0.08);
}
.lp-plan__kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #374151;
  font-size: 12px;
  font-weight: 800;
}
.lp-plan__badge {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--lp-primary);
  color: var(--lp-primary-text);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 22px rgba(254, 229, 0, 0.40);
  animation: lp-badge-pulse 1.6s ease-in-out infinite;
}
@keyframes lp-badge-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.lp-plan h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.lp-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 4px;
}
.lp-plan__price b {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.lp-plan__price span {
  color: var(--lp-muted);
  font-size: 14px;
  font-weight: 700;
}
.lp-plan__price-old {
  display: block;
  width: fit-content;
  color: #9ca3af;
  font-size: 15px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: #9ca3af;
  text-decoration-thickness: 1.5px;
  margin: 0 0 2px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lp-plan__tax {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 12px;
}
.lp-plan__sub {
  margin: 0 0 10px;
  color: var(--lp-text);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.55;
}
.lp-plan__desc {
  margin: 0 0 22px;
  color: var(--lp-muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.lp-plan__list-title {
  margin: 0 0 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  color: #111827;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lp-plan ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.lp-plan ul li {
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: var(--lp-text);
  position: relative;
}
.lp-plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.lp-plan .lp-btn {
  width: 100%;
}

/* Download */
.lp-download {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.lp-download__card {
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  text-align: center;
}
.lp-download__card--secondary { background: var(--lp-bg-alt); }
.lp-download__icon {
  font-size: 44px;
  margin-bottom: 14px;
}
.lp-download__card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}
.lp-download__card p {
  margin: 0 0 20px;
  color: var(--lp-muted);
  font-size: 14px;
}
.lp-download__hint {
  margin: 16px 0 0;
  font-size: 10px;
  color: var(--lp-muted);
}

.lp-install-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.36);
}
.lp-install-modal.hidden { display: none; }
.lp-install-modal__box {
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}
.lp-install-modal__box h2 {
  margin: 0 0 10px;
  color: var(--lp-text);
  font-size: 22px;
  line-height: 1.25;
}
.lp-install-modal__box p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}
.lp-install-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.lp-install-modal__actions .lp-btn {
  flex: 1;
  justify-content: center;
}

/* Support */
.lp-support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.lp-support__card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
}
.lp-support__card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
}
.lp-support__card p {
  margin: 0 0 6px;
  color: var(--lp-muted);
  font-size: 14px;
}
.lp-support__card a {
  color: var(--lp-accent);
  font-weight: 600;
  font-size: 14px;
}
.lp-support__card a:hover { text-decoration: underline; }
.lp-support__hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.lp-kakao-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: #fee500;
  color: #191919;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(25, 25, 25, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.lp-kakao-chat:hover {
  background: #ffdc00;
  box-shadow: 0 10px 22px rgba(25, 25, 25, 0.12);
  transform: translateY(-1px);
}
.lp-kakao-chat img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
@media (max-width: 560px) {
  .lp-support__hours {
    align-items: flex-start;
    flex-direction: column;
  }
  .lp-kakao-chat {
    width: 100%;
  }
}
.lp-faq-modal.hidden { display: none; }
.lp-faq-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lp-faq-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.54);
  cursor: pointer;
}
.lp-faq-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}
.lp-faq-modal__panel h2 {
  margin: 0;
  color: var(--lp-text);
  font-size: 30px;
  letter-spacing: 0;
}
.lp-faq-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--lp-text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.lp-faq-modal__close:hover { background: #ffcc00; }
.lp-faq-modal-open { overflow: hidden; }
.lp-faq {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.lp-faq__item {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: #ffffff;
  box-shadow: var(--lp-shadow-sm);
  overflow: hidden;
}
.lp-faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--lp-text);
  font-size: 16px;
  font-weight: 800;
}
.lp-faq__item summary::marker { color: var(--lp-accent); }
.lp-faq__body {
  padding: 0 22px 20px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.7;
}
.lp-faq__body p { margin: 8px 0; }
.lp-faq__body ol,
.lp-faq__body ul {
  margin: 8px 0;
  padding-left: 20px;
}
.lp-faq__body li + li { margin-top: 6px; }

/* CTA Band */
.lp-cta-band {
  padding: 80px 24px;
  background: linear-gradient(135deg, #111923 0%, #06111d 100%);
  color: #ffffff;
  text-align: center;
}
.lp-cta-band__inner { max-width: 720px; margin: 0 auto; }
.lp-cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-cta-band p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

/* Footer */
.lp-footer {
  background: #0b1320;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 24px 24px;
}
.lp-footer__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 2fr;
  gap: 40px;
}
.lp-footer__brand img { width: 32px; height: 32px; border-radius: 6px; display: inline-block; vertical-align: middle; }
.lp-footer__brand strong {
  color: #ffffff;
  font-size: 18px;
  margin-left: 8px;
  vertical-align: middle;
}
.lp-footer__brand p {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}
.lp-footer__nav,
.lp-footer__policy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-footer__nav h2,
.lp-footer__policy h2,
.lp-footer__business h2 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-footer__nav a,
.lp-footer__policy a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}
.lp-footer__nav a:hover,
.lp-footer__policy a:hover { color: #ffffff; }
.lp-footer__business ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  font-size: 13px;
}
.lp-footer__business li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(255, 255, 255, 0.78);
}
.lp-footer__business li span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lp-footer__business li b {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.lp-footer__business li:nth-child(3) { grid-column: 1 / -1; }
.lp-footer__bottom {
  max-width: var(--lp-max);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .lp-menu-toggle { display: inline-flex; }
  .lp-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px;
    background: #ffffff;
    border-bottom: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    display: none;
  }
  .lp-nav.is-open { display: flex; }
  .lp-nav a,
  .lp-nav button,
  .lp-header-auth { width: 100%; text-align: center; }
  .lp-cta { margin: 4px 0 0; }
  .lp-header-auth {
    justify-content: center;
    flex-direction: column;
    margin-left: 0;
  }
  .lp-header-auth__welcome { max-width: none; }
  .lp-hero { padding: 64px 20px 56px; }
  .lp-section { padding: 64px 20px; }
  .lp-hero__stats { grid-template-columns: 1fr; gap: 14px; }
  .lp-plan--featured { transform: none; }
  .lp-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .lp-footer__business ul { grid-template-columns: 1fr; }
  .lp-footer__business li:nth-child(3) { grid-column: 1; }
  .lp-cta-band { padding: 56px 20px; }
}
