/* ===============================
   Редирект-Центр — Landing Page
   =============================== */

:root {
  --bg: #f4f8f5;
  --bg-soft: #ecfdf3;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #102016;
  --muted: #5d6b63;
  --line: rgba(16, 32, 22, 0.12);
  --green: #16a34a;
  --green-dark: #0f7a39;
  --green-soft: #dff8e7;
  --lime: #b7f7c8;
  --yellow: #fef3c7;
  --danger-soft: #fff1f2;
  --shadow: 0 24px 70px rgba(16, 32, 22, 0.12);
  --shadow-soft: 0 12px 35px rgba(16, 32, 22, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Inter Regular", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(22, 163, 74, 0.14), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(183, 247, 200, 0.45), transparent 28%),
    var(--bg);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(244, 248, 245, 0.82);
  border-bottom: 1px solid rgba(16, 32, 22, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, #19b957, #087a37);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.28);
  font-weight: 900;
}

.brand-text {
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #26362c;
  font-size: 15px;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green-dark);
}

.nav .nav-cta {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.24);
}

.nav .nav-cta:hover {
  color: #ffffff;
  background: var(--green-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 99px;
  transition: 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(22, 163, 74, 0.18), transparent 32%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.14);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.13);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 24px 0 22px;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 760px;
  color: #5D946F;
}

h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #16a34a, #0f7a39);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(22, 163, 74, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 46px rgba(22, 163, 74, 0.34);
}

.btn-secondary {
  background: rgba(255,255,255,0.74);
  border-color: rgba(16, 32, 22, 0.12);
  color: #18251d;
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row div {
  min-width: 130px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(16, 32, 22, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.trust-row strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.trust-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.browser-card {
  overflow: hidden;
  border-radius: 30px;
  background: #0d1b12;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.14);
  transform: rotate(1.5deg);
}

.browser-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.browser-top p {
  margin: 0 0 0 10px;
  font-size: 13px;
}

.dashboard-preview {
  min-height: 440px;
  display: grid;
  grid-template-columns: 72px 1fr;
  background:
    radial-gradient(circle at 85% 0%, rgba(22, 163, 74, 0.36), transparent 32%),
    linear-gradient(145deg, #102016, #0b140f);
}

.preview-sidebar {
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.mini-logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.preview-sidebar span {
  width: 38px;
  height: 11px;
  border-radius: 99px;
  background: rgba(255,255,255,0.16);
}

.preview-sidebar .side-active {
  background: var(--lime);
}

.preview-main {
  padding: 28px;
  color: #ffffff;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.preview-header small {
  display: block;
  color: rgba(255,255,255,0.62);
  margin-bottom: 5px;
}

.preview-header strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.preview-header button {
  border: 0;
  border-radius: 999px;
  color: #0c2a16;
  background: var(--lime);
  padding: 9px 14px;
  font-weight: 850;
}

.link-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
}

.link-card span {
  color: var(--lime);
  font-weight: 800;
}

.link-card p {
  color: rgba(255,255,255,0.6);
  margin: 7px 0 0;
  word-break: break-all;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stats-grid div {
  padding: 16px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
}

.stats-grid strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.stats-grid span {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.chart {
  height: 122px;
  display: flex;
  align-items: end;
  gap: 11px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
}

.chart i {
  flex: 1;
  border-radius: 99px 99px 8px 8px;
  background: linear-gradient(180deg, var(--lime), var(--green));
}

.floating-badge {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  color: #0c2515;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  font-weight: 850;
}

.badge-one {
  left: -22px;
  top: 18%;
}

.badge-two {
  right: -12px;
  bottom: 16%;
  background: var(--yellow);
}

.section-head {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 0;
}

.section-head .section-kicker {
  margin-bottom: 17px;
}

.pain {
  background: rgba(255,255,255,0.48);
}

.problem-grid,
.benefits-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-card,
.benefit-card,
.step-card,
.compare-card,
.faq-item {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16, 32, 22, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.problem-card {
  padding: 28px;
}

.problem-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--danger-soft);
  color: #be123c;
  font-weight: 900;
}

.problem-card p,
.benefit-card p,
.feature-row p,
.step-card p,
.compare-card li,
.faq-item p,
.install-copy p,
.demo-copy p,
.independence-card p,
.bonus-card p,
.buy-card p {
  color: var(--muted);
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.demo-copy {
  max-width: 520px;
}

.demo-copy .section-kicker,
.install-copy .section-kicker,
.independence-card .section-kicker,
.buy-content .section-kicker {
  margin-bottom: 17px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  margin: 12px 0;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 14px;
}

.redirect-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.flow-item {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(16, 32, 22, 0.1);
  box-shadow: var(--shadow-soft);
}

.flow-item small {
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.flow-item strong {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.flow-clean {
  background: var(--green-soft);
}

.flow-core {
  background: #0f1f15;
  color: #fff;
}

.flow-core small {
  color: rgba(255,255,255,0.6);
}

.flow-final {
  background: var(--yellow);
}

.flow-arrow {
  font-size: 30px;
  color: var(--green);
  font-weight: 900;
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--green-soft);
  font-size: 25px;
}

.features {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0));
}

.feature-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(16, 32, 22, 0.09);
  box-shadow: var(--shadow-soft);
}

.feature-num {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-weight: 900;
}

.feature-row p {
  margin-bottom: 0;
}

.independence-card,
.bonus-card,
.buy-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: var(--shadow);
}

.independence-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(183, 247, 200, 0.22), transparent 30%),
    linear-gradient(135deg, #0b170f, #123b20);
}

.independence-card p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

.independence-points {
  display: grid;
  gap: 13px;
}

.independence-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
}

.independence-points strong,
.independence-points span {
  display: block;
}

.independence-points span {
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.install-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

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

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card p {
  margin-bottom: 0;
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16, 32, 22, 0.09);
  box-shadow: var(--shadow-soft);
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.35s ease, background 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.audience-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent, var(--green)) 6%, transparent), transparent 60%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.audience-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(16, 32, 22, 0.14);
  border-color: var(--accent, var(--green));
  background: rgba(255,255,255,0.92);
}

.audience-item:hover::before {
  opacity: 1;
}

.audience-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 22px;
  background: color-mix(in srgb, var(--accent, var(--green)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent, var(--green)) 20%, transparent);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.audience-item:hover .audience-icon {
  transform: scale(1.12) rotate(-4deg);
  background: color-mix(in srgb, var(--accent, var(--green)) 22%, transparent);
  border-color: color-mix(in srgb, var(--accent, var(--green)) 40%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent, var(--green)) 25%, transparent);
}

.comparison {
  background: rgba(255,255,255,0.52);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-card {
  padding: 32px;
}

.compare-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.compare-before li::before {
  content: "×";
  color: #e11d48;
}

.compare-after {
  background: linear-gradient(135deg, #ffffff, var(--green-soft));
}

.compare-after li::before {
  content: "✓";
  color: var(--green);
}

.bonus-card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 36px;
  background: #fff;
}

.bonus-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--yellow);
  font-size: 34px;
}

.bonus-card p {
  margin-bottom: 0;
  max-width: 830px;
}

/* ===============================
   Блок автора
   =============================== */

.author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 32, 22, 0.1);
}

.author-photo-wrap {
  flex-shrink: 0;
}

.author-photo {
  width: 200px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(16, 32, 22, 0.12);
}

.author-content .section-kicker {
  margin-bottom: 17px;
}

.author-content h2 {
  font-size: clamp(22px, 2.6vw, 30px);
}

.author-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.author-content p:last-child {
  margin-bottom: 0;
}

.buy-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  padding: 46px;
  background:
    radial-gradient(circle at 10% 10%, rgba(183, 247, 200, 0.4), transparent 28%),
    #ffffff;
}

.buy-content p {
  font-size: 18px;
}

.buy-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.buy-includes div {
  padding: 13px 15px;
  border-radius: 15px;
  background: var(--surface-2);
  color: #203229;
  font-weight: 750;
}

.price-box {
  padding: 32px 26px;
  border-radius: 28px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.price-old {
  font-size: 22px;
  font-weight: 600;
  color: #a0aea6;
  text-decoration: line-through;
  text-decoration-color: #c5d1cb;
}

.price-current {
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--green-dark);
}

.price-note {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.price-box .btn {
  font-weight: 600;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item[open] {
  animation: faq-open 0.35s ease forwards;
}

@keyframes faq-open {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 850;
  font-size: 18px;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--green-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 25px;
  line-height: 1;
  color: var(--green);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-item.is-open p {
  max-height: 600px;
  opacity: 1;
}

.site-footer {
  padding: 44px 0 38px;
  background: #0b170f;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-center {
  text-align: center;
  align-items: center;
}

.footer-right {
  align-items: flex-end;
  text-align: right;
}

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin: 0;
  max-width: 260px;
}

.footer-copy {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin: 0;
}

.footer-ogrn {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 4px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--lime);
}

.to-top {
  color: var(--lime);
  font-weight: 800;
  font-size: 14px;
}

/* ===============================
   Cookie-бар
   =============================== */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0b170f;
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

.cookie-text a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-text a:hover {
  color: #ffffff;
}

.cookie-btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 12px 24px;
  font-size: 14px;
}

/* ===============================
   Анимации появления
   =============================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   Адаптив
   =============================== */

@media (max-width: 1020px) {
  .section {
    padding: 74px 0;
  }

  .hero-grid,
  .demo-grid,
  .install-grid,
  .independence-card,
  .buy-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .demo-copy,
  .install-copy {
    max-width: none;
    text-align: center;
  }

  .redirect-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .benefits-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-box {
    max-width: 460px;
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 32, 22, 0.1);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 16px;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .browser-card {
    transform: none;
  }

  .floating-badge {
    display: none;
  }

  .compare-grid,
  .benefits-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .buy-includes {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-col {
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-desc {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .nav {
    top: 70px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero {
    padding-top: 54px;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 18px;
  }

  .preview-header {
    display: grid;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .independence-card,
  .bonus-card,
  .buy-card {
    padding: 24px;
    border-radius: 26px;
  }

  .bonus-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 32px 24px;
  }

  .author-photo {
    width: 160px;
    height: 160px;
  }

  .price {
    font-size: 36px;
  }

  .brand-text {
    font-size: 16px;
  }
}
