/* Коломбо — демо-страница, фирменный акцент как на старом сайте */
:root {
  --brand: #11aabb;
  --brand-hover: #0e96a5;
  --brand-soft: rgba(17, 170, 187, 0.12);
  --brand-muted: rgba(17, 170, 187, 0.35);
  --ink: #1a1d26;
  --ink-soft: #5c6473;
  --surface: #ffffff;
  --bg: #f4f7f9;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 29, 38, 0.08);
  --shadow-sm: 0 1px 3px rgba(26, 29, 38, 0.06);
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--brand-hover);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

/* Лого слева, справа две строки — только блочная вёрстка (без «слияния» в одну строку) */
.brand {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.brand:hover {
  color: inherit;
}

.brand__logo {
  flex: 0 0 auto;
  line-height: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  max-width: none;
  object-fit: contain;
}

.brand__text {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  text-align: left;
  line-height: 1.2;
}

.brand__name {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.brand__domain {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.2;
  margin: 0.2rem 0 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.nav-desktop a:hover {
  background: var(--brand-soft);
  color: var(--brand-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle:hover {
  background: var(--brand-soft);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 0 1rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

@media (min-width: 880px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 879px) {
  .header-inner {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: auto;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 0.35rem;
    white-space: nowrap;
  }

  .header-actions .btn--ghost {
    padding: 0.5rem 0.65rem;
    font-size: 0.88rem;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 12px var(--brand-muted);
}

.btn--primary:hover {
  background: var(--brand-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(17, 170, 187, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(17, 170, 187, 0.1), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  z-index: -1;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-hover);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 36em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.hero__meta strong {
  color: var(--ink);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

/* Sections */
section {
  padding: 3.25rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

/* Текстовые страницы (CRM, инструкции и т.п.) */
.page-content {
  max-width: 44rem;
}

.page-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.page-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.page-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

.page-content h3:first-child {
  margin-top: 0;
}

.page-content p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.page-content p:last-child {
  margin-bottom: 0;
}

.page-content ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.page-content li {
  margin-bottom: 0.35rem;
}

.page-content li:last-child {
  margin-bottom: 0;
}

.callout {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, var(--brand-soft), rgba(206, 231, 247, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--ink);
}

.callout p {
  margin: 0;
  color: inherit;
}

.page-figure {
  margin: 1.25rem 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.page-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Оглавление инструкций (иконка + ссылка) */
.instruction-picker {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 38rem;
  margin-top: 0.5rem;
}

.instruction-picker__row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.instruction-picker__row:last-child {
  border-bottom: none;
}

.instruction-picker__row img {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.instruction-picker__row a {
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.instruction-picker__row a:hover {
  color: var(--brand-hover);
}

.instruction-picker__sep {
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0.35rem 0;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.instruction-back {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.instruction-back a {
  font-weight: 600;
}

/* Длинные технические инструкции (app и др.) */
.instruction-doc pre {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  background: #1e222b;
  color: #e8eaef;
  border-radius: var(--radius);
  font-size: 0.85rem;
  line-height: 1.45;
  overflow-x: auto;
  border: 1px solid var(--border);
}

.instruction-doc img {
  max-width: 100%;
  height: auto;
}

.instruction-doc .page-figure img {
  border-radius: 0;
}

.instruction-doc ol,
.instruction-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.instruction-doc li {
  margin-bottom: 0.35rem;
}

.instruction-doc li:last-child {
  margin-bottom: 0;
}

.instruction-doc h2 {
  margin-top: 2.25rem;
}

.instruction-doc h2:first-of-type {
  margin-top: 1.75rem;
}

.instruction-doc h3 {
  margin-top: 1.75rem;
}

.instruction-doc__rule {
  margin: 1.75rem 0;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-muted), transparent);
}

.instruction-doc__tel-demo {
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--ink);
}

.instruction-doc__tel-demo:hover {
  color: var(--brand-hover);
}

.instruction-doc__tel-demo strong {
  font-weight: 700;
}

.page-figure--phone {
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  background: var(--bg);
}

.page-figure--phone img {
  width: auto;
  max-height: 400px;
  max-width: 100%;
}

.callout--warning {
  background: linear-gradient(135deg, rgba(255, 230, 150, 0.42), var(--brand-soft));
  border-left: 4px solid var(--brand);
}

.callout--intro {
  background: linear-gradient(135deg, rgba(255, 198, 156, 0.55), var(--brand-soft));
  border-left: 4px solid var(--brand);
}

.callout--intro p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.instruction-doc__save {
  display: inline;
  padding: 0.12em 0.5em;
  border-radius: 6px;
  background: rgba(74, 222, 128, 0.28);
  border: 1px solid rgba(34, 197, 94, 0.45);
  font-weight: 600;
  color: var(--ink);
}

.instruction-doc__allowed-names {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 240, 120, 0.42);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
}

.cards-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--brand-muted);
  box-shadow: var(--shadow);
}

.card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-hover);
  margin-bottom: 0.35rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.card--highlight {
  --highlight: #c48a1a;
  --highlight-soft: rgba(196, 138, 26, 0.4);
  border-color: var(--highlight);
  transition: none;
  animation: card-highlight-pulse 2s ease-in-out infinite;
}

.card--highlight:hover {
  border-color: var(--highlight);
}

.card--highlight .card__accent {
  color: var(--highlight);
  font-weight: 700;
}

@keyframes card-highlight-pulse {
  0%,
  100% {
    border-color: rgba(196, 138, 26, 0.45);
    box-shadow:
      0 0 0 1px rgba(196, 138, 26, 0.2),
      0 0 10px rgba(196, 138, 26, 0.15);
  }

  50% {
    border-color: var(--highlight);
    box-shadow:
      0 0 0 3px var(--highlight-soft),
      0 0 24px rgba(196, 138, 26, 0.5),
      0 0 40px rgba(196, 138, 26, 0.25);
  }
}

/* Benefits grid */
.benefits {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--bg);
}

.benefit h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.benefit p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Stats */
.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: linear-gradient(145deg, var(--brand) 0%, #0d8a99 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px var(--brand-muted);
}

.stat__num {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat__label {
  font-size: 0.82rem;
  opacity: 0.95;
  line-height: 1.35;
}

/* How — сетка 2×2 + соединители (крест), демо 4-й блок */
.how-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(17, 170, 187, 0.06) 45%, var(--bg) 100%);
}

.how-section__head {
  margin-bottom: 2.25rem;
}

.how-matrix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-rows: auto 44px auto;
  gap: 0;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

.how-card--tl {
  grid-column: 1;
  grid-row: 1;
}

.how-mx--ht {
  grid-column: 2;
  grid-row: 1;
}

.how-card--tr {
  grid-column: 3;
  grid-row: 1;
}

.how-mx--vl {
  grid-column: 1;
  grid-row: 2;
}

.how-mx--mid {
  grid-column: 2;
  grid-row: 2;
}

.how-mx--vr {
  grid-column: 3;
  grid-row: 2;
}

.how-card--bl {
  grid-column: 1;
  grid-row: 3;
}

.how-mx--hb {
  grid-column: 2;
  grid-row: 3;
}

.how-card--br {
  grid-column: 3;
  grid-row: 3;
}

/* Соединители */
.how-mx {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.how-mx--vl {
  justify-content: flex-end;
  padding-right: 2px;
}

.how-mx--vr {
  justify-content: flex-start;
  padding-left: 2px;
}

.how-mx__bar {
  display: block;
  border-radius: 2px;
  background: linear-gradient(var(--brand-muted), var(--brand), var(--brand-muted));
}

.how-mx__bar--h {
  width: 100%;
  height: 3px;
  max-width: 40px;
  background: linear-gradient(90deg, var(--brand-muted), var(--brand), var(--brand-muted));
}

.how-mx__bar--v {
  width: 3px;
  height: 100%;
  min-height: 44px;
  background: linear-gradient(180deg, var(--brand-muted), var(--brand), var(--brand-muted));
}

.how-mx__dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--brand-muted);
  z-index: 1;
}

.how-mx--ht .how-mx__dot,
.how-mx--hb .how-mx__dot {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.how-mx--vl .how-mx__dot,
.how-mx--vr .how-mx__dot {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.how-mx__hub {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--brand-muted), 0 0 20px var(--brand-soft);
}

.how-card {
  position: relative;
  margin: 0;
  padding: 1.35rem 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.how-card:hover {
  border-color: var(--brand-muted);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.how-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-card__badge::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 2px var(--surface);
}

.how-card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  padding-right: 3.25rem;
}

.how-card__icon {
  flex-shrink: 0;
  color: var(--brand);
  line-height: 0;
  display: flex;
  align-items: center;
}

.how-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.how-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.how-card__text strong {
  color: var(--ink);
}

.how-channels {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}

.how-channels li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.how-channels li:last-child {
  margin-bottom: 0;
}

.how-channels li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.how-matrix .how-card__text,
.how-matrix .how-channels li {
  font-size: 0.88rem;
  line-height: 1.42;
}

.how-note {
  max-width: 42rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .how-matrix {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: none;
  }

  .how-mx {
    display: none;
  }

  .how-card {
    width: 100%;
  }
}

/* Pricing */
.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: min(100%, 420px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.pricing-card__lead {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  margin: 0.15rem 0 0.5rem;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.pricing-card ul {
  text-align: left;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* FAQ */
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  padding: 0 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
}

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

.faq-list details[open] summary {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.faq-list details p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, #0a6b78 0%, var(--brand) 50%, #14b8c4 100%);
  color: #fff;
  text-align: center;
  padding: 2.75rem 1rem;
  border-radius: var(--radius-lg);
  margin: 2rem auto;
  max-width: var(--max);
  width: calc(100% - 2rem);
  box-shadow: 0 12px 40px var(--brand-muted);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
  max-width: 42rem;
  margin-inline: auto;
}

.cta-band a {
  color: #fff;
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.cta-band a:hover {
  color: #f0fafb;
}

.cta-band a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--brand-hover);
  box-shadow: none;
}

.cta-band .btn--primary:hover {
  background: #f0fafb;
  color: #0a6b78;
}

/* Footer */
.site-footer {
  background: #1e222b;
  color: #c8cdd6;
  padding: 2.5rem 0 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: #e8f7f9;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: #8b939e;
}

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 10002;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-bar p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cookie-bar .btn--primary {
  width: 100%;
}

@media (min-width: 520px) {
  .cookie-bar {
    left: 1rem;
    right: auto;
    max-width: 400px;
  }

  .cookie-bar .btn--primary {
    width: auto;
  }
}

/*=========================
	Telegram
===========================*/
.telegram-button {
    position: fixed;
    right: 20px;
    bottom: 57px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 9999;
    background-color: #2CA5E0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23FFF' d='M23.91 3.79L20.3 20.84c-.25 1.21-.98 1.5-2 .94l-5.5-4.07-2.66 2.57c-.3.3-.55.56-1.1.56-.72 0-.6-.27-.84-.95L6.3 13.7l-5.45-1.7c-1.18-.35-1.19-1.16.26-1.75l21.26-8.2c.97-.43 1.9.24 1.53 1.73z'/%3e%3c/svg%3e");
    background-size: 50%; 
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.telegram-button:before,
.telegram-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 1px solid #2CA5E0;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: border-animate 1.5s linear infinite;
    opacity: 0;
}
.telegram-button:after{
    animation-delay: .5s;
}
@keyframes border-animate
{
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
/*=========================
	End Telegram
===========================*/