:root {
  --bg: #ebeff3;
  --bg-soft: #f6f8fb;
  --surface: #ffffff;
  --surface-muted: #f5f7fa;
  --text: #17212b;
  --muted: #667781;
  --line: #dbe3ea;
  --line-strong: #cfd9e2;
  --telegram-blue: #54a9eb;
  --telegram-blue-soft: #e8f3fc;
  --telegram-green-soft: #e9f9eb;
  --signal: #9cff57;
  --signal-soft: rgba(156, 255, 87, 0.14);
  --ink-dark: #09131a;
  --ink-card: #101c24;
  --ink-muted: #95a8b7;
  --incoming: #ffffff;
  --outgoing: #e1f3ff;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Onest", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f3f6f9 0%, #eef2f5 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

code,
.mono {
  font-family: "IBM Plex Mono", monospace;
}

code {
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-muted);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 38px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(14, 26, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 36px rgba(18, 35, 48, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(10, 43, 52, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy span {
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.topnav,
.topbar-actions,
.hero-actions,
.hero-tags,
.form-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topnav a,
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.14s;
}

.topnav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.topnav a:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid rgba(84, 169, 235, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  transition: background 0.14s, border-color 0.14s;
}

.topbar-actions .button {
  min-height: 40px;
  padding: 0 16px;
}

.button:hover {
  border-color: var(--telegram-blue);
}

.button:focus-visible {
  outline: 2px solid rgba(84, 169, 235, 0.3);
  outline-offset: 2px;
}

.button-primary {
  color: #071017;
  background: var(--signal);
  border-color: var(--signal);
}

.button-primary:hover {
  background: #8df03e;
  border-color: #8df03e;
}

.button-secondary {
  color: var(--text);
  background: var(--surface-muted);
}

.button-secondary:hover {
  background: #eef3f7;
}

.button-large {
  min-height: 56px;
  padding: 0 24px;
}

.section {
  padding: 30px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  gap: 48px;
  align-items: start;
  padding: 72px 56px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(circle at top right, rgba(84, 169, 235, 0.2), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(156, 255, 87, 0.08), transparent 28%),
    linear-gradient(135deg, #0d171e 0%, #111f29 60%, #0d171e 100%);
  box-shadow: 0 30px 60px rgba(8, 18, 25, 0.24);
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.78);
}

.eyebrow.subtle {
  background: var(--surface-muted);
}

.hero h1,
.section-heading h2,
.diagnosis-card h2,
.custom-copy h2,
.lead-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h1 {
  line-height: 1.08;
}

.hero h1 span {
  display: block;
  color: var(--signal);
}

.hero-text,
.section-heading p,
.pain-card p,
.diagnosis-grid p,
.solution-card p,
.solution-note p,
.audience-card p,
.custom-copy p,
.custom-grid p,
.faq-item p,
.lead-copy p,
.lead-rail span,
.form-hint,
.footer span,
.scene-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 680px;
  margin-top: 22px;
  font-size: 18px;
}

.hero-points,
.lead-rail,
.scene-side {
  display: grid;
  gap: 12px;
}

.hero-points {
  margin-top: 24px;
}

.hero-actions {
  margin-top: 36px;
}

.hero-points div,
.lead-rail div,
.scene-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
}

.hero-tags {
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-tags span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-size: 13px;
}

.hero-scene {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.telegram-phone,
.pain-card,
.diagnosis-card,
.solution-note,
.solution-card,
.audience-card,
.custom-card,
.faq-item,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.diagnosis {
  border-radius: 38px 38px 0 0;
}

.custom {
  border-radius: 38px 38px 0 0;
}

.telegram-phone {
  padding: 14px;
  background:
    linear-gradient(180deg, #f4f8fb 0%, #eef4f8 100%);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 14px;
}

.phone-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-user strong {
  display: block;
  font-size: 14px;
}

.phone-user span {
  font-size: 12px;
  color: var(--muted);
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--telegram-blue);
}

.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.phone-chat::-webkit-scrollbar {
  display: none;
}

.bot-hidden {
  display: none !important;
}

.message {
  width: fit-content;
  max-width: 88%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.message.incoming {
  background: var(--incoming);
}

.message.outgoing {
  margin-left: auto;
  background: var(--outgoing);
}

.bot-step {
  display: none;
  gap: 10px;
  flex-direction: column;
}

.bot-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--incoming);
}

.bot-typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--muted);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.bot-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.bot-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-dot {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  30% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.inline-kb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-kb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.inline-kb-btn:hover {
  border-color: var(--telegram-blue);
}

.inline-kb-btn.clicked {
  background: var(--telegram-blue-soft);
  border-color: var(--telegram-blue);
  color: var(--telegram-blue);
}

.inline-kb-excel {
  background: var(--telegram-green-soft);
  border-color: #bfe2c4;
  color: #3d6b44;
}

.msg-more {
  color: var(--muted);
  font-size: 13px;
}

.bot-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--incoming);
}

.bot-file-icon {
  font-size: 28px;
  line-height: 1;
}

.bot-file strong {
  display: block;
  font-size: 14px;
}

.bot-file span {
  font-size: 12px;
  color: var(--muted);
}

.btn-sample-excel {
  display: inline-flex;
  margin-top: 10px;
  font-size: 14px;
}

.metric-card strong,
.scene-card h3,
.pain-card h3,
.solution-card h3,
.solution-note h3,
.audience-card h3,
.custom-grid strong,
.custom-copy h2 {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.scene-card-title h3 {
  font-size: 22px;
  line-height: 1.18;
}

.metric-card strong {
  font-size: 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.solution-heading {
  max-width: 920px;
  margin-bottom: 32px;
}

.solution-heading h2 {
  max-width: 860px;
}

.section-heading h2,
.diagnosis-card h2,
.custom-copy h2,
.lead-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.pain-grid,
.diagnosis-grid,
.audience-grid,
.custom-grid {
  display: grid;
  gap: 14px;
}

.pain-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  align-items: start;
}

.pain-card,
.solution-card,
.audience-card {
  padding: 22px;
  height: auto;
  min-height: fit-content;
}

.diagnosis-card,
.custom-card {
  padding: 28px;
}

.diagnosis-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.diagnosis-grid article,
.custom-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-muted);
}

.diagnosis-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.solution-layout {
  display: block;
}

.solution-note {
  padding: 22px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
  align-items: stretch;
  grid-auto-flow: dense;
}

.solution-card,
.solution-note {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.solution-note-card {
  grid-column: 1 / span 2;
  grid-row: span 2;
}

.solution-card-search {
  grid-column: 3;
  grid-row: 1;
}

.solution-card-filters {
  grid-column: 4;
  grid-row: 1;
}

.solution-card-excel {
  grid-column: 3 / 5;
  grid-row: 2;
}

.solution-card-contacts {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
}

.audience-card-main {
  grid-column: 1 / span 2;
  grid-row: span 2;
}

.audience-grid .bento-sm:nth-of-type(2) {
  grid-column: 3;
}

.audience-grid .bento-sm:nth-of-type(3) {
  grid-column: 4;
}

.audience-grid .bento-wide {
  grid-column: 3 / 5;
}

.bento-item {
  position: relative;
  overflow: hidden;
}

.bento-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(84, 169, 235, 0.15), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.reveal-card {
  will-change: transform, opacity;
}

.custom-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
}

.custom-card.preview-open {
  grid-template-columns: 1fr;
}

.custom-grid {
  align-content: start;
  grid-auto-rows: 1fr;
}

.custom-card.preview-open .custom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.custom-grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-grid-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.custom-grid-chip {
  flex-shrink: 0;
  padding: 7px 12px;
  border: 1px solid rgba(84, 169, 235, 0.22);
  border-radius: 999px;
  background: rgba(84, 169, 235, 0.12);
  color: var(--telegram-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.custom-grid-card-action {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s ease, background 0.18s ease;
  background: linear-gradient(180deg, rgba(84, 169, 235, 0.04), rgba(255, 255, 255, 0.96));
}

.custom-grid-card-action:hover,
.custom-grid-card-action:focus-visible {
  transform: none;
  border-color: rgba(31, 59, 84, 0.14);
  box-shadow: none;
}

.custom-grid-card-action:active {
  transform: none;
  box-shadow: none;
}

.custom-grid-card-action:focus-visible {
  outline: none;
}

.automation-preview {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(31, 59, 84, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 252, 0.98)),
    radial-gradient(circle at top right, rgba(84, 169, 235, 0.08), transparent 40%);
  box-shadow: 0 20px 44px rgba(31, 59, 84, 0.06);
}

.custom-card.preview-open .automation-preview {
  margin-top: 0;
}

.deliverables-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.deliverables-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
}

.deliverable-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(22, 38, 50, 0.06);
}

.deliverable-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.deliverable-card h3,
.pricing-price strong {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.deliverable-card p,
.pricing-description,
.pricing-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.deliverable-card-featured {
  grid-column: 1 / span 2;
  background:
    radial-gradient(circle at top right, rgba(84, 169, 235, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.96));
}

.deliverable-card-dark {
  grid-column: 3 / span 2;
  background:
    radial-gradient(circle at top right, rgba(156, 255, 87, 0.14), transparent 30%),
    linear-gradient(135deg, #0f1921 0%, #12222d 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.deliverable-card-dark .mini-label {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #dceaf3;
}

.deliverable-card-dark h3 {
  color: #f4fbff;
}

.deliverable-card-dark p,
.deliverable-card-dark li {
  color: #99adbb;
}

.deliverable-points,
.pricing-features {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-points li,
.pricing-features li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.pricing-feature-label {
  flex: 0 1 auto;
}

.feature-hint {
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-hint-trigger {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid rgba(31, 59, 84, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #385467;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: help;
}

.feature-hint-bubble {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: min(320px, 72vw);
  padding: 12px 14px;
  border: 1px solid rgba(13, 24, 31, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(16, 32, 44, 0.12);
  color: #314d60;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 4;
}

.feature-hint:hover .feature-hint-bubble,
.feature-hint:focus-within .feature-hint-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pricing-card-featured .feature-hint-trigger {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #dce9f2;
}

.pricing-card-featured .feature-hint-bubble {
  border-color: rgba(255, 255, 255, 0.08);
  background: #162530;
  color: #dce9f2;
  box-shadow: 0 20px 40px rgba(4, 10, 14, 0.28);
}

.deliverable-points li::before,
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--signal);
}

.pricing-heading {
  max-width: 900px;
}

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

.pricing-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.pricing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pricing-price {
  display: grid;
  gap: 8px;
}

.pricing-price-line {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.pricing-price-value {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pricing-price-currency,
.pricing-secondary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card .button {
  width: fit-content;
  margin-top: 4px;
}

.pricing-card-featured {
  background:
    radial-gradient(circle at top right, rgba(156, 255, 87, 0.14), transparent 24%),
    radial-gradient(circle at left bottom, rgba(84, 169, 235, 0.16), transparent 32%),
    linear-gradient(135deg, #0d171e 0%, #11202a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 58px rgba(8, 16, 24, 0.22);
}

.pricing-card-featured .mini-label {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #e1edf5;
}

.pricing-card-featured .pricing-price strong,
.pricing-card-featured .pricing-price-value {
  color: #f4fbff;
}

.pricing-card-featured .pricing-price-currency,
.pricing-card-featured .pricing-secondary,
.pricing-card-featured .pricing-description,
.pricing-card-featured .pricing-features li {
  color: #9ab0bf;
}

.pricing-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 24, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.automation-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(31, 59, 84, 0.08);
}

.automation-preview-head h3 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.automation-preview-head p {
  max-width: 700px;
  margin: 0;
}

.automation-preview-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
}

.automation-preview-status {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(84, 169, 235, 0.14);
  border-radius: 18px;
  background: rgba(84, 169, 235, 0.06);
  color: #456173;
  font-size: 14px;
}

.automation-preview-status.loading {
  color: var(--telegram-blue);
}

.automation-preview-status.success {
  color: #315767;
  background: rgba(84, 169, 235, 0.1);
  border-style: solid;
  border-color: rgba(84, 169, 235, 0.2);
}

.automation-preview-status.error {
  color: #8a5632;
  background: #fff2e4;
  border-style: solid;
  border-color: #f2c6a1;
}

.automation-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.automation-preview-chip-meta {
  padding: 8px 12px;
  border: 1px solid rgba(31, 59, 84, 0.1);
  border-radius: 999px;
  background: #f5f9fc;
  font-size: 12px;
  font-weight: 700;
  color: #315767;
}

.automation-preview-table-wrap {
  margin-top: 16px;
  overflow: auto;
  border: 1px solid rgba(31, 59, 84, 0.08);
  border-radius: 22px;
  background: #fcfeff;
}

.automation-preview-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.automation-preview-table th,
.automation-preview-table td {
  padding: 12px 14px;
  max-width: 260px;
  border-bottom: 1px solid rgba(31, 59, 84, 0.08);
  text-align: left;
  vertical-align: top;
}

.automation-preview-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f2f7fb;
  color: #315767;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.automation-preview-table td {
  color: #2e4a5d;
  line-height: 1.5;
  background: #fcfeff;
}

.automation-preview-table tbody tr:nth-child(even) td {
  background: #f6fafc;
}

.automation-preview-table th:first-child,
.automation-preview-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

.automation-preview-table th:first-child {
  background: #e7f2fb;
}

.automation-preview-table td:first-child {
  background: #f4f9fd;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  position: relative;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--muted);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--text);
}

.faq-item p {
  margin: 0 0 20px;
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: start;
  overflow: hidden;
}

.lead-form {
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 22px;
}

.lead-form label {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.lead-form span {
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-muted);
  color: var(--text);
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--muted);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--telegram-blue);
}

.form-result {
  display: none;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.62;
}

.form-result.success {
  display: block;
  background: var(--telegram-green-soft);
  color: #3d6b44;
}

.form-result.error {
  display: block;
  background: #fff1db;
  color: #7a5a33;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-legal {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.hero .eyebrow,
.hero .mini-label {
  border-color: rgba(255, 255, 255, 0.08);
  color: #d8e8f2;
  background: rgba(255, 255, 255, 0.05);
}

.hero .hero-text,
.hero .scene-card p,
.hero .metric-card p,
.hero .phone-user span,
.hero .mono,
.hero .msg-more {
  color: #98adbc;
}

.hero h1,
.hero .scene-card h3 {
  color: #f4fbff;
}

.hero .hero-points div,
.hero .scene-card,
.hero .hero-tags span,
.hero .hero-kpi,
.hero .hero-trust-list span {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.hero .hero-points div,
.hero .scene-card,
.hero .hero-tags span,
.hero .hero-trust-list span {
  color: #d8e6ef;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-kpi {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.hero-kpi strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #f4fbff;
}

.hero-kpi span {
  display: block;
  margin-top: 8px;
  color: #94a9b8;
  font-size: 13px;
  line-height: 1.55;
}

.hero-trust {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-trust-label {
  color: #8096a6;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-list span {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.telegram-phone {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(2, 7, 11, 0.28);
}

.telegram-phone {
  background: linear-gradient(180deg, #17242d 0%, #101a21 100%);
}

.hero .phone-user strong,
.hero .bot-file strong,
.hero .metric-card strong {
  color: #f4fbff;
}

.hero .message {
  border-color: rgba(255, 255, 255, 0.08);
}

.hero .message.incoming,
.hero .bot-typing,
.hero .bot-file,
.hero .inline-kb-btn,
.hero .btn-sample-excel {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #d6e4ed;
}

.hero .inline-kb-btn:hover,
.hero .btn-sample-excel:hover {
  border-color: rgba(156, 255, 87, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.hero .message.incoming {
  color: #dce8ef;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #e4eef5;
}

.hero .message.outgoing {
  color: #071017;
  background: #dff0ff;
}

.hero .inline-kb-btn.clicked {
  background: rgba(156, 255, 87, 0.12);
  border-color: var(--signal);
  color: var(--signal);
}

.hero .inline-kb-excel {
  background: rgba(156, 255, 87, 0.14);
  border-color: rgba(156, 255, 87, 0.34);
  color: #bfff9e;
}

.trust-strip {
  padding-top: 26px;
  padding-bottom: 26px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(13, 24, 31, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 36px rgba(15, 33, 47, 0.06);
}

.trust-strip-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.trust-strip-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-strip-marquee span {
  padding: 12px 16px;
  border: 1px solid rgba(13, 24, 31, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f4f8fb);
  color: #294457;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.impact-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(156, 255, 87, 0.12), transparent 25%),
    radial-gradient(circle at left bottom, rgba(84, 169, 235, 0.14), transparent 35%),
    linear-gradient(135deg, #0d171e 0%, #111e27 100%);
  box-shadow: 0 28px 58px rgba(8, 16, 24, 0.22);
}

.impact-band .eyebrow {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #dcebf4;
}

.impact-band-copy h2 {
  margin: 14px 0 0;
  color: #f3fbff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.impact-band-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #98acba;
  line-height: 1.7;
}

.impact-band-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.impact-stat {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.impact-stat strong {
  font-size: 22px;
  color: var(--signal);
  letter-spacing: -0.04em;
}

.impact-stat span {
  color: #deedf5;
  line-height: 1.5;
}

.impact-band-cta {
  margin-top: 10px;
}

.pain-card,
.diagnosis-card,
.solution-note,
.solution-card,
.audience-card,
.deliverable-card,
.pricing-card,
.custom-card,
.faq-item,
.lead-layout,
.lead-form {
  box-shadow: 0 20px 40px rgba(22, 38, 50, 0.06);
}

.section-muted {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(236, 241, 246, 0.6), rgba(231, 237, 242, 0.3));
  z-index: -1;
}

.lead-layout {
  padding: 28px;
  border: 1px solid rgba(13, 24, 31, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 252, 0.92));
}


@media (max-width: 1160px) {
  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .custom-card,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .custom-card.preview-open .custom-grid {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    grid-template-columns: 1fr;
  }

  .lead-form {
    max-width: none;
    width: 100%;
  }

  .diagnosis-grid,
  .pain-grid,
  .deliverables-grid,
  .pricing-grid,
  .audience-grid,
  .solution-cards {
    grid-template-columns: 1fr;
  }

  .hero-kpis,
  .trust-strip-grid,
  .impact-band-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-marquee {
    justify-content: flex-start;
  }

  .audience-card-main,
  .deliverable-card-featured,
  .deliverable-card-dark,
  .audience-grid .bento-sm:nth-of-type(2),
  .audience-grid .bento-sm:nth-of-type(3),
  .audience-grid .bento-wide,
  .solution-note-card,
  .solution-card-search,
  .solution-card-filters,
  .solution-card-excel,
  .solution-card-contacts {
    grid-column: auto;
    grid-row: auto;
  }

  .automation-preview-head {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar {
    top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px 16px;
    padding: 14px 16px;
  }

  .brand {
    flex: none;
  }

  .topnav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1 / -1;
    width: 100%;
    gap: 8px;
  }

  .topnav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
    text-align: center;
  }

  .topbar-actions {
    width: auto;
    justify-content: flex-end;
  }

  .topbar-actions .button {
    min-height: 42px;
    width: auto;
    padding: 0 14px;
  }

  .hero {
    padding: 44px 28px;
    gap: 32px;
  }

  .hero-copy,
  .hero-scene {
    min-width: 0;
  }

  .hero-text {
    max-width: none;
    font-size: 17px;
  }

  .hero-scene {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-tg-decor .tg-plane-main {
    width: 240px;
    right: -2%;
    top: 4%;
    opacity: 0.14;
  }

  .hero-tg-decor .tg-scatter {
    width: 440px;
    left: -8%;
    bottom: -8%;
    opacity: 0.08;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .section {
    padding: 56px 0;
  }

  .topbar,
  .hero-actions,
  .hero-tags,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .topnav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    gap: 8px;
  }

  .topnav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
    text-align: center;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .hero {
    padding: 32px 18px;
    gap: 28px;
    border-radius: 28px;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .topbar-actions .button {
    min-height: 44px;
    padding: 0 12px;
  }

  .phone-chat {
    height: 340px;
  }

  .solution-note-card,
  .solution-card-excel {
    grid-column: auto;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid,
  .impact-band-grid,
  .lead-layout {
    padding: 20px;
    border-radius: 24px;
  }

  .pricing-card-head {
    flex-direction: column;
  }

  .pricing-card .button {
    width: 100%;
  }

  .feature-hint-bubble {
    left: auto;
    right: 0;
    width: min(280px, calc(100vw - 56px));
  }

  .custom-grid-card-head {
    flex-direction: column;
  }

  .custom-grid-chip {
    align-self: flex-start;
  }

  .automation-preview {
    padding: 18px;
    border-radius: 22px;
  }

  .automation-preview-close {
    width: 100%;
  }

  .automation-preview-table {
    font-size: 12px;
  }

  .automation-preview-table th,
  .automation-preview-table td {
    padding: 10px 12px;
    max-width: 220px;
  }

  .faq-item summary {
    font-size: 19px;
  }

  .hero-tg-decor .tg-plane-main {
    width: 220px;
    right: -6%;
    top: 10px;
    opacity: 0.12;
  }

  .hero-tg-decor .tg-scatter {
    width: 340px;
    left: -14%;
    bottom: -10%;
    opacity: 0.06;
  }

  .section-tg-plane {
    width: 260px;
    left: -32px;
    bottom: 8px;
    opacity: 0.1;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .topbar {
    top: 8px;
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 10px;
    gap: 10px;
    border-radius: 20px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    display: none;
  }

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

  .topnav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    text-align: center;
  }

  .hero {
    margin-top: 14px;
    padding: 24px 14px;
    gap: 20px;
    border-radius: 24px;
  }

  .hero h1,
  .section-heading h2,
  .diagnosis-card h2,
  .custom-copy h2,
  .lead-copy h2 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.02;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-points {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-points div,
  .lead-rail div,
  .scene-card,
  .hero-kpi {
    padding: 14px;
    border-radius: 18px;
  }

  .hero-tags span,
  .hero-trust-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .telegram-phone {
    padding: 12px;
    border-radius: 22px;
  }

  .phone-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 2px 12px;
  }

  .phone-chat {
    height: 300px;
    gap: 8px;
  }

  .message,
  .bot-typing,
  .bot-file {
    max-width: 100%;
  }

  .inline-kb {
    gap: 8px;
  }

  .inline-kb-btn {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .trust-strip-grid,
  .impact-band-grid,
  .lead-layout {
    padding: 16px;
    border-radius: 20px;
  }

  .custom-card,
  .lead-form,
  .faq-item {
    border-radius: 20px;
  }

  .lead-form {
    padding: 18px;
  }

  .lead-form input,
  .lead-form textarea {
    padding: 14px 16px;
  }

  .hero-tg-decor .tg-plane-main {
    width: 180px;
    right: -8%;
    top: 10px;
    opacity: 0.11;
  }

  .hero-tg-decor .tg-scatter {
    width: 280px;
    left: -18%;
    bottom: -10%;
    opacity: 0.05;
  }

  .section-tg-plane {
    width: 220px;
    left: -44px;
    bottom: 6px;
    opacity: 0.08;
  }

  .footer {
    margin-top: 20px;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .topbar {
    top: 6px;
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 8px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .topbar-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
  }

  .topbar-actions .button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .topnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 12px;
    white-space: normal;
  }

  .hero {
    margin-top: 12px;
    padding: 20px 12px;
    gap: 18px;
  }

  .eyebrow,
  .mini-label {
    padding: 6px 10px;
    font-size: 10px;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .telegram-phone {
    padding: 10px;
  }

  .phone-chat {
    height: 260px;
  }
}

@media (max-width: 420px) {

  .hero h1,
  .section-heading h2,
  .diagnosis-card h2,
  .custom-copy h2,
  .lead-copy h2 {
    font-size: clamp(24px, 9.4vw, 30px);
    line-height: 1;
  }

  .hero-points div,
  .scene-card,
  .hero-kpi,
  .hero-tags span,
  .hero-trust-list span {
    font-size: 12px;
  }

  .hero .inline-kb-btn {
    font-size: 12px;
  }
}

/* Hero SVG decorations */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-copy,
.hero-scene {
  position: relative;
  z-index: 1;
}

.hero-tg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-tg-decor .tg-plane-main {
  position: absolute;
  right: 4%;
  top: 6%;
  width: 320px;
  opacity: 0.16;
  transform: rotate(10deg);
}

.hero-tg-decor .tg-scatter {
  position: absolute;
  left: -3%;
  bottom: -4%;
  width: 560px;
  opacity: 0.1;
  transform: scaleX(-1) rotate(6deg);
}

/* Telegram SVG icons in cards */

.card-tg-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  opacity: 0.65;
}

/* Small brand icon in header */
.brand-mark .tg-brand-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* Legal documents */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.legal-page-header {
  margin-bottom: 36px;
}

.legal-page-header h1 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 8px 0 6px;
}

.legal-meta {
  font-size: 13px;
  color: var(--muted);
}

.legal-section {
  margin-top: 32px;
}

.legal-section h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-top: 6px;
}

.legal-section ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal-section li+li {
  margin-top: 4px;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-requisites {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Pain section scatter decoration */
.pain {
  position: relative;
  border-radius: 0 0 38px 38px;
  overflow: hidden;
}

.section-tg-scatter {
  position: absolute;
  right: -30px;
  top: 10px;
  width: 560px;
  opacity: 0.13;
  pointer-events: none;
  transform: rotate(5deg);
  z-index: 0;
}

.pain>*:not(.section-tg-scatter) {
  position: relative;
  z-index: 1;
}

/* Audience section decoration */
.audience {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 38px 38px;
}

.section-tg-plane {
  position: absolute;
  left: -18px;
  bottom: 14px;
  width: 320px;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-10deg);
  z-index: 0;
}

.audience>*:not(.section-tg-plane) {
  position: relative;
  z-index: 1;
}
