/* ДОСТАВЬ-КА — светлая тема, фирменный оранжевый из логотипа */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-warm: #fff6ef;
  --card: #ffffff;
  --line: #e6e8ee;
  --text: #14161c;
  --muted: #5f6673;
  --brand: #ff6b00;
  --brand-deep: #e85f00;
  --brand-soft: #fff1e6;
  --ink: #1a1c21;
  --radius: 20px;
  --shadow: 0 2px 4px rgba(20, 22, 28, 0.04), 0 12px 28px rgba(20, 22, 28, 0.06);
  --shadow-lg: 0 8px 20px rgba(20, 22, 28, 0.08), 0 24px 48px rgba(20, 22, 28, 0.10);
  --maxw: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 74px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; }
.logo:hover { text-decoration: none; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--text); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: 0; color: var(--text);
  font-size: 26px; cursor: pointer; padding: 4px 8px;
}

@media (max-width: 900px) {
  .site-header .wrap { height: 64px; }
  .logo img { height: 38px; }
  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 20px 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav .btn { margin-top: 14px; text-align: center; border-bottom: 0; }
  .nav-toggle { display: block; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  background: var(--brand);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 107, 0, 0.34);
}
.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.btn-ghost:hover { background: var(--bg-soft); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 34px; font-size: 18px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 84px;
  background: linear-gradient(170deg, var(--bg-warm) 0%, #ffffff 62%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid #ffd7b8;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.eyebrow b { color: #17944a; font-weight: 600; }
h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 22px;
}
h1 em { font-style: normal; color: var(--brand); }
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 14px; color: var(--muted); margin-top: 18px; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3.2;
}
.photo-badge {
  position: absolute;
  left: -22px;
  bottom: 30px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 260px;
}
.photo-badge .pb-icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  font-size: 22px;
}
.photo-badge b { display: block; font-size: 16px; line-height: 1.25; }
.photo-badge span { font-size: 13px; color: var(--muted); }

@media (max-width: 940px) {
  .hero { padding: 44px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-photo img { aspect-ratio: 16 / 10; }
  .photo-badge { left: 12px; bottom: -18px; padding: 13px 16px; max-width: 230px; }
}

/* ---------- numbers strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 66px;
}
.strip-item {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.strip-num {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand);
  line-height: 1.1;
}
.strip-label { font-size: 15px; color: var(--muted); margin-top: 6px; }
@media (max-width: 780px) { .strip { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 46px; } }

/* ---------- sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 16px;
}
h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 10px; }
.lead { font-size: 19px; color: var(--muted); margin: 0; }
.alt { background: var(--bg-soft); }
.warm { background: var(--bg-warm); }

/* ---------- cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card p { color: var(--muted); margin: 0; }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--brand-soft);
  font-size: 26px;
  margin-bottom: 16px;
}

/* карточки заработка с фото */
.money-card { padding: 0; overflow: hidden; }
.money-card img { width: 100%; height: 210px; object-fit: cover; }
.money-body { padding: 24px 26px 28px; }
.money-price {
  font-size: 25px; font-weight: 800; color: var(--brand);
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.money-body h3 { margin-bottom: 8px; }

/* ---------- калькулятор заработка ---------- */
.earn-calc { max-width: 720px; margin: 0 auto; padding: 36px 34px; }
.earn-calc-controls { display: grid; gap: 26px; margin-bottom: 30px; }
.earn-calc-group { display: grid; gap: 10px; }
.earn-calc-label { font-size: 14px; font-weight: 600; color: var(--muted); }
.earn-calc-label b { color: var(--text); font-weight: 700; }
.earn-calc-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.earn-tab {
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
}
.earn-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.28);
}
.earn-calc-slider {
  width: 100%;
  accent-color: var(--brand);
  height: 6px;
  cursor: pointer;
}
.earn-calc-output {
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.earn-calc-result {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-bottom: 8px;
}
.earn-calc-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 22px;
}
@media (max-width: 560px) {
  .earn-calc { padding: 26px 20px; }
  .earn-calc-tabs { flex-direction: column; }
  .earn-tab { width: 100%; }
}

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  position: relative;
  padding: 26px 28px 26px 86px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 26px;
  top: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(255, 107, 0, 0.3);
}
.step p { color: var(--muted); margin: 0; }
@media (max-width: 560px) {
  .step { padding: 76px 22px 24px; }
  .step::before { top: 22px; }
}

/* ---------- transport ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tile {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile-emoji { font-size: 36px; margin-bottom: 10px; }
.tile b { display: block; margin-bottom: 6px; font-size: 17px; }
.tile span { color: var(--muted); font-size: 15px; }
@media (max-width: 780px) { .tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---------- «как это выглядит» ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 3 / 2; }
.split-list { list-style: none; padding: 0; margin: 26px 0 0; }
.split-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 15px;
  color: var(--muted);
}
.split-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}
.split-list b { color: var(--text); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: -1; }
}

/* ---------- живой чат ---------- */
.chat-proof {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}
.chat-proof h2 { margin-bottom: 14px; }
.chat-proof p { color: var(--muted); }
.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
.proof-shot { margin: 0; }
.proof-shot img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.proof-shot figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .proof-gallery { grid-template-columns: repeat(2, 1fr); }
  .proof-shot:first-child { grid-column: 1 / -1; }
}

.chat-mock { display: grid; gap: 12px; }
.bubble {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--muted);
}
.bubble.empty {
  border-style: dashed;
  text-align: center;
  color: #98a0ad;
}
@media (max-width: 900px) {
  .chat-proof { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
}

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
details.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 24px;
  box-shadow: var(--shadow);
}
details.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 36px 22px 0;
  font-weight: 600;
  font-size: 17px;
  position: relative;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--brand);
  font-weight: 400;
  line-height: 1;
}
details.qa[open] summary::after { content: "−"; }
details.qa .qa-body { padding: 0 0 22px; color: var(--muted); }
details.qa .qa-body p:first-child { margin-top: 0; }

/* ---------- cta band ---------- */
.cta-band {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff5c00 100%);
  border-radius: 28px;
  padding: 58px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.28);
}
.cta-band h2 { margin-bottom: 14px; color: #fff; }
.cta-band .lead { margin: 0 auto 30px; max-width: 52ch; color: rgba(255, 255, 255, 0.92); }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn { background: #fff; color: var(--brand-deep); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14); }
.cta-band .btn:hover { background: #fff7f1; }
.cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.24); }
@media (max-width: 620px) { .cta-band { padding: 40px 22px; } }

/* ---------- article ---------- */
.article { padding: 48px 0 84px; }
.article-inner { max-width: 760px; margin: 0 auto; }
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.breadcrumbs a { color: var(--muted); }
.article h1 { font-size: clamp(29px, 4.2vw, 44px); margin-bottom: 18px; }
.article-meta { color: var(--muted); font-size: 15px; margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-body h2 { font-size: clamp(23px, 2.8vw, 30px); margin: 44px 0 14px; }
.article-body h3 { font-size: 20px; margin: 30px 0 10px; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 22px; }
.article-body li { margin-bottom: 9px; }
.article-body strong { color: var(--text); }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 16px; }
.article-body th, .article-body td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body th { background: var(--bg-soft); font-weight: 700; }
.table-scroll { overflow-x: auto; margin-bottom: 24px; }
.callout {
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  margin: 0 0 24px;
  color: #6b4a30;
}
.callout strong { color: #4a3120; }
.inline-cta {
  background: var(--bg-warm);
  border: 1px solid #ffd7b8;
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 40px 0;
  text-align: center;
}
.inline-cta p { color: var(--muted); margin: 0 0 18px; }

/* ---------- article list ---------- */
.post-list { display: grid; gap: 16px; }
.post-item {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.post-item:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-item b { display: block; font-size: 20px; margin-bottom: 8px; letter-spacing: -0.015em; }
.post-item span { color: var(--muted); font-size: 16px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 40px;
  background: var(--ink);
  color: #a8afbc;
  font-size: 15px;
}
.site-footer .logo img { height: 44px; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin: 0 0 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #a8afbc; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 22px; font-size: 14px; color: #7d8492; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- scroll reveal ----------
   Без JS блоки видны сразу: класс .js ставит сам main.js. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
