:root {
  --bg: #FFF8F0;
  --bg-alt: #FDEEDD;
  --mint: #E7F5EF;
  --mint-dark: #3FA07E;
  --accent: #FF8A5C;
  --accent-dark: #F06B36;
  --text: #3A2E28;
  --text-light: #6E5F58;
  --card-bg: #FFFFFF;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(58, 46, 40, 0.08);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 56px 0; }

.bg-cream { background: var(--bg); }
.bg-peach { background: var(--bg-alt); }
.bg-mint { background: var(--mint); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2, h3 { font-weight: 800; margin: 0 0 12px; }
h1 { font-size: 2.1rem; line-height: 1.15; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 12px; color: var(--text-light); }

.lead { font-size: 1.05rem; color: var(--text-light); max-width: 640px; }
.section-lead { font-size: 1rem; color: var(--text-light); max-width: 640px; margin-top: -6px; }

.accent-text { color: var(--accent-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 46, 40, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.02rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon { width: 30px; height: 30px; }
.main-nav { display: flex; gap: 22px; }
.main-nav a {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-light);
}
.main-nav a:hover { color: var(--mint-dark); }
.header-cta { padding: 10px 18px; font-size: 0.88rem; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: scale(0.98); }

.btn-tg { background: #2AABEE; color: #fff; }
.btn-tg:hover { background: #1E97D4; }

.btn-max { background: #6C4BFF; color: #fff; }
.btn-max:hover { background: #5A3AE0; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid rgba(58,46,40,0.12);
}
.btn-ghost:hover { border-color: var(--mint-dark); color: var(--mint-dark); }

.btn-block { width: 100%; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 36px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero::before { width: 240px; height: 240px; background: var(--accent); opacity: 0.10; top: -70px; left: -70px; }
.hero::after { width: 280px; height: 280px; background: var(--mint-dark); opacity: 0.10; bottom: -110px; right: -90px; }
.hero-inner { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  text-align: left;
}
.hero-copy .hero-cta { justify-content: flex-start; }
.hero-copy .avatar-row { justify-content: flex-start; }

.hero-visual { display: flex; justify-content: center; }
.hero-illustration {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-cta .btn { min-width: 200px; }

.disclaimer {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 560px;
}

.avatar-row { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; flex-wrap: wrap; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border: 2px solid var(--bg-alt);
  margin-left: -10px;
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-row .avatar-text { font-size: 0.86rem; font-weight: 700; color: var(--text-light); margin-left: 6px; }

/* ---------- Channel promo ---------- */
.channel-promo {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  border: 1px solid rgba(63, 160, 126, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  margin: 0 0 18px;
}
.channel-promo-badge {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 8px;
}
.channel-promo-title { font-size: 1.05rem; margin: 0 0 6px; }
.channel-promo-sub { font-size: 0.88rem; margin: 0 0 14px; max-width: 460px; }
.channel-promo-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.channel-promo-buttons .btn { padding: 10px 16px; font-size: 0.86rem; }
.channel-promo-note { font-size: 0.76rem; margin: 8px 0 0; color: var(--text-light); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 32px 0 26px;
  position: relative;
  z-index: 1;
}
.pain-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pain-card:hover { border-color: var(--mint-dark); transform: translateY(-2px); }
.pain-card .emoji { font-size: 1.6rem; display: block; margin-bottom: 8px; }

.stats-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.stat-badge {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
}
.stat-badge .stat-emoji { font-size: 1.15rem; }

/* ---------- Wave dividers ---------- */
.wave { display: block; width: 100%; height: 46px; line-height: 0; background: var(--wave-bg); }
.wave svg { width: 100%; height: 100%; display: block; }
.wave svg path { fill: var(--wave-fill); }

/* ---------- Helps grid ---------- */
.helps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.help-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  scroll-margin-top: 76px;
}
.help-card h3 { margin-bottom: 6px; }
.help-card p { font-size: 0.92rem; margin-bottom: 14px; }
.help-card .btn-row .btn { flex: 1; padding: 10px 12px; font-size: 0.88rem; }

/* ---------- Free block ---------- */
.free-block {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 32px;
}
.free-copy { flex: 1.2; }
.free-visual { flex: 0.8; display: flex; justify-content: center; }
.free-visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.free-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.free-list li { position: relative; padding-left: 22px; color: var(--text); font-weight: 600; }
.free-list li::before { content: "✓"; position: absolute; left: 0; color: var(--mint-dark); font-weight: 900; }

/* ---------- Examples ---------- */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.example-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.example-card ul { margin: 8px 0 0; padding-left: 20px; color: var(--text-light); font-size: 0.92rem; }
.example-card li { margin-bottom: 4px; }
.example-card-photo { display: flex; align-items: center; gap: 18px; }
.example-card-photo img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.example-card-photo h3 { margin-bottom: 4px; }

/* ---------- Scenarios ---------- */
.scenario-list { display: flex; flex-direction: column; gap: 10px; }
.scenario-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--card-bg);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}
.scenario-item span.arrow { color: var(--mint-dark); font-size: 1.2rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial-quote { font-size: 0.9rem; color: var(--text); margin-bottom: 16px; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 800; font-size: 0.9rem; }
.testimonial-meta { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.rating-badge { text-align: center; margin-top: 24px; font-weight: 800; color: var(--mint-dark); font-size: 1.05rem; }

/* ---------- Tariffs ---------- */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tariff-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}
.tariff-card.featured { border-color: var(--accent); }
.tariff-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.tariff-card .price { font-size: 1.4rem; font-weight: 900; color: var(--mint-dark); margin: 6px 0 8px; }
.tariff-card .price-period { font-size: 0.85rem; font-weight: 700; color: var(--text-light); }
.tariff-card p { font-size: 0.88rem; margin-bottom: 0; }
.tariff-features { list-style: none; padding: 0; margin: 12px 0 0; }
.tariff-features li { position: relative; padding-left: 20px; margin-bottom: 6px; font-size: 0.85rem; color: var(--text); font-weight: 600; }
.tariff-features li::before { content: "✓"; position: absolute; left: 0; color: var(--mint-dark); font-weight: 900; }
.tariff-note { font-size: 0.82rem; color: var(--text-light); margin-top: 14px; }

/* ---------- Trust ---------- */
.trust-block {
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
}
.trust-layout { display: flex; align-items: center; gap: 28px; }
.trust-visual { flex: 0 0 260px; }
.trust-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.trust-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.trust-card .trust-icon { font-size: 1.4rem; display: block; margin-bottom: 8px; }
.trust-card h4 { margin: 0 0 4px; font-size: 0.95rem; font-weight: 800; }
.trust-card p { margin: 0; font-size: 0.82rem; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--mint-dark); font-weight: 900; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 20px 18px; color: var(--text-light); font-size: 0.94rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--mint) 100%);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.final-cta .btn-row { justify-content: center; }

footer {
  text-align: center;
  padding: 28px 0 40px;
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--bg);
}

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .helps-grid, .examples-grid, .tariff-grid, .testimonial-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .hero-cta, .hero-copy .avatar-row { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-illustration { max-width: 260px; }
  .main-nav { display: none; }
  .channel-promo-sub { max-width: none; }
  .channel-promo-buttons { justify-content: center; }
  .free-block { flex-direction: column; }
  .free-visual { order: -1; }
  .trust-layout { flex-direction: column; }
  .trust-visual { flex: 0 0 auto; max-width: 220px; }
}

@media (max-width: 620px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  section { padding: 40px 0; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .helps-grid, .examples-grid, .tariff-grid, .testimonial-grid, .trust-grid { grid-template-columns: 1fr; }
  .free-list { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .channel-promo { padding: 16px 18px; }
  .channel-promo-buttons { flex-direction: column; width: 100%; }
  .channel-promo-buttons .btn { width: 100%; }
  .stats-row { flex-direction: column; align-items: stretch; }
  .header-cta { padding: 8px 14px; font-size: 0.8rem; }
  .logo { font-size: 0.92rem; }
  .example-card-photo { flex-direction: column; text-align: center; }
  .example-card-photo img { width: 100%; height: 160px; }
}
