:root {
  --ink: #152012;
  --green: #5f8f28;
  --green-dark: #24391d;
  --green-soft: #ddecbb;
  --lime: #c7df67;
  --paper: #f7f9f1;
  --white: #fffef8;
  --muted: #62705c;
  --line: rgba(21, 32, 18, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  margin: 0;
  overflow-x: hidden;
}

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

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.58;
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 950;
  letter-spacing: 0;
  margin-top: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 7.1vw, 7.4rem);
  line-height: 0.92;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.25rem, 5.4vw, 5.9rem);
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.45rem, 2.8vw, 3rem);
  line-height: 1;
}

section {
  scroll-margin-top: 100px;
}

.site-header {
  align-items: center;
  background: rgba(247, 249, 241, 0.9);
  backdrop-filter: blur(18px);
  display: flex;
  inset: 0 0 auto;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(16px, 4vw, 58px);
  position: fixed;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 950;
  gap: 10px;
}

.brand img {
  display: block;
  height: 42px;
  width: auto;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.92rem;
  font-weight: 900;
}

nav a {
  color: rgba(21, 32, 18, 0.72);
}

.button,
.nav-action {
  align-items: center;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 54px;
  overflow: hidden;
  padding: 0 24px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-action {
  min-height: 42px;
  padding: 8px 16px;
}

.button:hover,
.nav-action:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.button:active,
.nav-action:active {
  transform: translateY(0) scale(0.98);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  color: var(--white);
}

.pricing-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pricing-downloads .button {
  min-height: 46px;
  padding: 0 18px;
}

.pricing-section .pricing-downloads .button-secondary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.pricing-section .pricing-downloads .button-secondary:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.label,
.badge,
.module-name {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: clamp(24px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.58fr);
  min-height: 88svh;
  overflow: hidden;
  padding: clamp(98px, 12svh, 132px) clamp(16px, 5vw, 76px) clamp(42px, 6vw, 72px);
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 88% 15%, rgba(199, 223, 103, 0.95) 0 10rem, transparent 10.1rem),
    radial-gradient(circle at 16% 92%, rgba(95, 143, 40, 0.16) 0 14rem, transparent 14.1rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

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

.hero-lead {
  color: rgba(21, 32, 18, 0.74);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  max-width: 640px;
}

.formula {
  display: inline-flex;
  font-weight: 950;
}

.formula-steps {
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}

.formula-step {
  background: var(--white);
  border-radius: 999px;
  padding: 12px 16px;
}

.formula-step--material {
  background: var(--green-dark);
  color: var(--white);
}

.formula-step--changes {
  background: var(--green-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-note {
  color: rgba(21, 32, 18, 0.64);
  font-size: 0.98rem;
  font-weight: 900;
  margin-top: 18px;
}

.agent-panel {
  align-self: center;
  background: var(--green-dark);
  border-radius: 42px;
  justify-self: center;
  max-width: 440px;
  padding: clamp(16px, 2.3vw, 28px);
  width: 100%;
}

.agent-panel p {
  color: rgba(255, 254, 248, 0.82);
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0;
}

.agent-panel__top {
  background: var(--lime);
  border-radius: 28px;
  color: var(--ink);
  padding: 20px;
}

.agent-panel__top span {
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.agent-panel__top strong {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.agent-flow {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.agent-flow article {
  align-items: flex-start;
  background: rgba(255, 254, 248, 0.11);
  border-radius: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 14px;
}

.agent-flow span {
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.target-section {
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
}

.target-section h2 {
  color: var(--white);
}

.target-section .section-intro p:not(.label) {
  color: rgba(255, 254, 248, 0.76);
}

.target-list {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 50px);
}

.target-item {
  align-items: center;
  background: rgba(255, 254, 248, 0.96);
  border-radius: 999px;
  color: var(--ink);
  display: grid;
  gap: clamp(18px, 3vw, 38px);
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 148px;
  overflow: hidden;
  padding: 18px clamp(22px, 4vw, 42px) 18px 18px;
  position: relative;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.target-item:hover {
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.target-item h3 {
  font-size: clamp(1.7rem, 3vw, 3.35rem);
  margin-bottom: 10px;
}

.target-item p {
  max-width: 720px;
}

.target-marker {
  align-items: center;
  aspect-ratio: 1;
  background: var(--green-dark);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 2.2rem;
  font-weight: 950;
  justify-content: center;
  min-width: 86px;
  transition: transform 260ms ease;
}

.target-item:hover .target-marker {
  transform: scale(1.04);
}

.price-pills {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.price-pills span,
.pill-cloud span,
.region-strip span {
  background: var(--white);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  padding: 12px 16px;
}

.section {
  padding: clamp(62px, 9vw, 124px) clamp(16px, 5vw, 76px);
}

.section--light {
  background: var(--white);
}

.section--green,
.agent-section,
.pricing-section,
.telegram-section,
.final-cta {
  background: var(--green-dark);
  color: var(--white);
}

.section-intro {
  max-width: 970px;
}

.section-intro p:not(.label) {
  max-width: 760px;
}

.section--green h2,
.agent-section h2,
.pricing-section h2,
.telegram-section h2,
.final-cta h2 {
  color: var(--white);
}

.section--green .section-intro p:not(.label),
.agent-section .section-intro p:not(.label),
.pricing-section .section-intro p:not(.label),
.telegram-section .section-intro p:not(.label),
.final-cta .section-intro p:not(.label) {
  color: rgba(255, 254, 248, 0.76);
}

.round-grid {
  display: grid;
  gap: 16px;
  margin-top: clamp(26px, 4vw, 48px);
}

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

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

.round-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 42px;
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  position: relative;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.round-tile:hover {
  background: var(--white);
  border-color: rgba(95, 143, 40, 0.28);
  box-shadow: 0 18px 58px rgba(21, 32, 18, 0.1);
  transform: translateY(-4px);
}

.round-tile--bright {
  background: var(--white);
}

.round-tile h3 {
  margin-bottom: 14px;
}

.module-tile ul,
.boundary-grid ul,
.price-bubble ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.module-tile li,
.boundary-grid li,
.price-bubble li {
  background: rgba(95, 143, 40, 0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 8px 11px;
}

.price-bubble--flex li {
  background: rgba(255, 254, 248, 0.14);
  color: rgba(255, 254, 248, 0.9);
}

.resolution,
.fineprint {
  color: var(--muted);
  font-weight: 900;
  margin: 28px 0 0;
  max-width: 860px;
}

.section--green .resolution,
.pricing-section .fineprint,
.telegram-section .fineprint {
  color: rgba(255, 254, 248, 0.76);
}

.step-orbit {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 48px);
}

.step-orbit article {
  background: var(--paper);
  border: 1px solid rgba(21, 32, 18, 0.05);
  border-radius: 36px;
  min-height: 300px;
  padding: 30px 24px;
  position: relative;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.step-orbit article:hover {
  background: var(--white);
  box-shadow: 0 18px 58px rgba(21, 32, 18, 0.1);
  transform: translateY(-4px);
}

.step-orbit strong {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 1.15rem;
  height: 44px;
  justify-content: center;
  margin-bottom: 24px;
  width: 44px;
}

.pricing-choice,
.boundary-grid,
.case-grid,
.form-grid {
  display: grid;
  gap: 16px;
}

.agent-compare {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 48px);
}

.agent-compare article {
  background: rgba(255, 254, 248, 0.96);
  border-radius: 36px;
  color: var(--ink);
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
}

.agent-compare span {
  color: var(--green);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.agent-compare p {
  color: rgba(21, 32, 18, 0.72);
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 48px);
}

.basis-panel {
  align-items: stretch;
  background: var(--paper);
  border-radius: 56px;
  display: grid;
  gap: clamp(18px, 4vw, 42px);
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(20px, 4vw, 42px);
}

.basis-price {
  background: var(--green-dark);
  border-radius: 42px;
  color: var(--white);
  min-width: 0;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
}

.basis-price span {
  color: var(--lime);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.basis-price strong {
  display: block;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.basis-price p {
  color: rgba(255, 254, 248, 0.76);
  font-weight: 850;
  margin: 18px 0 0;
}

.basis-features {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.basis-features article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.basis-features article:hover {
  border-color: rgba(95, 143, 40, 0.3);
  box-shadow: 0 16px 45px rgba(21, 32, 18, 0.08);
  transform: translateY(-3px);
}

.basis-features strong {
  color: var(--ink);
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
  margin-bottom: 8px;
}

.basis-features p {
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
}

.pdf-decision-card {
  align-items: center;
  background: var(--green-dark);
  border-radius: 34px;
  color: var(--white);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(20px, 3vw, 30px);
}

.pdf-decision-card--light {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.pdf-decision-card span {
  color: var(--lime);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pdf-decision-card--light span {
  color: var(--green);
}

.pdf-decision-card strong {
  display: block;
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
}

.pdf-decision-card p {
  color: rgba(255, 254, 248, 0.76);
  font-size: 1rem;
  font-weight: 760;
  margin: 12px 0 0;
  max-width: 680px;
}

.pdf-decision-card--light p {
  color: var(--muted);
}

.decision-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  max-width: 900px;
  padding: 0;
}

.decision-areas li {
  background: rgba(255, 254, 248, 0.1);
  border: 1px solid rgba(255, 254, 248, 0.18);
  border-radius: 999px;
  color: rgba(255, 254, 248, 0.9);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  padding: 9px 12px;
}

.pdf-decision-card--light .decision-areas li {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.pdf-decision-card .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.pdf-decision-card:not(.pdf-decision-card--light) .button-secondary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.pdf-decision-card:not(.pdf-decision-card--light) .button-secondary:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.module-section {
  background: var(--paper);
}

.module-board {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  margin-top: clamp(30px, 4vw, 54px);
}

.module-board aside {
  background: var(--green-dark);
  border-radius: 44px;
  color: var(--white);
  padding: clamp(24px, 4vw, 38px);
  position: sticky;
  top: 96px;
}

.module-board aside span {
  color: var(--lime);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.module-board aside strong {
  display: block;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.86;
}

.module-board aside p {
  color: rgba(255, 254, 248, 0.76);
  font-weight: 850;
  margin: 22px 0 0;
}

.module-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.module-cards article:hover {
  border-color: rgba(95, 143, 40, 0.34);
  box-shadow: 0 18px 58px rgba(21, 32, 18, 0.1);
  transform: translateY(-4px);
}

.module-cards span {
  color: var(--green);
  display: block;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.module-cards h3 {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.02;
  margin-bottom: 12px;
}

.module-cards p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.module-cards small {
  background: rgba(95, 143, 40, 0.12);
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 950;
  margin-top: 18px;
  padding: 8px 11px;
}

.section--green h2,
.pricing-section h2,
.telegram-section h2,
.final-cta h2 {
  color: var(--white);
}

.pricing-choice {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 48px);
}

.price-bubble {
  background: rgba(255, 254, 248, 0.1);
  border: 1px solid rgba(255, 254, 248, 0.16);
  border-radius: 54px;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.price-bubble:hover {
  border-color: rgba(199, 223, 103, 0.46);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.16);
  transform: translateY(-5px);
}

.pricing-choice {
  gap: clamp(22px, 3vw, 36px);
}

.price-bubble--abo {
  background: var(--white);
  color: var(--ink);
}

.price-bubble--abo p,
.price-bubble--abo span {
  color: rgba(21, 32, 18, 0.72);
}

.price-bubble--flex p,
.price-bubble--flex span {
  color: rgba(255, 254, 248, 0.76);
}

.price-bubble h3 {
  margin-bottom: 14px;
}

.price-main {
  align-items: baseline;
  display: block;
  margin-bottom: 12px;
}

.price-main strong {
  display: inline;
  font-size: clamp(4.2rem, 8vw, 8.5rem);
  line-height: 0.82;
  overflow-wrap: anywhere;
}

.price-main span {
  color: inherit;
  display: inline;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 950;
  margin-left: 8px;
}

.setup-line {
  color: inherit;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.1;
  margin: 0 0 12px;
}

.basis-line {
  color: inherit;
  font-weight: 950;
  margin: 0;
  opacity: 0.72;
}

.price-bubble--flex {
  transform: none;
}

.price-bubble--flex .button-secondary,
.price-bubble--module .button-secondary {
  border-color: var(--white);
  color: var(--white);
}

.price-formula {
  background: rgba(255, 254, 248, 0.1);
  border-radius: 36px;
  display: grid;
  gap: 18px;
  margin-top: clamp(20px, 3vw, 30px);
  padding: clamp(20px, 3vw, 30px);
}

.price-formula strong {
  color: var(--lime);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.price-formula div {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-formula span {
  background: rgba(255, 254, 248, 0.13);
  border-radius: 999px;
  color: rgba(255, 254, 248, 0.9);
  font-weight: 900;
  padding: 11px 14px;
}

.price-service {
  background: rgba(255, 254, 248, 0.1);
  border-radius: 42px;
  display: grid;
  gap: clamp(18px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  margin-top: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.price-service h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.price-service ul,
.module-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-service li,
.module-strip span {
  background: rgba(255, 254, 248, 0.14);
  border-radius: 999px;
  color: rgba(255, 254, 248, 0.88);
  font-weight: 900;
  padding: 10px 13px;
}

.module-strip {
  align-items: center;
  margin-top: 16px;
}

.module-strip strong {
  color: var(--lime);
  margin-right: 6px;
}

.pricing-help {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(22px, 3vw, 34px);
}

.pricing-help article {
  background: rgba(199, 223, 103, 0.13);
  border: 1px solid rgba(199, 223, 103, 0.18);
  border-radius: 34px;
  min-height: 165px;
  padding: clamp(22px, 3vw, 30px);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.pricing-help article:hover {
  background: rgba(199, 223, 103, 0.2);
  border-color: rgba(199, 223, 103, 0.42);
  transform: translateY(-4px);
}

.pricing-help strong {
  color: var(--lime);
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-help p {
  color: rgba(255, 254, 248, 0.78);
  font-size: 1rem;
  margin: 0;
}

.example-prices {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(22px, 3vw, 34px);
}

.example-prices article {
  background: rgba(255, 254, 248, 0.1);
  border: 1px solid rgba(255, 254, 248, 0.14);
  border-radius: 34px;
  padding: clamp(20px, 3vw, 28px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.example-prices article:hover {
  border-color: rgba(199, 223, 103, 0.44);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.example-prices span {
  color: var(--lime);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.example-prices strong {
  color: var(--white);
  display: block;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: 12px;
}

.example-prices p {
  color: rgba(255, 254, 248, 0.74);
  font-size: 0.98rem;
  margin: 0;
}

.package-table {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.package-row {
  align-items: center;
  background: rgba(255, 254, 248, 0.1);
  border-radius: 999px;
  color: rgba(255, 254, 248, 0.82);
  display: grid;
  gap: 14px;
  grid-template-columns: 0.75fr 1.7fr 1.2fr 0.85fr;
  min-height: 72px;
  padding: 12px 22px;
}

.package-row strong,
.package-row span:last-child {
  color: var(--white);
  font-weight: 950;
}

.package-row--head {
  background: transparent;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  min-height: auto;
  text-transform: uppercase;
}

.boundaries-section,
.case-section,
.faq-section {
  background: var(--paper);
}

.simple-boundaries {
  background: var(--paper);
}

.boundary-compare {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 48px);
}

.boundary-compare > div {
  background: var(--white);
  border-radius: 42px;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.boundary-compare > div:hover {
  box-shadow: 0 18px 58px rgba(21, 32, 18, 0.09);
  transform: translateY(-3px);
}

.boundary-compare ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.boundary-compare li {
  color: var(--muted);
  font-weight: 850;
}

.boundary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 48px);
}

.boundary-out {
  background: #f0e8dc;
}

.telegram-section {
  overflow: hidden;
  position: relative;
}

.telegram-section--soft {
  background: var(--green-soft);
  color: var(--ink);
}

.telegram-section--soft h2 {
  color: var(--ink);
}

.telegram-section--soft .section-intro p:not(.label),
.telegram-section--soft .fineprint {
  color: var(--muted);
}

.telegram-section::after {
  content: none;
}

.chat-layout {
  align-items: center;
  display: grid;
  gap: clamp(26px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.chat-stack {
  display: grid;
  gap: 14px;
  margin-top: 0;
  max-width: none;
  position: relative;
  z-index: 1;
}

.chat-stack p {
  background: var(--white);
  border-radius: 34px 34px 34px 10px;
  color: var(--ink);
  font-weight: 850;
  margin: 0;
  padding: 18px 22px;
}

.phone-mockup {
  background: #0f1a10;
  border: 14px solid #0f1a10;
  border-radius: 44px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  padding: 14px;
}

.phone-top {
  background: var(--white);
  border-radius: 28px 28px 12px 12px;
  color: var(--ink);
  font-weight: 950;
  margin-bottom: 12px;
  padding: 18px;
  text-align: center;
}

.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(26px, 4vw, 48px) 0 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: clamp(26px, 4vw, 48px);
  max-width: 980px;
}

details {
  background: var(--white);
  border-radius: 30px;
  padding: 20px 24px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

details:hover {
  box-shadow: 0 14px 42px rgba(21, 32, 18, 0.08);
  transform: translateY(-2px);
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
}

details p {
  margin: 14px 0 0;
}

.upload-form {
  background: var(--white);
  border-radius: 48px;
  color: var(--ink);
  margin-top: clamp(26px, 4vw, 48px);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: clamp(20px, 4vw, 44px);
}

.click-ring {
  animation: click-ring 620ms ease-out forwards;
  background: rgba(199, 223, 103, 0.52);
  border-radius: 999px;
  height: 18px;
  left: var(--click-x, 50%);
  pointer-events: none;
  position: absolute;
  top: var(--click-y, 50%);
  transform: translate(-50%, -50%) scale(0);
  width: 18px;
  z-index: 2;
}

@keyframes click-ring {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.25);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.clickable-choreo {
  cursor: pointer;
  overflow: hidden;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-reveal].is-visible,
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal],
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
  min-width: 0;
}

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

label {
  color: var(--ink);
  display: grid;
  font-size: 0.94rem;
  font-weight: 900;
  gap: 8px;
  margin-bottom: 18px;
  max-width: 100%;
  min-width: 0;
}

input,
textarea,
select {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  font: inherit;
  max-width: 100%;
  min-height: 54px;
  min-width: 0;
  padding: 14px 16px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(95, 143, 40, 0.2);
}

.field-hint,
.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
}

.form-after-notes {
  margin: 18px auto 0;
  max-width: 940px;
  text-align: center;
}

.form-after-notes p {
  color: rgba(255, 254, 248, 0.76);
  font-size: 0.95rem;
  font-weight: 760;
  margin: 0;
}

.form-after-notes p + p {
  margin-top: 8px;
}

.direct-contact a,
.form-note a,
.form-after-notes a,
.page-content a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.final-cta .form-after-notes a {
  color: var(--lime);
}

.check {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 20px 1fr;
}

.check input {
  min-height: 20px;
  padding: 0;
}

.module-checks {
  border: 0;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px 0 22px;
  padding: 0;
}

.module-checks legend {
  color: var(--ink);
  font-weight: 950;
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

.hp-field {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 34px clamp(16px, 5vw, 76px);
}

.site-footer p {
  font-size: 0.95rem;
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.page-main {
  min-height: 70svh;
  padding: 124px clamp(16px, 5vw, 76px) 80px;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  padding-bottom: 42px;
}

.page-content {
  max-width: 860px;
}

@media (max-width: 1080px) {
  .round-grid--four,
  .case-grid,
  .step-orbit,
  .pricing-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    font-size: 0.86rem;
    max-width: 100%;
    row-gap: 8px;
    white-space: normal;
  }

  .nav-action {
    min-height: 38px;
    padding: 8px 14px;
  }

  .hero,
  .agent-compare,
  .pricing-choice,
  .price-service,
  .price-formula div,
  .pricing-help,
  .example-prices,
  .basis-panel,
  .basis-features,
  .module-board,
  .module-cards,
  .boundary-grid,
  .boundary-compare,
  .chat-layout,
  .form-grid,
  .module-checks {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  h1 {
    font-size: clamp(2.75rem, 11vw, 4rem);
    line-height: 0.96;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .round-grid--three,
  .round-grid--four,
  .case-grid,
  .step-orbit {
    grid-template-columns: 1fr;
  }

  .agent-panel {
    border-radius: 36px;
    margin-top: 10px;
  }

  .target-item {
    border-radius: 46px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .target-marker {
    max-width: 170px;
  }

  .basis-panel {
    border-radius: 36px;
    padding: 14px;
  }

  .basis-price,
  .module-board aside {
    border-radius: 30px;
    position: static;
  }

  .basis-features article,
  .module-cards article,
  .pricing-help article {
    border-radius: 26px;
    min-height: auto;
  }

  .pdf-decision-card {
    align-items: stretch;
    flex-direction: column;
  }

  .pdf-decision-card .button {
    width: 100%;
  }

  .price-main strong {
    font-size: clamp(4rem, 20vw, 5.8rem);
  }

  .phone-mockup {
    max-width: 360px;
    width: 100%;
  }

  .round-tile,
  .step-orbit article {
    min-height: auto;
  }

  .price-bubble--flex {
    transform: none;
  }

  .package-row,
  .package-row--head {
    border-radius: 30px;
    grid-template-columns: 1fr;
  }

  .package-row--head {
    display: none;
  }

  .button {
    width: 100%;
  }

  .formula {
    align-items: center;
    border-radius: 28px;
    display: flex;
    line-height: 1.35;
    max-width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
