﻿:root {
  --ink: #151515;
  --muted: #5c6470;
  --line: #dde3ea;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --dark: #202326;
  --yellow: #f3c544;
  --green: #1f9d62;
  --violet: #6652d9;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.topbar { background: var(--dark); color: #fff; }
.topbar__inner, .nav, .section, .footer__inner { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar__inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; }
.topbar strong { color: var(--yellow); }
.header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 210px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand b { display: block; font-size: 19px; line-height: 1.05; }
.brand span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.menu { display: flex; align-items: center; gap: 18px; font-size: 14px; color: #2d333a; }
.menu a { text-decoration: none; }
.actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 12px 18px; border-radius: 8px;
  border: 1px solid transparent; font-weight: 700; text-decoration: none;
  white-space: nowrap;
}
.btn--wa { background: var(--green); color: #fff; }
.btn--viber { background: var(--violet); color: #fff; }
.btn--line { border-color: var(--line); background: #fff; color: var(--ink); }
.hero { background: #f0f2f4; border-bottom: 1px solid var(--line); }
.hero__grid { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.04fr .96fr; gap: 34px; align-items: center; min-height: 620px; padding: 38px 0; }
.hero h1 { margin: 0 0 18px; font-size: 54px; line-height: 1; letter-spacing: 0; }
.hero p { font-size: 20px; color: #343b44; margin: 0 0 24px; max-width: 700px; }
.hero__media { position: relative; min-height: 500px; background: #c8ced5; overflow: hidden; border-radius: 8px; }
.hero__media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.hero__badge { position: absolute; left: 18px; bottom: 18px; background: #fff; border-radius: 8px; padding: 14px 16px; max-width: 290px; box-shadow: 0 14px 40px rgba(0,0,0,.16); font-weight: 700; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0; }
.trust-item { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.trust-item b { display: block; font-size: 18px; }
.trust-item span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }
.section { padding: 58px 0; }
.section--soft { width: 100%; max-width: none; background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--soft > .section__inner { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section h2 { margin: 0 0 20px; font-size: 34px; line-height: 1.15; }
.section h3 { margin: 0 0 10px; font-size: 21px; }
.lead { color: var(--muted); max-width: 820px; margin: -8px 0 28px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.card p { margin: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px; position: relative; }
.step:before { counter-increment: step; content: counter(step); display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; background: var(--yellow); border-radius: 50%; font-weight: 800; margin-bottom: 14px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.price-card h3 { background: var(--dark); color: #fff; margin: 0; padding: 16px 18px; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { border-bottom: 1px solid var(--line); padding: 11px 12px; text-align: left; vertical-align: top; }
th { background: #f7f8fa; }
.content { width: min(900px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 22px; }
.content h1 { margin: 0 0 22px; font-size: 42px; line-height: 1.12; letter-spacing: 0; }
.content h2 { margin-top: 34px; font-size: 28px; line-height: 1.2; }
.content p { color: #2f363e; }
.content ul { padding-left: 22px; }
.inner-hero { background: var(--soft); border-bottom: 1px solid var(--line); }
.inner-hero__grid { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 54px 0; display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.inner-hero h1 { margin: 0 0 16px; font-size: 44px; line-height: 1.1; letter-spacing: 0; }
.inner-hero p { margin: 0 0 22px; color: #343b44; font-size: 19px; max-width: 720px; }
.inner-hero__panel { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.inner-hero__panel b { display: block; margin-bottom: 10px; font-size: 20px; }
.inner-hero__panel ul { margin: 0; padding-left: 20px; color: var(--muted); }
.page-cta { background: var(--dark); color: #fff; }
.page-cta .section { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.page-cta h2 { margin: 0 0 8px; }
.page-cta p { margin: 0; color: #d8dde3; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }
.footer { background: #111315; color: #d9dee5; padding: 38px 0; }
.footer__inner { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer a { color: #fff; }
@media (max-width: 980px) {
  .hero__grid, .price-grid, .cards, .steps { grid-template-columns: 1fr; }
  .inner-hero__grid { grid-template-columns: 1fr; padding: 34px 0; }
  .inner-hero h1 { font-size: 34px; }
  .hero__grid { min-height: 0; }
  .hero h1 { font-size: 40px; }
  .hero__media, .hero__media img { min-height: 330px; }
  .menu { display: none; }
  .page-cta .section, .footer__inner { flex-direction: column; }
}
@media (max-width: 640px) {
  .topbar__inner { align-items: flex-start; flex-direction: column; padding: 10px 0; gap: 4px; }
  .nav { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .btn { padding-left: 10px; padding-right: 10px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 18px; }
  .trust-row { grid-template-columns: 1fr; }
  .content h1 { font-size: 32px; }
}
