/* Vaše podněty — prodejní microsite.
   Paleta navazuje na demo (Lipová Lhota): listová zeleň + medová + papír. */

:root {
  --ink:    #24503a;   /* listová zeleň — text, tmavé plochy */
  --ink-9:  #16321f;   /* nejtmavší zeleň — panely */
  --honey:  #d9a441;   /* medová — akcent, CTA */
  --honey-d:#8f6b1e;   /* tmavá medová — kickers, ikony */
  --paper:  #f7f5ec;   /* pozadí */
  --paper-2:#efece0;   /* alt sekce */
  --line:   #e2ddc9;
  --muted:  #6f6d5e;
  --white:  #ffffff;
  --font-display: 'Archivo Expanded', 'Archivo', system-ui, sans-serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(22, 50, 31, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 74px; }
body {
  margin: 0; font-family: var(--font-sans); color: var(--ink);
  background: var(--paper); line-height: 1.55; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -.01em; line-height: 1.02; margin: 0; }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(19px, 2.6vw, 24px); }
p { margin: 0; }
code { background: var(--paper-2); padding: 2px 7px; border-radius: 7px; font-size: .88em; }

.kicker {
  font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--honey-d); margin-bottom: 12px;
}
.kicker-light { color: var(--honey); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 800; font-size: 17px;
  padding: 15px 26px; border-radius: 14px; text-decoration: none;
  border: none; cursor: pointer; transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-solid { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-honey { background: var(--honey); color: var(--ink-9); }
.btn-sm { padding: 10px 18px; font-size: 15px; border-radius: 11px; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 26px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(247, 245, 236, .92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 900; font-size: 19px; text-transform: uppercase; }
.brand em { font-style: normal; color: var(--honey-d); }
.brand-mark { width: 32px; height: 32px; }
.topnav { display: flex; gap: 20px; flex: 1; justify-content: center; }
.topnav a { text-decoration: none; font-weight: 700; font-size: 15px; color: var(--ink); opacity: .8; }
.topnav a:hover { opacity: 1; }
@media (max-width: 860px) { .topnav { display: none; } .topbar { justify-content: space-between; } }

/* ---------- Hero ---------- */
.hero { padding: clamp(30px, 6vw, 70px) clamp(18px, 4vw, 44px) 0; overflow: hidden; }
.hero-inner {
  max-width: 1160px; margin: 0 auto; display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 40px; align-items: center;
}
.hero h1 { font-size: clamp(34px, 5.6vw, 62px); }
.hero .hl { color: var(--honey-d); }
.lead { font-size: clamp(17px, 2vw, 20px); margin: 22px 0 28px; max-width: 560px; font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero-chips span {
  background: var(--white); border: 1px solid var(--line); padding: 8px 14px;
  border-radius: 999px; font-weight: 700; font-size: 14px;
}
.hero-shot { position: relative; display: flex; justify-content: center; min-height: 460px; }
.phone {
  margin: 0; width: min(250px, 58vw); border-radius: 34px; overflow: hidden;
  border: 9px solid var(--ink-9); box-shadow: 0 30px 60px rgba(22,50,31,.28);
  background: var(--ink-9); position: relative; z-index: 2;
}
.phone img { border-radius: 24px; }
.phone-back {
  position: absolute; z-index: 1; transform: rotate(7deg) translateX(66%) scale(.92);
  top: 34px; opacity: .96;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-shot { min-height: 0; margin-top: 6px; }
  .phone-back { display: none; }
}

.trust {
  max-width: 1160px; margin: clamp(30px, 5vw, 56px) auto 0;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.trust-label { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.trust-item { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 15px; }
.trust-item + .trust-item::before { content: '·'; margin-right: 14px; color: var(--honey); }

/* ---------- Sections ---------- */
.section { padding: clamp(44px, 7vw, 84px) clamp(18px, 4vw, 44px); }
.section > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
.section-alt { background: var(--paper-2); }
.section-head { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p { max-width: 620px; margin: 14px auto 0; color: var(--muted); font-weight: 500; }

/* ---------- Audience cards ---------- */
.two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 860px) { .two-cards { grid-template-columns: 1fr; } }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow);
}
.aud-tag {
  display: inline-block; font-weight: 800; font-size: 12px; letter-spacing: .09em;
  text-transform: uppercase; padding: 7px 13px; border-radius: 999px; margin-bottom: 16px;
}
.aud-tag-campaign { background: var(--honey); color: var(--ink-9); }
.aud-tag-city { background: var(--ink); color: #fff; }
.audience ul { margin: 16px 0 0; padding: 0 0 0 2px; list-style: none; }
.audience li { padding: 7px 0 7px 30px; position: relative; font-weight: 500; }
.audience li::before {
  content: '✓'; position: absolute; left: 2px; top: 7px; width: 21px; height: 21px;
  background: var(--paper-2); color: var(--honey-d); border-radius: 7px;
  font-size: 13px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center;
}
.aud-note {
  margin-top: 18px; padding: 14px 16px; background: var(--paper); border-radius: 12px;
  font-size: 15px; font-weight: 500; border: 1px dashed var(--line);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { margin: 0; position: relative; }
.step img {
  border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 390 / 620; object-fit: cover; object-position: top;
}
.step-num {
  position: absolute; top: -12px; left: -10px; z-index: 2; width: 40px; height: 40px;
  background: var(--honey); color: var(--ink-9); border-radius: 50%;
  font-family: var(--font-display); font-weight: 900; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(22,50,31,.2);
}
.step figcaption { padding: 14px 4px 0; font-size: 15px; color: var(--muted); }
.step figcaption b { color: var(--ink); font-size: 16px; }

.dashboard-feature {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 34px; align-items: center; margin-top: clamp(40px, 6vw, 64px);
}
@media (max-width: 900px) { .dashboard-feature { grid-template-columns: 1fr; } }
.dash-copy ul { margin: 18px 0 0; padding: 0; list-style: none; }
.dash-copy li { padding: 7px 0 7px 30px; position: relative; font-weight: 500; }
.dash-copy li::before {
  content: '✓'; position: absolute; left: 2px; top: 7px; width: 21px; height: 21px;
  background: var(--white); color: var(--honey-d); border-radius: 7px;
  font-size: 13px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center;
}
.dash-shot { margin: 0; }
.dash-shot img { border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(22,50,31,.18); }

/* ---------- Demo panel ---------- */
.demo-panel {
  background: var(--ink-9); color: #fff; border-radius: 24px;
  padding: clamp(28px, 4.5vw, 52px); display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 30px; align-items: center;
}
@media (max-width: 860px) { .demo-panel { grid-template-columns: 1fr; } }
.demo-panel h2 { color: #fff; margin-bottom: 12px; }
.demo-panel p { color: rgba(255,255,255,.82); font-weight: 500; }
.demo-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.demo-actions .btn { font-size: 19px; padding: 18px 34px; }
.demo-note { font-size: 13px; color: rgba(255,255,255,.55); }

/* ---------- Features grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }
.feat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.feat-ico { font-size: 26px; display: block; margin-bottom: 10px; }
.feat b { display: block; margin-bottom: 6px; font-size: 17px; }
.feat p { font-size: 15px; color: var(--muted); font-weight: 500; }

/* ---------- Timeline ---------- */
.timeline { margin-top: clamp(36px, 5vw, 56px); text-align: center; }
.timeline h3 { margin-bottom: 26px; }
.timeline ol {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  counter-reset: tl; text-align: left;
}
@media (max-width: 900px) { .timeline ol { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .timeline ol { grid-template-columns: 1fr; } }
.timeline li {
  counter-increment: tl; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 20px 18px; position: relative;
}
.timeline li::before {
  content: counter(tl); display: inline-flex; width: 34px; height: 34px;
  align-items: center; justify-content: center; border-radius: 50%;
  background: var(--ink); color: #fff; font-family: var(--font-display);
  font-weight: 900; margin-bottom: 12px;
}
.timeline li b { display: block; font-size: 16px; }
.timeline li span { font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 22px; align-items: start; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  background: var(--ink-9); color: #fff; border-radius: 24px;
  padding: clamp(26px, 3.5vw, 40px); box-shadow: 0 24px 50px rgba(22,50,31,.25);
}
.price-name { font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--honey); }
.price-value { font-family: var(--font-display); font-weight: 900; font-size: clamp(42px, 6vw, 58px); margin-top: 6px; }
.price-sub { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 2px; }
.price-list { list-style: none; margin: 24px 0 26px; padding: 0; }
.price-list li { padding: 8px 0 8px 30px; position: relative; font-weight: 500; color: rgba(255,255,255,.9); }
.price-list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px; width: 21px; height: 21px;
  background: rgba(217,164,65,.18); color: var(--honey); border-radius: 7px;
  font-size: 13px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center;
}
.price-card .btn-solid { background: var(--honey); color: var(--ink-9); }
.price-side { display: flex; flex-direction: column; gap: 16px; }
.price-mini {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px;
}
.price-mini b { font-size: 15px; }
.price-mini-val { font-family: var(--font-display); font-weight: 900; font-size: 24px; margin: 4px 0 8px; }
.price-mini-val span { font-family: var(--font-sans); font-weight: 600; font-size: 13px; color: var(--muted); }
.price-mini p { font-size: 14.5px; color: var(--muted); font-weight: 500; }
.price-mini-note { background: var(--paper-2); border-style: dashed; }
.price-mini-note p { color: var(--ink); }

/* ---------- References ---------- */
.refs-2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; }
@media (max-width: 560px) { .refs-2 { grid-template-columns: 1fr; } }
.refs .ref {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.ref-place { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 18px; margin-bottom: 10px; }
.ref-place::before { content: '📍 '; }
.ref p { font-size: 15px; color: var(--muted); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-list details {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 10px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 17px 46px 17px 20px; font-weight: 700; font-size: 16.5px;
  list-style: none; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--honey-d);
  transition: transform .15s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 20px 18px; color: var(--muted); font-weight: 500; font-size: 15.5px; }

/* ---------- Form ---------- */
.section-form { background: var(--ink-9); color: #fff; }
.form-wrap {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 60px); align-items: start;
}
@media (max-width: 860px) { .form-wrap { grid-template-columns: 1fr; } }
.form-intro h2 { color: #fff; margin-bottom: 14px; }
.form-intro p { color: rgba(255,255,255,.8); font-weight: 500; }
.form-alt { margin-top: 18px; font-size: 15px; }
.form-alt a { color: var(--honey); font-weight: 700; }

#leadform { background: var(--white); color: var(--ink); border-radius: 20px; padding: clamp(20px, 3vw, 30px); }
#leadform label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 14px; }
#leadform small { font-weight: 500; color: var(--muted); }
#leadform input[type=text], #leadform input[type=email], #leadform input[type=tel], #leadform textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px;
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  border: 2px solid var(--line); border-radius: 11px; outline: none; background: var(--paper);
  transition: border-color .12s;
}
#leadform input:focus, #leadform textarea:focus { border-color: var(--honey); }
#leadform textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-role { border: none; margin: 2px 0 16px; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.form-role legend { font-weight: 700; font-size: 14px; margin-bottom: 8px; padding: 0; }
.radio { display: inline-flex !important; align-items: center; gap: 8px; margin: 0 !important; cursor: pointer; }
.radio input { accent-color: var(--ink); width: 18px; height: 18px; }
.radio span { font-weight: 600; font-size: 15px; background: var(--paper); border: 2px solid var(--line); padding: 9px 16px; border-radius: 999px; }
.radio input:checked + span { border-color: var(--ink); background: var(--ink); color: #fff; }
.radio input { position: absolute; opacity: 0; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; font-size: 13.5px !important; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--ink); width: 17px; height: 17px; flex-shrink: 0; }
.consent a { color: var(--honey-d); }
.form-status { margin-top: 12px; font-weight: 700; font-size: 15px; min-height: 22px; }
.form-status.ok { color: #1d7a43; }
.form-status.err { color: #b3261e; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-9); color: rgba(255,255,255,.75); border-top: 1px solid rgba(255,255,255,.12); padding: 40px clamp(18px, 4vw, 44px) 26px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 26px; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 19px; color: #fff; margin-bottom: 8px; }
.footer-brand span { color: var(--honey); }
.footer p { font-size: 14.5px; font-weight: 500; }
.footer-col { display: flex; flex-direction: column; gap: 7px; }
.footer-col b { color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14.5px; }
.footer-col a:hover { color: var(--honey); }
.footer-note { max-width: 1160px; margin: 26px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: rgba(255,255,255,.45); }
