/* vydymo.com.ua — мінімальний чистий стиль, системні шрифти, без фреймворків */

:root {
  --accent: #0f5c46;      /* темно-зелений акцент */
  --accent-dark: #0a4634;
  --ink: #1c2320;
  --ink-soft: #4a534e;
  --bg: #ffffff;
  --bg-soft: #f4f7f5;
  --border: #dfe6e2;
  --radius: 10px;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
}

a {
  color: var(--accent);
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

header.site-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

nav.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  margin-left: 18px;
}

nav.site-nav a:hover {
  color: var(--accent);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

h1 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 16px;
}

h2 {
  font-size: 24px;
  margin: 0 0 20px;
}

h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.hero p.lead {
  font-size: 19px;
  color: var(--ink);
  max-width: 640px;
}

.badge {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  padding: 13px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  margin-left: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

ul.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

ul.check-list li:last-child {
  border-bottom: none;
}

ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.report-example {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.report-example .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.stat {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px;
}

.stat .num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.stat .label {
  font-size: 12px;
  color: var(--ink-soft);
}

.report-example ol {
  color: var(--ink-soft);
  padding-left: 20px;
}

.price-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}

.price-box .amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-dark);
}

.price-box .terms {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.order-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

details.faq-item:last-child {
  border-bottom: none;
}

details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

details.faq-item summary::-webkit-details-marker {
  color: var(--accent);
}

details.faq-item p {
  margin-top: 10px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contacts-grid dt {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
}

.contacts-grid dd {
  margin: 2px 0 0;
  font-weight: 600;
}

footer.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 48px;
  font-size: 14px;
  color: var(--ink-soft);
}

footer.site-footer a {
  color: var(--ink-soft);
}

.offer-doc h1 {
  font-size: 26px;
}

.offer-doc h2 {
  font-size: 19px;
  margin-top: 30px;
}

.offer-doc section {
  padding: 20px 0;
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 27px;
  }
  section {
    padding: 32px 0;
  }
  .grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .report-example .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-secondary {
    margin-left: 0;
    display: block;
    margin-top: 10px;
    text-align: center;
  }
  .btn {
    display: block;
    text-align: center;
  }
}
