:root {
  --bg: #f7f3eb;
  --bg-soft: #fffaf2;
  --ink: #171412;
  --muted: #6f655a;
  --line: rgba(32, 24, 16, 0.12);
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: #ffffff;
  --red: #ef3b38;
  --red-dark: #c52522;
  --green: #19b56b;
  --blue: #2e70ff;
  --violet: #7b4dff;
  --dark: #171412;
  --dark-soft: #231d18;
  --shadow: 0 24px 80px rgba(51, 34, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(239, 59, 56, 0.11), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(25, 181, 107, 0.13), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button,
summary {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.22;
  pointer-events: none;
}

.page-glow--one {
  left: -14rem;
  top: 22rem;
  background: var(--red);
}

.page-glow--two {
  right: -16rem;
  top: 44rem;
  background: var(--green);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 18px 60px rgba(54, 38, 20, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #ff8a34);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(239, 59, 56, 0.28);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text span {
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand__text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  padding: 8px 10px;
  transition: 0.2s ease;
}

.lang-btn.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(23, 20, 18, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff7a32);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 42px rgba(239, 59, 56, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(239, 59, 56, 0.32);
}

.btn--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: none;
}

.btn--ghost:hover {
  box-shadow: 0 16px 40px rgba(51, 34, 17, 0.1);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 52px;
  width: min(1180px, calc(100% - 32px));
  margin: 76px auto 0;
  padding: 42px 0 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(25, 181, 107, 0.14);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

h1 .accent {
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

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

.hero__lead,
.section-heading p,
.value-section p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 30px;
}

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.hero__stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 40px rgba(51, 34, 17, 0.08);
}

.hero__stats strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero__stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  position: absolute;
  inset: 10% -5% -8% 12%;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(239, 59, 56, 0.18), rgba(25, 181, 107, 0.2));
  content: "";
  filter: blur(12px);
  transform: rotate(-3deg);
}

.dashboard-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    var(--card-strong);
  box-shadow: var(--shadow);
}

.dashboard-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 6px 12px;
  border-bottom: 1px solid var(--line);
}

.dashboard-card__top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6058;
}

.window-dot:nth-child(2) {
  background: #ffc130;
}

.window-dot:nth-child(3) {
  background: #27cf66;
}

.order-row {
  display: grid;
  grid-template-columns: minmax(98px, auto) 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.order-row.is-hot {
  border-color: rgba(239, 59, 56, 0.24);
  background: linear-gradient(135deg, rgba(239, 59, 56, 0.08), rgba(255, 255, 255, 0.86));
}

.order-row__badge,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(239, 59, 56, 0.12);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 850;
}

.order-row__badge--blue {
  background: rgba(46, 112, 255, 0.12);
  color: var(--blue);
}

.order-row__badge--violet {
  background: rgba(123, 77, 255, 0.12);
  color: var(--violet);
}

.order-row strong {
  display: block;
  font-size: 16px;
}

.order-row small {
  color: var(--muted);
  font-weight: 650;
}

.status {
  background: rgba(23, 20, 18, 0.08);
  color: var(--muted);
}

.status--done {
  background: rgba(25, 181, 107, 0.12);
  color: #087b45;
}

.telegram-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1f8fff, #26c6ff);
  color: #fff;
  box-shadow: 0 18px 42px rgba(31, 143, 255, 0.24);
}

.telegram-card span {
  opacity: 0.75;
  font-size: 13px;
  font-weight: 800;
}

.telegram-card p {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
}

.trust-strip span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section--split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

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

.problem-grid,
.feature-grid,
.steps,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card,
.feature-card,
.step-card,
.price-card,
.faq-list details,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 18px 54px rgba(51, 34, 17, 0.08);
  backdrop-filter: blur(16px);
}

.mini-card {
  padding: 24px;
}

.mini-card__icon,
.feature-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(239, 59, 56, 0.11);
  font-size: 22px;
}

.mini-card p,
.feature-card p,
.step-card p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.feature-card {
  min-height: 250px;
  padding: 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(51, 34, 17, 0.12);
}

.feature-card--accent {
  background: linear-gradient(145deg, rgba(239, 59, 56, 0.95), rgba(255, 122, 50, 0.95));
  color: #fff;
}

.feature-card--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card--accent .feature-card__icon {
  background: rgba(255, 255, 255, 0.18);
}

.section--dark {
  width: min(1220px, calc(100% - 24px));
  margin-top: 34px;
  padding: 76px 24px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(239, 59, 56, 0.28), transparent 24rem),
    radial-gradient(circle at 15% 85%, rgba(25, 181, 107, 0.2), transparent 24rem),
    var(--dark);
  color: #fff;
}

.section--dark .section-kicker {
  color: #ffb3a2;
}

.section--dark .section-heading p,
.section--dark .step-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

.step-card {
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #ffb3a2;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.examples-section {
  padding-bottom: 56px;
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.message-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 5%, rgba(46, 112, 255, 0.11), transparent 18rem),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(51, 34, 17, 0.08);
  backdrop-filter: blur(16px);
}

.message-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.message-card__head span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(46, 112, 255, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.message-card__head strong {
  font-size: 16px;
  letter-spacing: -0.03em;
  text-align: right;
}

.chat-bubble {
  position: relative;
  min-height: 360px;
  padding: 20px 20px 34px;
  border-radius: 24px 24px 24px 8px;
  background: #e9eef7;
  color: #3b414b;
  box-shadow: inset 0 0 0 1px rgba(40, 50, 70, 0.05);
}

.chat-bubble p {
  margin: 0;
  font-size: 15px;
  line-height: 1.36;
  white-space: normal;
}

.chat-time {
  position: absolute;
  right: 16px;
  bottom: 10px;
  color: #8b93a1;
  font-size: 12px;
  font-weight: 700;
}

.value-section {
  align-items: center;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list div {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.value-list strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.value-list span {
  color: var(--muted);
}

.pricing {
  padding-top: 44px;
}

.pricing-highlight {
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin: 26px auto 18px;
  padding: 22px 24px;
  border: 1px solid rgba(239, 59, 56, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.42), transparent 12rem),
    linear-gradient(135deg, rgba(239, 59, 56, 0.95), rgba(255, 122, 50, 0.95));
  color: #fff;
  box-shadow: 0 26px 70px rgba(239, 59, 56, 0.26);
}

.pricing-highlight span {
  justify-self: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff6d7;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-highlight strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.price-card--featured {
  border-color: rgba(239, 59, 56, 0.28);
  background:
    radial-gradient(circle at top right, rgba(239, 59, 56, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.86);
  transform: translateY(-12px);
}

.price-card__head span,
.save-badge,
.trial-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(239, 59, 56, 0.1);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
}

.save-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--green);
  color: #fff;
}

.trial-badge {
  background: rgba(25, 181, 107, 0.12);
  color: #087b45;
}

.price {
  display: grid;
  margin: 24px 0;
}

.price strong {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.price span,
.saving {
  color: var(--muted);
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.price-card li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.faq-list p {
  padding-top: 12px;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  padding: 42px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(23, 20, 18, 0.92), rgba(38, 29, 23, 0.95)),
    var(--dark);
  color: #fff;
  overflow: hidden;
}

.cta-section .section-kicker {
  color: #ffb3a2;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-phone {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 46px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .section--split,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: calc(100% - 18px);
    margin-top: 8px;
    padding: 12px;
  }

  .brand__text small,
  .nav,
  .header-actions .btn {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 42px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: 44px;
  }

  .hero__stats,
  .problem-grid,
  .feature-grid,
  .steps,
  .message-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .chat-bubble {
    min-height: auto;
  }

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

  .section {
    padding: 62px 0;
  }

  .section--dark,
  .cta-section {
    border-radius: 28px;
  }

  .price-card--featured {
    transform: none;
  }

  .cta-section {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
  }
}
