:root {
  --ink: #1a1614;
  --mute: #6a615a;
  --bg: #f6f3ef;
  --surface: #ffffff;
  --line: #e4dcd3;
  --terra: #d46a32;
  --terra-d: #b85428;
  --soft: #f8eee7;
  --shadow: 0 18px 40px rgba(26, 22, 20, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.mkt {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Segoe UI, sans-serif;
  line-height: 1.5;
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--terra-d); }
.skip {
  position: absolute; left: -999px; top: 8px;
  background: #fff; color: var(--ink); padding: 8px 12px; z-index: 40;
}
.skip:focus { left: 8px; }
.kicker {
  text-transform: uppercase; letter-spacing: .14em; color: var(--terra);
  font-size: .72rem; font-weight: 800; margin: 0 0 8px;
}
.lead { color: var(--mute); max-width: 54ch; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--terra); color: #fff; text-decoration: none; border: 0;
  border-radius: 12px; min-height: 48px; padding: 12px 20px; font-weight: 800; cursor: pointer;
  box-shadow: 0 10px 24px rgba(212, 106, 50, .22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { background: var(--terra-d); transform: translateY(-1px); }
.btn:active { transform: none; }
.btn.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--terra); color: var(--terra-d); background: var(--soft); }
.btn-nav { min-height: 40px; padding: 8px 14px; font-size: .85rem; }

.mkt-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 10px 7vw;
  background: rgba(246, 243, 239, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.mkt-brand { display: flex; align-items: center; }
.mkt-brand .brand-logo { height: 48px; width: auto; display: block; }
.mkt-nav nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.mkt-nav nav a {
  color: var(--mute); text-decoration: none; font-size: .88rem; font-weight: 650;
  transition: color .18s ease;
}
.mkt-nav nav a:hover { color: var(--ink); }
.nav-quiet { font-weight: 700; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  padding: 10px 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); margin: 6px 0; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.mkt-hero {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 40px; align-items: center;
  padding: 48px 7vw 28px;
}
.mkt-hero-copy, .mkt-shot { min-width: 0; }
.mkt-hero h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.85rem);
  line-height: 1.14; letter-spacing: -.03em; margin: 0 0 14px;
  overflow-wrap: break-word;
}
.mkt-hero .lead { margin: 0 0 22px; font-size: 1.05rem; }
.mkt-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.mkt-checks { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.mkt-checks li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px 6px 10px; font-size: .82rem; font-weight: 650; color: #3f3833;
}
.mkt-checks li::before { content: "✓"; color: var(--terra); font-weight: 800; margin-right: 6px; }
.mkt-shot { margin: 0; }
.mkt-shot img, .mkt-shots-grid img {
  width: 100%; display: block; border-radius: 20px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: #fff;
}
.mkt-shot figcaption, .mkt-shots-grid figcaption {
  color: var(--mute); font-size: .82rem; margin-top: 10px;
}

.mkt-block { padding: 56px 7vw; }
.mkt-head { max-width: 640px; margin-bottom: 28px; }
.mkt-head h2, .mkt-eco h2, .mkt-form h2, .mkt-final h2, .mkt-faq + .mkt-head h2 {
  margin: 0 0 10px; font-size: clamp(1.45rem, 2.4vw, 2rem); letter-spacing: -.02em;
}
.mkt-head p { margin: 0; color: var(--mute); }

.mkt-pain {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.mkt-pain article, .mkt-feats article, .mkt-why article, .mkt-steps article {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mkt-pain article:hover, .mkt-feats article:hover, .mkt-why article:hover, .mkt-steps article:hover {
  transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d9cfc4;
}
.mkt-pain h3, .mkt-feats h3, .mkt-why h3, .mkt-steps h3 { margin: 0 0 8px; font-size: 1.02rem; }
.mkt-pain p, .mkt-feats p, .mkt-why p, .mkt-steps p { margin: 0; color: var(--mute); font-size: .92rem; }
.mkt-bridge {
  margin: 28px 0 0; font-size: 1.15rem; font-weight: 800; text-align: center;
}

.mkt-flow {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 0; margin: 0 0 22px;
}
.mkt-flow li {
  background: var(--ink); color: #fff; border-radius: 16px; padding: 16px 18px;
  display: grid; gap: 4px;
}
.mkt-flow span { font-weight: 800; }
.mkt-flow small { color: #cbb9a8; font-size: .82rem; }
.mkt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { display: block; color: var(--terra); font-weight: 800; font-size: .78rem; margin-bottom: 8px; letter-spacing: .08em; }

.mkt-eco {
  margin: 0 7vw; padding: 32px;
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: start;
  background: var(--ink); color: #f7efe6; border-radius: 24px;
}
.mkt-eco .lead, .mkt-eco li { color: #cbb9a8; }
.mkt-eco ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.mkt-eco li {
  padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.04);
  border: 1px solid #3a3129;
}
.mkt-eco strong { color: #fff; display: block; margin-bottom: 2px; }
.mkt-pair {
  display: flex; align-items: center; gap: 12px; margin: 18px 0 22px; flex-wrap: wrap;
}
.mkt-pair span {
  background: #fff; color: var(--ink); border-radius: 999px; padding: 8px 14px; font-weight: 800;
}
.mkt-pair em { color: #f08a4a; font-style: normal; font-weight: 800; }

.mkt-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mkt-shots-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; }
.mkt-shots-grid figcaption strong { display: block; color: var(--ink); font-size: .92rem; }

.mkt-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mkt-benefits {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  list-style: none; padding: 0; margin: 0;
}
.mkt-benefits li {
  background: var(--soft); border-radius: 14px; padding: 16px; font-weight: 700; font-size: .92rem;
}

.mkt-who {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.mkt-who li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 12px; text-align: center; font-weight: 750;
}

.mkt-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mkt-quote {
  background: var(--surface); border: 1px dashed var(--line); border-radius: 16px; padding: 22px;
  color: var(--mute); max-width: 720px;
}
.mkt-quote p { margin: 0; }

.mkt-faq { display: grid; gap: 8px; max-width: 760px; }
.mkt-faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 4px 16px;
}
.mkt-faq summary {
  cursor: pointer; font-weight: 750; padding: 14px 0; list-style: none;
}
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq p { margin: 0 0 14px; color: var(--mute); }

.mkt-final {
  margin: 8px 7vw 0; padding: 36px;
  background: var(--soft); border-radius: 24px; text-align: center;
}
.mkt-final p { color: var(--mute); margin: 0 auto 18px; max-width: 48ch; }
.mkt-final .mkt-cta { justify-content: center; margin: 0; }

.mkt-forms {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px;
  padding: 36px 7vw 56px;
}
.mkt-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px;
}
.mkt-form:focus-within { border-color: #e0b394; box-shadow: 0 0 0 4px rgba(212,106,50,.12); }
.mkt-form > p { color: var(--mute); }
.mkt-form form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.mkt-form label { display: grid; gap: 6px; font-size: .8rem; color: var(--mute); font-weight: 700; }
.mkt-form .wide, .mkt-form .wide-btn { grid-column: 1 / -1; }
.mkt-form input, .mkt-form textarea {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  border-radius: 12px; padding: 12px 14px; font: inherit;
}
.mkt-form input:focus, .mkt-form textarea:focus {
  outline: none; border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(212,106,50,.16);
}
.mkt-form .hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.flash { padding: 12px 14px; border-radius: 12px; margin: 0; }
.flash.ok { background: #e8f4ea; color: #1f4a28; }
.flash.err { background: #fbe9e6; color: #7a2a20; }
.mkt-banners { padding: 12px 7vw 0; }

.mkt-foot {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 28px 7vw 48px; border-top: 1px solid var(--line); color: var(--mute);
}
.mkt-foot nav { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; }
.mkt-foot a { text-decoration: none; color: var(--mute); font-weight: 650; }
.mkt-foot a:hover { color: var(--ink); }
.foot-logo { height: 56px; width: auto; display: block; margin-bottom: 8px; }

.io { opacity: 1; transform: none; }
html.js .io { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
html.js .io.in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .mkt-pain, .mkt-steps, .mkt-why, .mkt-benefits, .mkt-who, .mkt-flow { grid-template-columns: repeat(2, 1fr); }
  .mkt-feats { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .mkt-nav nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px; flex-direction: column; align-items: stretch; gap: 4px;
  }
  body.nav-open .mkt-nav nav { display: flex; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mkt-nav { padding: 10px 16px; }
  .mkt-hero, .mkt-eco, .mkt-shots-grid, .mkt-forms { grid-template-columns: 1fr; }
  .mkt-hero { padding: 28px 16px 16px; gap: 22px; }
  .mkt-hero h1 { font-size: 1.7rem; }
  .mkt-block, .mkt-forms, .mkt-foot, .mkt-banners { padding-left: 16px; padding-right: 16px; }
  .mkt-eco, .mkt-final { margin-left: 16px; margin-right: 16px; padding: 22px; }
  .mkt-form form { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mkt-pain, .mkt-steps, .mkt-why, .mkt-benefits, .mkt-who, .mkt-flow, .mkt-feats { grid-template-columns: 1fr; }
  .mkt-cta .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .io { opacity: 1; transform: none; transition: none; }
  .btn, .mkt-pain article, .mkt-feats article { transition: none; }
}
