/* ============================================================
   NatalChat — pixel-perfect mockup CSS
   v2 — full-bleed hero, horizontal mini-features, h-feature-cards
   ============================================================ */

:root {
  --bg:        #faf6ec;
  --bg-soft:   #f4ecd9;
  --fg:        #2a1f12;
  --muted:     #6c5a44;
  --gold:      #c89a5b;
  --gold-deep: #b88340;
  --gold-soft: #e8d3a8;
  --gold-tint: #f4ead4;
  --line:      rgba(200, 154, 91, 0.20);
  --shadow-soft: 0 12px 40px rgba(184, 131, 64, 0.10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* offset for sticky nav */
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   ✦+ marker (sparkle with plus)
   ============================================================ */
.btn-spark-plus, .pill-spark-plus {
  display: inline-flex;
  align-items: flex-start;
  gap: 1px;
  font-size: inherit;
  line-height: 1;
}
.btn-spark-plus .spark, .pill-spark-plus .spark { font-size: 0.85em; }
.btn-spark-plus .plus, .pill-spark-plus .plus { font-size: 0.55em; margin-top: -2px; opacity: 0.85; }

/* ============================================================
   NAV
   ============================================================ */
.nc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 56px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.nc-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nc-logo-mark { width: 48px; height: 48px; flex-shrink: 0; }
.nc-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nc-logo-name {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.4px;
  color: var(--fg);
}
.nc-logo-tagline {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.nc-menu {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nc-menu-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nc-menu-item:hover { color: var(--gold-deep); }
.nc-menu-item.is-active { color: var(--gold-deep); }
.nc-menu-item.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nc-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 14.5px;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  color: var(--fg);
  background: #fff;
  transition: border-color .15s ease, color .15s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--gold);
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 18px rgba(200, 154, 91, 0.25);
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200, 154, 91, 0.35); }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: 14px; }

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-deep);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 4px;
  transition: color .15s ease, gap .2s ease;
}
.btn-link-gold:hover { color: var(--gold); gap: 10px; }

.nc-burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nc-burger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; }

/* Mobile drawer */
.nc-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 88vw;
  background: #fff;
  z-index: 1100;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -16px 0 48px rgba(0,0,0,0.14);
}
.nc-drawer.is-open { transform: translateX(0); }
.nc-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 14, 17, 0.45);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.nc-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.nc-drawer-close {
  align-self: flex-end;
  width: 36px; height: 36px;
  background: none; border: none;
  font-size: 28px; line-height: 1;
  color: var(--fg);
  cursor: pointer;
  margin-bottom: 4px;
}
.nc-drawer-menu { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.nc-drawer-link {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--fg);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: color .15s ease;
}
.nc-drawer-link:hover { color: var(--gold-deep); }
.nc-drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ============================================================
   HERO — full-bleed photo on the right edge
   ============================================================ */
.lp-hero {
  position: relative;
  overflow: hidden;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  gap: 0;
  max-width: 1640px;
  margin: 0 auto;
}
.lp-hero-text {
  padding: 56px 24px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 560px;
}

.lp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: transparent;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
  align-self: flex-start;
}

.lp-hero-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 22px 0 20px;
  color: var(--fg);
}
@media (min-width: 1500px) { .lp-hero-title { font-size: 64px; } }
@media (max-width: 1280px) { .lp-hero-title { font-size: 52px; } }

.lp-hero-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 36px;
}

.lp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
}

/* 3 mini features — HORIZONTAL row */
.lp-hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 24px;
}
.lp-hero-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.lp-hero-feat-ico { width: 30px; height: 30px; flex-shrink: 0; }
.lp-hero-feat-text {
  font-size: 13px;
  line-height: 1.3;
  color: var(--fg);
  font-weight: 400;
  min-width: 0;
}

/* Photo column — full-bleed to right edge, image visible as a whole */
.lp-hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 600px;
  overflow: hidden;
}
.lp-hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 30% center;
  border-radius: 0;
  /* Soft fade on the left & bottom edges into cream bg */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 100%),
    linear-gradient(to top, transparent 0%, #000 10%, #000 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 100%),
    linear-gradient(to top, transparent 0%, #000 10%, #000 100%);
          mask-composite: intersect;
}
/* Fallback for browsers without mask-composite — overlay gradients */
@supports not ((mask-composite: intersect) or (-webkit-mask-composite: source-in)) {
  .lp-hero-photo { -webkit-mask-image: none; mask-image: none; }
  .lp-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(to right, var(--bg) 0%, rgba(250,246,236,0) 14%),
      linear-gradient(to top,   var(--bg) 0%, rgba(250,246,236,0) 10%);
    z-index: 1;
  }
}

/* ============================================================
   HERO FORM — overlay card on the bottom-right of hero photo
   ============================================================ */
.lp-hero-form {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: clamp(300px, 26vw, 360px);
  background: rgba(255, 252, 244, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-soft);
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 24px 60px rgba(184, 131, 64, 0.20);
  z-index: 5;
}
.lp-hero-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.lp-hero-form-h {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.3px;
  margin: 6px 0 16px;
  color: var(--fg);
  line-height: 1.15;
}
.lp-hero-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.lp-hero-form-field label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-hero-form-field input {
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #fff;
  color: var(--fg);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.lp-hero-form-field input::placeholder { color: rgba(108, 90, 68, 0.5); }
.lp-hero-form-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 154, 91, 0.15);
}
.lp-hero-form-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10px;
}
.lp-hero-form-row .lp-hero-form-field { margin-bottom: 10px; }

.btn-form {
  width: 100%;
  justify-content: center;
  padding: 13px;
  margin-top: 8px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 11px;
}
.lp-hero-form-hint {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  opacity: 0.85;
}

/* ============================================================
   FEATURES — 5 horizontal cards (icon left, text right)
   ============================================================ */
.features {
  padding: 56px 56px 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1640px;
  margin: 0 auto;
}
.feat-card-h {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px;
  align-items: start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.feat-card-h:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-soft);
}
.feat-card-h .feat-ico {
  grid-row: 1 / span 2;
  align-self: start;
  width: 44px; height: 44px;
  margin-top: 2px;
}
.feat-card-h .feat-title {
  grid-column: 2;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.3px;
  margin: 0;
  color: var(--fg);
  line-height: 1.1;
}
.feat-card-h .feat-desc {
  grid-column: 2;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   BOTTOM STRIP
   ============================================================ */
.lp-bottom-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 28px 56px 48px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}
.lp-strip-spark { color: var(--gold); font-size: 14px; }
.lp-strip-dot { color: var(--gold-soft); }

/* ============================================================
   SECTION COMMON — eyebrow + title (FAQ + Final CTA)
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.eyebrow-spark { color: var(--gold); font-size: 11px; }

.section-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 14px 0 0;
  color: var(--fg);
  text-align: center;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 88px 56px 56px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 12px 0 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}

.price-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-soft);
}
.price-card-popular {
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 18px 56px rgba(184, 131, 64, 0.18);
}
.price-card-popular:hover { transform: translateY(-3px); }

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-name {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.4px;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.price-num {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--fg);
}
.price-cur {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--fg);
  margin-left: 2px;
}
.price-period {
  font-size: 13.5px;
  color: var(--muted);
  margin-left: 4px;
}

.price-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 14px 0 22px;
  min-height: 40px;
}

.price-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.price-feat li {
  font-size: 14px;
  line-height: 1.4;
  color: var(--fg);
  padding-left: 26px;
  position: relative;
}
.price-feat li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}

.btn-price {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 14.5px;
  border-radius: 12px;
}
.price-ctas { display: flex; flex-direction: column; gap: 8px; }
.price-ctas .btn-price { padding: 12px 14px; font-size: 13.5px; }

.pricing-foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 88px 56px 72px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item[open] {
  border-color: var(--gold-soft);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--fg);
  letter-spacing: -0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  transition: transform .25s ease, border-color .2s ease, background .2s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-deep);
  border-radius: 1px;
  transition: opacity .2s ease;
}
.faq-icon::before { left: 50%; top: 5px; bottom: 5px; width: 1.5px; transform: translateX(-50%); }
.faq-icon::after  { top: 50%; left: 5px; right: 5px; height: 1.5px; transform: translateY(-50%); }
.faq-item[open] .faq-icon { transform: rotate(180deg); border-color: var(--gold); background: var(--gold-tint); }
.faq-item[open] .faq-icon::before { opacity: 0; }

.faq-answer {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}
.faq-answer b { color: var(--fg); font-weight: 600; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 80px 56px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-decor {
  position: absolute;
  width: 140px; height: 140px;
  opacity: 0.35;
  pointer-events: none;
}
.cta-decor-l { left: -60px; top: -10px; }
.cta-decor-r { right: -50px; bottom: -20px; }
.cta-decor svg { width: 100%; height: 100%; }

.final-cta-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 16px 0 18px;
  color: var(--fg);
}
.final-cta-sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 32px;
}
.final-cta-hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  opacity: 0.85;
}

.final-form {
  background: rgba(255, 252, 244, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-soft);
  border-radius: 22px;
  padding: 28px 28px 24px;
  margin-top: 32px;
  box-shadow: 0 18px 56px rgba(184, 131, 64, 0.15);
  text-align: left;
}
.final-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 18px;
}
.btn-final {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .final-form { padding: 22px 18px 18px; }
  .final-form-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.nc-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 56px 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-col-brand .nc-logo { margin-bottom: 16px; }
.footer-about {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 360px;
}
.footer-h {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--fg);
  letter-spacing: -0.2px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--gold-deep); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-mini { max-width: 560px; opacity: 0.85; }

/* ============================================================
   RESPONSIVE — TABLET / MOBILE
   ============================================================ */
@media (max-width: 1180px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid .feat-card-h:nth-child(n+4) { /* keep all visible */ }
}

@media (max-width: 980px) {
  .nc-nav { padding: 14px 16px; gap: 10px; }
  .nc-menu { display: none; }
  .nc-actions { display: none; } /* всё в drawer */
  .nc-burger { display: flex; margin-left: auto; }
  .nc-logo-name { font-size: 21px; }
  .nc-logo-tagline { font-size: 10.5px; }
  .nc-logo-mark { width: 40px; height: 40px; }

  .pricing-section { padding: 56px 22px 40px; }
  .price-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .price-card { padding: 28px 22px 22px; }
  /* Free → Plus → Lunar на mobile (HTML order) */

  .faq-section { padding: 56px 22px 48px; }
  .faq-item summary { padding: 16px 18px; font-size: 17px; }
  .faq-answer { padding: 0 18px 18px; font-size: 14px; }

  .final-cta { padding: 56px 22px; }
  .cta-decor { width: 90px; height: 90px; }
  .cta-decor-l { left: -30px; top: 20px; }
  .cta-decor-r { right: -25px; bottom: 30px; }

  .nc-footer { padding: 40px 22px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 32px; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lp-hero-text { order: 1; padding: 32px 22px 8px; max-width: 100%; }
  .lp-hero-visual {
    order: 2;
    min-height: auto;
    height: auto;
    aspect-ratio: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    padding: 0 22px 32px;
  }
  .lp-hero-photo { aspect-ratio: 4/3; object-fit: cover; }
  .lp-hero-form {
    position: static;
    width: 100%;
    margin-top: -40px; /* pull up to overlap photo bottom slightly */
    z-index: 5;
  }

  .lp-hero-pill { font-size: 10.5px; padding: 7px 14px; letter-spacing: 0.14em; }
  .lp-hero-title { font-size: 44px; line-height: 1.05; margin: 22px 0 18px; letter-spacing: -1px; }
  .lp-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .lp-hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
  .btn-lg { padding: 15px 28px; }

  .lp-hero-features { grid-template-columns: 1fr; gap: 18px; }

  .features { padding: 40px 22px 56px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feat-card-h { padding: 18px 18px; }
  .feat-card-h .feat-ico { width: 38px; height: 38px; }
  .feat-card-h .feat-title { font-size: 19px; }

  .lp-bottom-strip { font-size: 12.5px; gap: 10px; padding: 22px 22px 36px; }
}

@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .lp-hero-title { font-size: 38px; }
}

/* Time unknown checkbox */
.nc-time-unknown {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--fg); opacity: 0.7;
  cursor: pointer; margin: -4px 0 2px;
}
.nc-time-unknown input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px; height: 16px; cursor: pointer;
}
