*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f0;
  --bg-dark: #12151a;
  --surface: #ffffff;
  --text: #1a1d23;
  --text-muted: #5c6370;
  --accent: #e85d2a;
  --accent-hover: #d04e1f;
  --green: #1a9b5c;
  --green-bg: #e8f7ef;
  --border: #e4e0d8;
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Golos Text', system-ui, sans-serif;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(18, 21, 26, 0.06);
  --shadow-lg: 0 20px 60px rgba(18, 21, 26, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

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

/* Wordmark */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

.wordmark--sm {
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 93, 42, 0.3);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--white {
  background: #fff;
  color: var(--text);
}

.btn--white:hover {
  background: #f0ede8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--full {
  width: 100%;
}

.btn--glow {
  box-shadow: 0 0 40px rgba(232, 93, 42, 0.4);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  padding: 72px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pill--hot {
  background: #fff0e8;
  color: var(--accent);
  border: 1px solid #ffd4be;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 4px;
}

.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg);
}

.stat--accent {
  background: var(--green-bg);
}

.stat__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.stat--accent .stat__icon svg {
  color: var(--green);
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Banner */
.banner {
  padding: 0 0 64px;
}

.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, #1a9b5c 0%, #14804a 100%);
  border-radius: var(--radius-lg);
  color: #fff;
}

.banner__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 8px;
}

.banner__text p {
  font-size: 1.05rem;
  line-height: 1.5;
}

.banner__text strong {
  font-weight: 700;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: #e8eaed;
}

.section--price {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section__head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section--dark .label {
  color: #6ee7a0;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.card--highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff8f4 0%, var(--surface) 100%);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 16px;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.split__content p {
  color: #9aa3b0;
  margin-bottom: 16px;
}

.split__content .btn {
  margin-top: 12px;
}

.split__visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.signal {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.signal__bar {
  width: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.signal__bar:nth-child(1) { height: 20px; }
.signal__bar:nth-child(2) { height: 32px; }
.signal__bar:nth-child(3) { height: 44px; }
.signal__bar--active {
  height: 56px;
  background: #6ee7a0;
}

.signal span {
  margin-left: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: #6ee7a0;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.checklist svg {
  width: 20px;
  height: 20px;
  color: #6ee7a0;
  flex-shrink: 0;
}

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare__col {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare__col--bad {
  background: #faf9f7;
}

.compare__col--good {
  background: var(--green-bg);
  border-color: #b8e6cc;
}

.compare__col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.compare__col--bad h3 {
  color: var(--text-muted);
}

.compare__col--good h3 {
  color: var(--green);
}

.compare__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare__col li {
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.compare__col--bad li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #c44;
  font-weight: 700;
}

.compare__col--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Price */
.price-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.price-block__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.price-block__info p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.price-card__amount {
  margin-bottom: 28px;
}

.price-card__from {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.price-card__cur {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card__list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card__list li {
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
}

.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-card__trial {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card__trial strong {
  color: var(--accent);
}

/* Final CTA */
.cta-final {
  padding: 100px 0;
  text-align: center;
}

.cta-final__inner {
  max-width: 600px;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-final p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid,
  .split,
  .compare,
  .price-block,
  .cards {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }

  .banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding-top: 48px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .btn--lg {
    width: 100%;
  }

  .price-card__num {
    font-size: 3rem;
  }
}
