/* --- Variables --- */
:root {
  /* Палитра под логотип FlowPoint: cyan → mint на тёмном фоне */
  --bg: #0b0e11;
  --bg-elevated: #121212;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #e4eef0;
  --muted-2: rgba(228, 238, 240, 0.78);
  --cyan: #00e5ff;
  --mint: #2dff94;
  --accent: var(--mint);
  --accent-2: var(--cyan);
  --accent-dim: rgba(45, 255, 148, 0.75);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --font: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-title: "Manrope", "Inter", system-ui, sans-serif;
  --header-h: 64px;
  --gradient-brand: linear-gradient(90deg, var(--cyan) 0%, var(--mint) 100%);
  --glow: 0 0 0 1px rgba(0, 229, 255, 0.22), 0 18px 48px rgba(45, 255, 148, 0.12), 0 8px 28px rgba(0, 229, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
#services,
#process,
#telegram-bots,
#pricing,
#custom,
#faq,
#contacts {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-size: 0.85em;
  background: var(--bg-elevated);
  padding: 0.15em 0.4em;
  border-radius: 6px;
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

/* --- A11y helpers --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.muted {
  color: var(--muted-2);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 17, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: min(100%, 320px);
}

.logo:hover {
  text-decoration: none;
  filter: brightness(1.06);
}

.logo__img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  object-position: left center;
}

.logo__suffix {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted-2);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.nav__cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.1);
  color: #e8fdff !important;
  border: 1px solid rgba(0, 229, 255, 0.28);
}

.nav__cta:hover {
  background: rgba(45, 255, 148, 0.12);
  border-color: rgba(45, 255, 148, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(10, 10, 14, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 30% -20%, rgba(45, 255, 148, 0.18), transparent),
    radial-gradient(ellipse 70% 45% at 100% 20%, rgba(0, 229, 255, 0.10), transparent),
    radial-gradient(ellipse 70% 45% at 70% 120%, rgba(45, 255, 148, 0.10), transparent);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(180, 250, 255, 0.92);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--muted-2);
  font-size: 1.05rem;
  max-width: 34ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --- Hero visual: phone + chat --- */
.hero__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.glow-orb {
  position: absolute;
  inset: auto 0 0 auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 30% 30%, rgba(45, 255, 148, 0.35), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(0, 229, 255, 0.22), transparent 55%);
  filter: blur(20px);
  opacity: 0.65;
  transform: translate(10%, 10%);
  pointer-events: none;
}

.phone {
  width: min(360px, 100%);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}

.phone__top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0.9rem;
  background: rgba(10, 10, 14, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.phone__title {
  margin-left: 0.4rem;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.phone__chat {
  padding: 1rem 0.9rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background:
    radial-gradient(ellipse 110% 80% at 50% 0%, rgba(45, 255, 148, 0.10), transparent 60%),
    rgba(10, 10, 14, 0.55);
}

.bubble {
  max-width: 88%;
  padding: 0.65rem 0.75rem;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.bubble__time {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: rgba(224, 224, 224, 0.65);
  white-space: nowrap;
}

.bubble--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
}

.bubble--user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(45, 255, 148, 0.18), rgba(0, 229, 255, 0.10));
  border-color: rgba(45, 255, 148, 0.18);
}

.bubble--typing {
  width: 120px;
  padding: 0.6rem 0.75rem;
}

.typing {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(224, 224, 224, 0.75);
  animation: typing 1.1s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.bubble--delayed {
  animation: bubbleIn 6s infinite ease;
  opacity: 0;
}

@keyframes bubbleIn {
  0%,
  38% {
    opacity: 0;
    transform: translateY(6px);
  }
  44%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.kbd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.kbd__btn {
  text-align: center;
  padding: 0.6rem 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(224, 224, 224, 0.92);
  font-size: 0.85rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gradient-brand);
  color: #0b0e11;
  box-shadow: var(--glow);
}

.btn--primary:hover {
  filter: brightness(1.06);
  color: #0b0e11;
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: #dffbf3;
  border: 1px solid rgba(0, 229, 255, 0.35);
}

.btn--outline:hover {
  background: rgba(0, 229, 255, 0.08);
  color: #f2fffc;
  border-color: rgba(45, 255, 148, 0.4);
}

.btn--block {
  width: 100%;
  margin-top: auto;
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn--tg {
  gap: 0.55rem;
}

.btn__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: center / contain no-repeat;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.94 14.54 9.72 17.8c.4 0 .57-.17.77-.37l1.86-1.78 3.85 2.83c.71.39 1.21.19 1.4-.66l2.54-11.92c.22-1.02-.37-1.42-1.06-1.16L3.87 9.35c-.98.38-.97.93-.18 1.17l3.9 1.22 9.06-5.72c.43-.26.82-.12.5.14z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.btn--primary .btn__icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.94 14.54 9.72 17.8c.4 0 .57-.17.77-.37l1.86-1.78 3.85 2.83c.71.39 1.21.19 1.4-.66l2.54-11.92c.22-1.02-.37-1.42-1.06-1.16L3.87 9.35c-.98.38-.97.93-.18 1.17l3.9 1.22 9.06-5.72c.43-.26.82-.12.5.14z' fill='%230a0a0e'/%3E%3C/svg%3E");
}

/* --- Sections --- */
.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__intro {
  margin: 0 0 2rem;
  color: var(--muted-2);
  max-width: 42ch;
}

/* --- Scroll animations --- */
.section-animate {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section-animate:not(.is-visible) {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .section-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- KPIs --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  position: relative;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.stat__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(45, 255, 148, 0.30);
  background: radial-gradient(circle at 30% 30%, rgba(45, 255, 148, 0.22), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 0 1px rgba(45, 255, 148, 0.10), 0 20px 45px rgba(45, 255, 148, 0.10);
  margin-bottom: 1rem;
}

.stat__icon--pulse {
  animation: pulse 2.6s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.04);
    filter: brightness(1.15);
  }
}

.stat__value {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.55rem;
}

.stat__value--plain {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat__label {
  margin: 0.25rem 0 0;
  color: var(--muted-2);
}

.stats-disclaimer {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: rgba(224, 224, 224, 0.55);
  max-width: 52ch;
  line-height: 1.45;
}

/* --- Cards / Tariffs --- */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .cards--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card--featured {
  border-color: rgba(45, 255, 148, 0.45);
  box-shadow: var(--glow);
}

.card--3d:hover {
  transform: translateY(-6px) rotateX(1.8deg) rotateY(-2.2deg);
  border-color: rgba(45, 255, 148, 0.32);
  box-shadow: 0 0 0 1px rgba(45, 255, 148, 0.18), 0 32px 70px rgba(0, 0, 0, 0.55);
}

.cards--mt {
  margin-top: 1.25rem;
}

.card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e8fffa;
  background: rgba(0, 229, 255, 0.1);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 229, 255, 0.22);
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card__price {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card__amount {
  font-weight: 700;
  color: var(--text);
  font-size: 1.25rem;
}

.card__list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted-2);
  flex: 1;
}

.card__list li {
  margin-bottom: 0.5rem;
}

.card__list li:last-child {
  margin-bottom: 0;
}

.cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 700px) {
  .cards--2 {
    grid-template-columns: 1fr;
  }
}

.tariff-group {
  margin-bottom: 2.75rem;
}

.tariff-group:last-of-type {
  margin-bottom: 0;
}

.tariff-group__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.tariff-group__note {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.55;
}

.card__price-row {
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.card__price-main {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.card__price-main span {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(224, 224, 224, 0.72);
}

.card__price-extra {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(224, 224, 224, 0.72);
  width: 100%;
}

.card--wide {
  grid-column: 1 / -1;
}

/* --- Gallery (mock screens) --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.shot__phone {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: rotate(-0.8deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shot__phone:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(45, 255, 148, 0.16), 0 26px 70px rgba(0, 0, 0, 0.55);
}

.shot__screen {
  padding: 1.25rem 1.1rem 1.4rem;
  min-height: 230px;
  background:
    radial-gradient(ellipse 120% 90% at 30% 0%, rgba(45, 255, 148, 0.12), transparent 60%),
    rgba(10, 10, 14, 0.45);
}

.shot__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.shot__menu {
  display: grid;
  gap: 0.6rem;
}

.shot__menu span {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.shot__date {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0, 229, 255, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.shot__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 229, 255, 0.06));
  color: rgba(224, 238, 240, 0.88);
}

.shot__slot--pick {
  border-color: rgba(45, 255, 148, 0.45);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(45, 255, 148, 0.12));
  color: #f2fffc;
  box-shadow: 0 0 0 1px rgba(45, 255, 148, 0.2);
}

.shot__slot--muted {
  opacity: 0.35;
  font-weight: 500;
}

.shot__notice {
  border-radius: 16px;
  border: 1px solid rgba(45, 255, 148, 0.20);
  background: rgba(45, 255, 148, 0.08);
  padding: 0.95rem 1rem;
}

.shot__notice p {
  margin: 0 0 0.4rem;
}

.shot__notice p:last-child {
  margin-bottom: 0;
}

/* --- Calculator --- */
.calc {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
  position: relative;
  isolation: isolate;
}

@media (max-width: 900px) {
  .calc {
    grid-template-columns: 1fr;
  }
}

.calc__controls {
  position: relative;
  z-index: 2;
}

.calc__result {
  position: relative;
  z-index: 1;
}

.calc__controls,
.calc__result {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.field:last-child {
  margin-bottom: 0;
}

.field__label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.field__value {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(160, 250, 255, 0.95);
}

.field__hint {
  color: rgba(224, 224, 224, 0.68);
  font-size: 0.9rem;
}

.range {
  width: 100%;
  accent-color: var(--cyan);
}

.toggle {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.toggle__btn {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.toggle__btn:hover {
  transform: translateY(-1px);
}

.toggle__btn.is-active {
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
  color: #e8fffb;
}

.page-tz .toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.25rem;
}

.calc__line {
  margin: 0 0 0.5rem;
  color: rgba(224, 224, 224, 0.72);
}

.calc__price {
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.35rem;
}

.calc__price .price-unit {
  font-size: 0.78em;
  font-weight: 600;
  color: rgba(224, 224, 224, 0.72);
}

.calc__note {
  margin: 1rem 0 0;
  color: rgba(224, 224, 224, 0.68);
  font-size: 0.92rem;
}

/* --- Chat FAQ --- */
.chat-faq {
  display: grid;
  gap: 0.75rem;
}

.chat-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.chat-item__q {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

.chat-item__q::-webkit-details-marker {
  display: none;
}

.chat-item__q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 0.9rem;
  color: rgba(0, 229, 255, 0.85);
}

.chat-item[open] .chat-item__q::after {
  content: "—";
}

.chat-item__a {
  padding: 0 1.05rem 1rem;
  color: rgba(224, 224, 224, 0.74);
}

/* --- CTA --- */
.cta {
  text-align: center;
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.cta__inner {
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(45, 255, 148, 0.12), transparent),
    rgba(10, 10, 14, 0.65);
}

.cta__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.cta__text {
  margin: 0 0 1.5rem;
  color: rgba(224, 224, 224, 0.74);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mini-form {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 560px) {
  .mini-form {
    grid-template-columns: 1fr;
  }
}

.mini-form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.mini-form__input:focus {
  border-color: rgba(45, 255, 148, 0.35);
  box-shadow: 0 0 0 4px rgba(45, 255, 148, 0.10);
}

.contact-details {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.68);
}

.contact-details a {
  color: var(--accent);
}

.contact-details li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Footer --- */
.footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer__brand {
  font-weight: 700;
  color: var(--muted);
}

.footer__note {
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.8;
}

/* --- Services grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.services-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1100px) {
  .services-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid--4 {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  min-height: 100%;
}

.service-card--accent {
  border-color: rgba(45, 255, 148, 0.28);
  box-shadow: var(--glow);
}

.service-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.service-card__text {
  margin: 0 0 1.15rem;
  color: rgba(224, 224, 224, 0.78);
  font-size: 0.95rem;
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
}

/* --- Tariff subsection titles --- */
.tariff-block-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: rgba(200, 255, 248, 0.95);
}

.tariff-block-title--mt {
  margin-top: 2rem;
}

.tariff-block-note {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(224, 224, 224, 0.76);
  max-width: 62ch;
  line-height: 1.55;
}

.calc__detail {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(224, 224, 224, 0.78);
  line-height: 1.45;
}

/* --- Hero: trial + guarantee --- */
.hero__trial {
  margin: 0 0 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.05);
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.9);
  line-height: 1.45;
  max-width: 38rem;
}

.hero__trial-badge {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b0e11;
  background: var(--gradient-brand);
}

.hero__guarantee {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: rgba(224, 224, 224, 0.65);
  max-width: 36rem;
}

/* --- Trust grid (no fake metrics) --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.trust-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.trust-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(224, 224, 224, 0.78);
  line-height: 1.5;
}

.tariffs-why {
  margin: 0 0 1.35rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 255, 148, 0.18);
  background: rgba(45, 255, 148, 0.06);
  max-width: 68ch;
}

.tariffs-why__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.tariffs-why__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.86);
  line-height: 1.6;
}

.tariffs-why__text + .tariffs-why__text {
  margin-top: 0.75rem;
}

.currency-note {
  margin: -0.35rem 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 229, 255, 0.14);
  background: rgba(0, 229, 255, 0.04);
  font-size: 0.88rem;
  color: rgba(224, 224, 224, 0.82);
  line-height: 1.55;
  max-width: 62ch;
}

.currency-note abbr {
  text-decoration: none;
  border-bottom: 1px dotted rgba(224, 224, 224, 0.35);
  cursor: help;
}

.price-unit {
  white-space: nowrap;
}

.tariff-trial-banner {
  margin: -0.5rem 0 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(45, 255, 148, 0.28);
  background: rgba(45, 255, 148, 0.05);
  font-size: 0.92rem;
  color: rgba(224, 224, 224, 0.82);
  line-height: 1.55;
  max-width: 62ch;
}

/* --- CTA strip (after tariffs) --- */
.cta-strip {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 14, 0.55);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-strip__text {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36ch;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* --- Mid CTA (after gallery) --- */
.mid-cta {
  margin-top: 2.25rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 255, 148, 0.15);
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(45, 255, 148, 0.08), transparent),
    rgba(255, 255, 255, 0.02);
}

.mid-cta__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
}

.mid-cta__text {
  margin: 0 0 1.15rem;
  color: rgba(224, 224, 224, 0.76);
  font-size: 0.95rem;
}

.mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* --- FAQ SEO duplicate --- */
.faq-seo {
  margin-top: 2.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.faq-seo__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(224, 224, 224, 0.88);
}

.faq-seo p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.72);
  line-height: 1.55;
}

.faq-seo p:last-child {
  margin-bottom: 0;
}

/* --- Legal --- */
.legal__text {
  margin: 0 0 1rem;
  color: rgba(224, 224, 224, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 68ch;
}

.legal__meta {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.55);
}

.footer__note a {
  color: rgba(224, 224, 224, 0.75);
}

/* --- Narrow screens (phones): spacing, full-width actions, no horizontal scroll --- */
@media (max-width: 640px) {
  html {
    overflow-x: hidden;
  }

  .header__inner,
  .container {
    width: min(1100px, 100% - 1.25rem);
  }

  .header__inner {
    padding-inline: max(0px, env(safe-area-inset-left, 0px)) max(0px, env(safe-area-inset-right, 0px));
  }

  .logo__img {
    height: 38px;
    max-width: min(150px, 46vw);
  }

  .logo__suffix {
    font-size: 1.02rem;
  }

  .hero {
    padding-top: clamp(2rem, 6vw, 3rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    min-height: 0;
    margin-top: 0.5rem;
  }

  .glow-orb {
    width: min(280px, 90vw);
    height: min(280px, 90vw);
    opacity: 0.48;
  }

  .phone {
    width: min(340px, 100%);
  }

  .section {
    padding: 2.65rem 0;
  }

  .section__intro,
  .lead {
    max-width: none;
  }

  .card {
    padding: 1.35rem 1.1rem;
  }

  .card__price-main {
    font-size: 1.45rem;
  }

  .service-card {
    padding: 1.25rem 1.1rem;
  }

  .calc__controls,
  .calc__result {
    padding: 1.15rem;
  }

  .toggle {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .toggle__btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .calc__result .btn--lg {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cta-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-strip__actions {
    width: 100%;
  }

  .cta-strip__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mid-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mid-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-item__q {
    padding-right: 2.35rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .toggle__btn {
    font-size: 0.88rem;
    padding: 0.5rem 0.75rem;
  }

  .calc__price {
    font-size: 1.08rem;
  }
}

/* ========== TZ redesign (flowpointhub.by) ========== */
.page-tz .section--tz {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.section__title--tz {
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
}

.section__intro--tz {
  margin: 0 0 2.25rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted-2);
}

.tg-bots,
.web-site,
.hosting-block {
  max-width: 44rem;
  margin: 0 auto;
}

.tg-bots__list,
.web-site__list,
.hosting-block__list {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.tg-bots__list li,
.web-site__list li,
.hosting-block__list li {
  position: relative;
  margin: 0 0 0.9rem;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(224, 224, 224, 0.84);
}

.tg-bots__list li:last-child,
.web-site__list li:last-child,
.hosting-block__list li:last-child {
  margin-bottom: 0;
}

.tg-bots__list li::before,
.web-site__list li::before,
.hosting-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5ff, #2dff94);
  opacity: 0.9;
}

.tg-bots__actions,
.web-site__actions,
.hosting-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.header__inner--tz {
  width: min(1040px, 100% - 2rem);
}

.nav--tz {
  gap: 1.35rem;
  align-items: center;
}

.nav--tz .nav__cta {
  margin: 0;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav--tz .nav__cta:hover {
  text-decoration: none;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
}

.hero--tz {
  padding: clamp(3.25rem, 9vw, 5rem) 0 clamp(3.5rem, 10vw, 5.5rem);
}

.hero__grid--tz {
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__title-tz {
  margin: 0 0 1.1rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero__lead-tz {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 36rem;
}

.hero__actions--tz {
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual--tz {
  min-height: 0;
}

.phone--tz {
  width: min(320px, 100%);
}

.glow-orb--tz {
  width: min(300px, 85vw);
  height: min(300px, 85vw);
  opacity: 0.5;
}

.services-tz {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .services-tz {
    grid-template-columns: 1fr;
  }
}

.service-tz {
  display: flex;
  flex-direction: column;
  padding: 1.65rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-tz:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 255, 148, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-tz__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  color: var(--mint);
  background: rgba(45, 255, 148, 0.08);
  border: 1px solid rgba(45, 255, 148, 0.2);
}

.service-tz__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.service-tz__text {
  margin: 0 0 1.1rem;
  flex: 1;
  font-size: 0.94rem;
  color: rgba(224, 224, 224, 0.8);
  line-height: 1.55;
}

.service-tz__link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: none;
}

.service-tz__link:hover {
  text-decoration: underline;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps--tz {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 38rem;
  margin-inline: auto;
}

.process-steps--tz .process-step {
  display: grid;
  grid-template-columns: 2.85rem minmax(0, 1fr);
  column-gap: 1.1rem;
  align-items: start;
  padding: 0 0 1.5rem;
  margin: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  position: relative;
}

.process-steps--tz .process-step:last-child {
  padding-bottom: 0;
}

.process-steps--tz .process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(1.425rem - 1px);
  top: 2.7rem;
  bottom: 0.2rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.45), rgba(45, 255, 148, 0.14));
}

.process-step__num {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: #0b0e11;
  background: var(--gradient-brand);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.process-steps--tz .process-step__num {
  justify-self: center;
  position: relative;
  z-index: 1;
}

.process-steps--tz .process-step__body {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.process-steps--tz .process-step:hover .process-step__body {
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

@media (prefers-reduced-motion: reduce) {
  .process-steps--tz .process-step__body {
    transition: none;
  }
}

.process-step__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.process-step__text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(224, 224, 224, 0.78);
  line-height: 1.55;
}

.product-telegram {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: stretch;
  max-width: 52rem;
  margin-inline: auto;
}

.product-telegram__calc {
  width: 100%;
}

.product-tariffs__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.product-tariffs__lead {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(224, 224, 224, 0.72);
  max-width: 44rem;
}

.tariff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .tariff-cards {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

.tariff-card {
  margin: 0;
  padding: 1.15rem 1.1rem 1.25rem;
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.tariff-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.tariff-card.is-active {
  border-color: rgba(45, 255, 148, 0.45);
  box-shadow: 0 0 0 1px rgba(45, 255, 148, 0.2), 0 14px 36px rgba(0, 0, 0, 0.4);
  background: rgba(45, 255, 148, 0.06);
}

.product-telegram__tariffs--salon .tariff-card {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
}

.product-telegram__tariffs--salon .tariff-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.tariff-card__badge {
  display: inline-block;
  margin-bottom: 0.15rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(224, 238, 240, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

.tariff-card__badge--accent {
  color: rgba(0, 229, 255, 0.95);
  background: rgba(0, 229, 255, 0.12);
}

.tariff-card__badge--max {
  color: rgba(45, 255, 148, 0.95);
  background: rgba(45, 255, 148, 0.12);
}

.tariff-card__name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.tariff-card__price {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(224, 224, 224, 0.88);
}

.tariff-card__list {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(224, 224, 224, 0.68);
}

.tariff-card__list li {
  margin: 0 0 0.35rem;
}

.tariff-card__list li:last-child {
  margin-bottom: 0;
}

.field__label-note {
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(0, 229, 255, 0.65);
}

.product-telegram__main {
  padding: 0.25rem 0;
}

.product-telegram__lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(224, 224, 224, 0.88);
}

.product-telegram__price {
  margin: 1.25rem 0 1.35rem;
  font-size: 1.15rem;
  color: var(--text);
}

.price-hint {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(224, 224, 224, 0.55);
}

.product-calc__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
}

.product-calc__hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(224, 224, 224, 0.68);
  line-height: 1.5;
}

.calc--embed {
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.calc--embed .calc__controls,
.calc--embed .calc__result--embed {
  padding: 1.25rem;
}

.calc--embed .calc__result--embed {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.calc--embed .calc__controls {
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.custom-block {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
}

.custom-block__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.custom-block__services {
  margin: 0 0 1.25rem;
  text-align: left;
}

.custom-block__service {
  margin: 0 0 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(224, 224, 224, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.custom-block__service:last-child {
  margin-bottom: 0;
}

.custom-block__service strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-title);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.custom-block__text {
  margin: 0 0 1.35rem;
  color: var(--muted-2);
  line-height: 1.6;
}

.chat-faq--tz {
  max-width: 44rem;
}

.contacts-lead {
  margin: 0 0 1.25rem;
}

.contacts-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  line-height: 1.9;
}

.contacts-list a {
  color: var(--accent);
}

.contacts-list__meta {
  color: rgba(224, 224, 224, 0.55);
  font-size: 0.92rem;
}

.footer--tz {
  padding: 2rem 0 2.25rem;
  border-top: 1px solid var(--border);
}

.footer__inner--tz {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer__left {
  min-width: 200px;
}

.footer__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.55);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer__nav a {
  color: var(--muted-2);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer__nav a:hover {
  color: var(--text);
}

.footer__tg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .footer__inner--tz {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__tg {
    width: 100%;
    justify-content: center;
  }
}

/* --- Знак белорусского рубля (только графика, белый) --- */
.byn-abbr {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-bottom: none;
  cursor: help;
  vertical-align: middle;
}

.byn-abbr .byn-glyph {
  display: block;
  flex-shrink: 0;
}

.byn-glyph {
  display: inline-block;
  vertical-align: -0.2em;
  margin: 0 0.08em;
  object-fit: contain;
}

.byn-glyph--btn {
  vertical-align: middle;
  margin: 0 0 0 0.15em;
}

.toggle__btn .toggle__label {
  vertical-align: middle;
}

.money-inline .byn-abbr {
  margin: 0 0.05em;
}

.calc__price--byn .price-unit {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.08em 0.2em;
  font-size: 0.78em;
  font-weight: 600;
  color: rgba(224, 224, 224, 0.72);
}

.calc__price--byn .byn-abbr--inline {
  font-size: 1em;
}

/* --- Hero минимальный (только заголовок) --- */
.hero--tz-solo {
  padding: clamp(4.25rem, 11vw, 6.75rem) 0 clamp(3.75rem, 9vw, 5.25rem);
  position: relative;
}

.hero--tz-solo .hero__bg {
  opacity: 1;
}

.hero__solo {
  position: relative;
  max-width: 44rem;
  padding-left: clamp(0rem, 2vw, 0.5rem);
}

.hero__solo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 3px;
  background: var(--gradient-brand);
  opacity: 0.85;
}

@media (max-width: 480px) {
  .hero__solo {
    padding-left: 0;
  }

  .hero__solo::before {
    display: none;
  }
}

.hero__kicker {
  margin: 0 0 1rem;
  padding-left: clamp(0rem, 2vw, 1rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.75);
}

@media (max-width: 480px) {
  .hero__kicker {
    padding-left: 0;
  }
}

.hero__title-tz.hero__title-tz--solo {
  margin: 0 0 1.85rem;
  padding-left: clamp(0rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: var(--font-title);
  font-size: unset;
  font-weight: normal;
  line-height: 1.08;
  letter-spacing: normal;
}

@media (max-width: 480px) {
  .hero__title-tz--solo {
    padding-left: 0;
  }
}

.hero__title-line {
  display: block;
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero__title-accent {
  display: block;
  font-size: clamp(1.75rem, 5.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  background: linear-gradient(105deg, #e8fdff 0%, #ffffff 22%, #7dffc8 55%, #00e5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(45, 255, 148, 0.12);
}

@supports not (background-clip: text) {
  .hero__title-accent {
    color: #fff;
    background: none;
  }
}

/* --- Список услуг: интерактивные кнопки --- */
.services-pick {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .services-pick {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
}

.services-pick > li {
  margin: 0;
  padding: 0;
}

.services-pick__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  min-height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.services-pick__btn:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(45, 255, 148, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.services-pick__btn:focus-visible {
  outline: 2px solid rgba(45, 255, 148, 0.6);
  outline-offset: 3px;
}

.services-pick__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--mint);
  background: rgba(45, 255, 148, 0.1);
  border: 1px solid rgba(45, 255, 148, 0.22);
}

.services-pick__label {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.services-pick__desc {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(224, 224, 224, 0.68);
  max-width: 22rem;
}

.services-pick__hint {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(224, 224, 224, 0.55);
  margin-top: auto;
  padding-top: 0.25rem;
}

.services-after {
  margin: 1.75rem 0 0;
  font-size: 0.92rem;
  color: rgba(224, 224, 224, 0.65);
  line-height: 1.55;
  max-width: 40rem;
}
