:root {
  --bg: #f6f8fb;
  --ink: #132033;
  --muted: #667085;
  --line: #d8e0ea;
  --panel: #ffffff;
  --soft: #edf3f8;
  --blue: #1f6fff;
  --cyan: #00a7c7;
  --green: #14956f;
  --coral: #e96f55;
  --yellow: #f4bd3b;
  --shadow: 0 22px 70px rgba(26, 39, 68, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  cursor: default;
}

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

button,
input,
textarea {
  font: inherit;
}

*:not(input):not(textarea) {
  caret-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(20px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid rgba(216, 224, 234, 0.8);
  background: rgba(246, 248, 251, 0.92);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-phone,
.secondary-button,
.primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  white-space: nowrap;
}

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

.header-phone,
.secondary-button {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
}

.header-phone {
  flex-shrink: 0;
  white-space: nowrap;
}

.primary-button {
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(31, 111, 255, 0.22);
}

.secondary-button {
  cursor: pointer;
}

.primary-button,
.secondary-button,
.portal-register-cta,
.load-more-button,
.service-action,
.inline-link,
.billing-option,
.icon-button,
.video-play-badge,
.header-phone,
.socials a,
.main-nav a {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.primary-button:hover,
.secondary-button:hover,
.portal-register-cta:hover,
.load-more-button:hover,
.service-action:hover,
.inline-link:hover,
.billing-option:hover,
.icon-button:hover,
.video-play-badge:hover,
.header-phone:hover,
.socials a:hover,
.main-nav a:hover {
  transform: translateY(-2px);
}

.primary-button:active,
.secondary-button:active,
.portal-register-cta:active,
.load-more-button:active,
.service-action:active,
.inline-link:active,
.billing-option:active,
.icon-button:active,
.video-play-badge:active,
.header-phone:active,
.socials a:active,
.main-nav a:active {
  transform: translateY(0);
}

.section,
.section-band,
.trust-strip,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section + .section {
  margin-top: 24px;
}

.section-band {
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: start;
  gap: 56px;
  min-height: 560px;
  margin-top: 24px;
  padding: 58px 64px 38px;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(36px, 4.6vw, 52px);
  line-height: 1.06;
}

.hero-copy > .eyebrow {
  display: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 26px;
}

.hero-logo-panel {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  align-content: start;
  justify-items: center;
  padding-top: 6px;
  place-items: center;
}

.hero-logo-panel::before {
  position: absolute;
  inset: -16px 28px auto;
  height: 250px;
  border: 1px solid rgba(160, 32, 240, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(160, 32, 240, 0.16), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(82, 224, 182, 0.12), transparent 42%);
  content: "";
}

.hero-logo-panel img {
  position: relative;
  width: min(250px, 72%);
  max-height: 250px;
  border-radius: 14px;
  object-fit: cover;
  transform: scale(1.08);
  filter: drop-shadow(0 22px 54px rgba(160, 32, 240, 0.28));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.hero-text,
.section-head p,
.insight-list,
.lead-section p,
.offer-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(360px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero-facts span {
  min-width: 0;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
  color: var(--muted);
  font-size: 15px;
}

.hero-facts strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.sales-pulse {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 24px;
  padding: 0;
}

.sales-pulse span {
  display: block;
  margin-bottom: 4px;
  color: #b9a9d6;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sales-pulse svg {
  display: block;
  width: 100%;
  height: 90px;
}

.pulse-line,
.pulse-line-shadow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-line-shadow {
  stroke: rgba(160, 32, 240, 0.2);
  stroke-width: 10;
  filter: blur(8px);
}

.pulse-line {
  stroke: url("#pulseGradient");
  stroke-width: 5;
  stroke-dasharray: 90 520;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 10px rgba(82, 224, 182, 0.42));
  animation: pulseRun 3.2s linear infinite;
}

.portal-preview {
  align-self: center;
  min-height: 460px;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.12), rgba(0, 167, 199, 0.08)),
    #fbfdff;
  overflow: hidden;
}

.preview-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.preview-top span:nth-child(2) {
  background: var(--yellow);
}

.preview-top span:nth-child(3) {
  background: var(--green);
}

.preview-grid {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 420px;
}

.preview-sidebar {
  background: #172338;
}

.preview-main {
  padding: 22px;
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-kpis b,
.preview-list i {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 180px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pipeline span {
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.preview-list {
  display: grid;
  gap: 10px;
}

.preview-list i {
  display: block;
  min-height: 26px;
  padding: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.tariff-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  padding: 46px;
}

.tariff-stage::before {
  position: absolute;
  inset: 0;
  border-left: 5px solid var(--stage-accent, #a020f0);
  content: "";
  pointer-events: none;
}

.tariff-stage::after {
  position: absolute;
  right: 34px;
  top: 32px;
  color: rgba(255, 255, 255, 0.055);
  content: var(--stage-number, "01");
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.tariff-stage .section-head {
  position: relative;
  z-index: 8;
  max-width: 860px;
}

.tariff-stage .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--stage-accent, #a020f0) 42%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--stage-accent, #a020f0) 14%, transparent);
  padding: 8px 12px;
  color: #fff;
}

.license-stage {
  --stage-accent: #1aa6b7;
  --stage-number: "01";
  background:
    radial-gradient(circle at 78% 12%, rgba(26, 166, 183, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(8, 35, 48, 0.78), rgba(9, 7, 17, 0.92) 62%, rgba(36, 16, 68, 0.48));
}

.implementation-stage {
  --stage-accent: #a020f0;
  --stage-number: "02";
  background:
    radial-gradient(circle at 18% 18%, rgba(160, 32, 240, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.82), rgba(9, 7, 17, 0.94) 58%, rgba(24, 14, 44, 0.72));
}

.support-stage {
  --stage-accent: #52e0b6;
  --stage-number: "03";
  background:
    radial-gradient(circle at 82% 18%, rgba(82, 224, 182, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(9, 7, 17, 0.94), rgba(12, 31, 48, 0.76) 58%, rgba(18, 46, 39, 0.56));
}

.tariff-stage + .tariff-stage {
  margin-top: 28px;
}

.prices-hero + .tariff-stage {
  margin-top: 64px;
}

.documents-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(160, 32, 240, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(160, 32, 240, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.045);
  padding: 26px;
}

.documents-strip h2 {
  margin: 4px 0 8px;
  font-size: clamp(26px, 3vw, 34px);
}

.documents-strip p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.portal-register-cta {
  position: relative;
  z-index: 4;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(82, 224, 182, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, #52e0b6, #1aa6b7);
  box-shadow: 0 18px 44px rgba(26, 166, 183, 0.24);
  padding: 0 18px;
  color: #07111a;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-register-cta:hover {
  box-shadow: 0 24px 60px rgba(26, 166, 183, 0.34);
  transform: translateY(-2px);
}

.hero-register-cta {
  width: 100%;
  margin-top: 18px;
}

.document-cta {
  min-width: 240px;
}

.service-grid,
.case-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cases-preview {
  width: min(1180px, calc(100% - 40px));
  border: 1px solid rgba(160, 32, 240, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(160, 32, 240, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.78), rgba(9, 7, 17, 0.9) 58%, rgba(11, 45, 58, 0.48));
  padding: 42px;
  box-shadow: var(--shadow);
}

.ai-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(160, 32, 240, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(160, 32, 240, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.88), rgba(9, 7, 17, 0.9) 58%, rgba(11, 45, 58, 0.58));
  padding: 42px;
  box-shadow: var(--shadow);
}

.ai-copy {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-copy p,
.ai-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ai-grid article {
  min-height: 220px;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.ai-grid span {
  display: grid;
  width: 54px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(160, 32, 240, 0.32), rgba(37, 86, 217, 0.24));
  color: #f6e7ff;
  font-weight: 900;
}

.inline-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(160, 32, 240, 0.65);
  color: #f1ddff;
  font-weight: 800;
}

.section-links {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 18px;
}

.prices-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  margin-top: 24px;
  padding: 56px;
  border: 1px solid rgba(160, 32, 240, 0.22);
  background:
    radial-gradient(circle at 82% 16%, rgba(26, 166, 183, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.94), rgba(9, 7, 17, 0.92) 58%, rgba(12, 31, 48, 0.82));
}

.prices-hero h1 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
}

.prices-hero p,
.price-note p,
.discount-price,
.license-card li,
.market-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.price-note {
  align-self: center;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.price-note strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
}

.price-note span {
  color: #f1ddff;
  font-weight: 800;
}

.license-slider {
  position: relative;
  z-index: 1;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -64px 0 18px;
  pointer-events: none;
}

.slider-controls .icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(26, 166, 183, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  font-size: 26px;
  font-weight: 900;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.slider-controls .icon-button:hover {
  border-color: rgba(82, 224, 182, 0.62);
  background: rgba(26, 166, 183, 0.18);
  transform: translateY(-2px);
}

.license-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.license-grid::-webkit-scrollbar {
  display: none;
}

.license-card {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(19, 11, 36, 0.84);
  padding: 20px;
}

.license-card.featured {
  border-color: rgba(160, 32, 240, 0.72);
  box-shadow: 0 22px 80px rgba(160, 32, 240, 0.2);
}

.license-card h3 {
  color: #fff;
  min-height: 72px;
  font-size: 22px;
  line-height: 1.12;
}

.license-price {
  margin: 18px 0 8px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.billing-switch {
  position: relative;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  margin-top: 16px;
  border: 1px solid rgba(160, 32, 240, 0.72);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.045);
  pointer-events: auto;
}

.billing-option {
  position: relative;
  z-index: 13;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  pointer-events: auto;
}

.billing-option.active {
  background: linear-gradient(135deg, #a020f0, #2556d9);
  box-shadow: 0 12px 28px rgba(160, 32, 240, 0.2);
}

.billing-option em {
  border-radius: 999px;
  background: #ff6948;
  padding: 3px 8px;
  color: #fff;
  font-style: normal;
}

.marketplace-switch .billing-option.active {
  background: linear-gradient(135deg, #1aa6b7, #a020f0);
}

.price-pair {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
}

.price-pair div {
  border: 1px solid rgba(185, 169, 214, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px;
}

.price-pair span,
.price-pair small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-pair strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
}

.license-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.license-card li {
  border-top: 1px solid rgba(185, 169, 214, 0.12);
  padding-top: 10px;
}

.marketplace-section {
  border: 1px solid rgba(160, 32, 240, 0.24);
  border-radius: 8px;
  background: rgba(19, 11, 36, 0.58);
  padding: 42px;
}

.license-marketplace {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.market-grid article {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.market-grid span,
.market-grid strong,
.market-grid small {
  display: block;
}

.market-grid span {
  color: #f1ddff;
  font-weight: 900;
}

.market-grid strong {
  margin: 14px 0 6px;
  color: #fff;
  font-size: 24px;
}

.hourly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hourly-card {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(19, 11, 36, 0.84);
  padding: 24px;
}

.hourly-card.featured {
  border-color: rgba(160, 32, 240, 0.72);
  box-shadow: 0 22px 80px rgba(160, 32, 240, 0.2);
}

.hourly-card h3 {
  min-height: 86px;
  color: #fff;
}

.hourly-card p,
.hourly-card li,
.scope-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.hourly-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.hourly-meta span {
  border: 1px solid rgba(185, 169, 214, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px;
  color: #fff;
  font-weight: 900;
}

.hourly-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.hourly-card li {
  border-top: 1px solid rgba(185, 169, 214, 0.12);
  padding-top: 8px;
}

.support-scope {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 42px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scope-grid article {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.scope-grid h3 {
  color: #fff;
}

.offer-document {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(19, 11, 36, 0.84);
  padding: 42px;
}

.offer-document h2,
.offer-document h3 {
  color: #fff;
}

.offer-document h3 {
  margin-top: 34px;
  font-size: 24px;
}

.offer-document p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.offer-document strong {
  color: #fff;
}

.contact-panel {
  display: grid;
  gap: 14px;
  align-self: center;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

.contact-panel a {
  color: #e8ddff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-card,
.case-card,
.price-card,
.admin-card,
.login-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card,
.case-card,
.price-card {
  padding: 24px;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-grid .price-card {
  display: flex;
  flex-direction: column;
}

.pricing-grid .price-card ul {
  flex: 1;
}

.pricing-grid .price-card .primary-button {
  align-self: flex-start;
  margin-top: auto;
}

.service-card {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  padding: 22px;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(160, 32, 240, 0.34);
  background:
    radial-gradient(circle at 28% 18%, rgba(82, 224, 182, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(160, 32, 240, 0.38), rgba(82, 224, 182, 0.08));
  color: #e8c6ff;
  font-weight: 900;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.18;
}

.service-card p,
.case-card p,
.price-card p,
.process-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  flex: 1;
}

.split-section,
.offer-section,
.lead-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: start;
}

.case-card {
  overflow: hidden;
  padding: 0;
}

.cases-preview .case-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cases-preview .case-card:hover {
  border-color: rgba(160, 32, 240, 0.58);
  box-shadow: 0 24px 80px rgba(160, 32, 240, 0.18);
  transform: translateY(-3px);
}

.case-card:target {
  border-color: rgba(160, 32, 240, 0.72);
  box-shadow: 0 26px 90px rgba(160, 32, 240, 0.22);
  scroll-margin-top: 110px;
}

.large-cases .case-card {
  min-height: 520px;
}

.large-cases .case-image {
  min-height: 230px;
}

.case-image {
  position: relative;
  min-height: 164px;
  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.92), rgba(20, 149, 111, 0.78)),
    var(--image, none) center / cover;
}

.case-card:nth-child(2) .case-image {
  background:
    linear-gradient(135deg, rgba(233, 111, 85, 0.9), rgba(31, 111, 255, 0.72)),
    var(--image, none) center / cover;
}

.case-card:nth-child(3) .case-image {
  background:
    linear-gradient(135deg, rgba(0, 167, 199, 0.88), rgba(244, 189, 59, 0.74)),
    var(--image, none) center / cover;
}

.case-card-hidden {
  display: none;
}

.case-load-hidden {
  display: none;
}

.certificate-load-hidden {
  display: none !important;
}

.load-more-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  border: 1px solid rgba(160, 32, 240, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(160, 32, 240, 0.22), rgba(37, 86, 217, 0.16)),
    rgba(255, 255, 255, 0.055);
  padding: 0 22px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(160, 32, 240, 0.12);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.load-more-button:hover {
  border-color: rgba(82, 224, 182, 0.68);
  background:
    linear-gradient(135deg, rgba(160, 32, 240, 0.32), rgba(26, 166, 183, 0.22)),
    rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.case-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.case-carousel-controls .icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(160, 32, 240, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
}

.case-carousel-dots {
  display: flex;
  gap: 8px;
}

.case-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(185, 169, 214, 0.42);
  cursor: pointer;
  padding: 0;
}

.case-carousel-dots button.active {
  width: 28px;
  background: linear-gradient(135deg, #a020f0, #1aa6b7);
}

.case-content {
  padding: 22px;
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(7, 5, 13, 0.62);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.video-play-badge:hover {
  border-color: rgba(82, 224, 182, 0.72);
  background: rgba(160, 32, 240, 0.74);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-case-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(160, 32, 240, 0.42);
  border-radius: 8px;
  background: rgba(160, 32, 240, 0.16);
  padding: 0 14px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.video-case-button::before {
  margin-right: 8px;
  content: "▶";
  font-size: 12px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.metric-row span,
.price-card li {
  border-radius: 8px;
  background: var(--soft);
  padding: 8px 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.price {
  margin: 12px 0 18px;
  font-size: 34px;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.process-modern {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(160, 32, 240, 0.18), transparent 36%),
    radial-gradient(circle at 88% 26%, rgba(82, 224, 182, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.52), rgba(8, 7, 20, 0.9) 62%, rgba(11, 45, 58, 0.36));
  padding: 46px;
}

.process-modern::before {
  content: "";
  position: absolute;
  top: 202px;
  right: 46px;
  left: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(160, 32, 240, 0.08), rgba(210, 108, 255, 0.58), rgba(82, 224, 182, 0.46), rgba(160, 32, 240, 0.08));
}

.process-modern .section-head {
  position: relative;
  z-index: 1;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  border: 1px solid rgba(185, 169, 214, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(13, 12, 27, 0.84);
  padding: 20px;
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-list li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(82, 224, 182, 0.72);
  border-radius: 999px;
  background: #090711;
  box-shadow: 0 0 24px rgba(82, 224, 182, 0.34);
}

.process-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 26px;
}

.process-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(210, 108, 255, 0.32);
  border-radius: 8px;
  background: rgba(160, 32, 240, 0.22);
  color: #f1ddff;
  font-weight: 900;
}

.process-list em {
  border: 1px solid rgba(82, 224, 182, 0.24);
  border-radius: 999px;
  background: rgba(82, 224, 182, 0.08);
  padding: 7px 10px;
  color: #52e0b6;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.process-list strong {
  display: block;
  min-height: 58px;
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
}

.process-list p {
  margin: 14px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.process-list small {
  display: block;
  margin-top: auto;
  border-top: 1px solid rgba(185, 169, 214, 0.14);
  padding-top: 16px;
  color: #f1ddff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.offer-section,
.lead-section {
  align-items: center;
  border-radius: 8px;
  background: #172338;
  color: #fff;
  padding: 42px;
}

.offer-section p,
.lead-section p {
  color: #c9d5e5;
}

.lead-form {
  display: grid;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 34px 0 48px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr) minmax(210px, 0.6fr);
  gap: 16px;
  border: 1px solid rgba(160, 32, 240, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(160, 32, 240, 0.18), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(82, 224, 182, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.82), rgba(9, 7, 17, 0.94) 62%, rgba(11, 45, 58, 0.52));
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.footer-brand-block,
.footer-contact-card,
.footer-social-card {
  border: 1px solid rgba(185, 169, 214, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.footer-brand-block strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.footer-brand-block span,
.footer-contact-card span,
.footer-social-card span {
  display: block;
  margin-bottom: 12px;
  color: #52e0b6;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand-block p {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-contact-card,
.footer-social-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact-card a {
  display: inline-flex;
  width: fit-content;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-contact-card a:hover,
.footer-bottom a:hover {
  color: #52e0b6;
}

.footer-contacts,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socials a,
.admin-link {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}

.socials a[data-social="whatsapp"] {
  border-color: rgba(37, 211, 102, 0.72);
  background: #25d366;
  color: #062413;
}

.socials a[data-social="telegram"] {
  border-color: rgba(42, 171, 238, 0.72);
  background: #2aabee;
  color: #041d2d;
}

.socials a[data-social="vk"] {
  border-color: rgba(0, 119, 255, 0.72);
  background: #0077ff;
  color: #fff;
}

.socials a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
  color: var(--muted);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.header-socials {
  flex-wrap: nowrap;
  gap: 6px;
}

.header-socials a {
  min-width: 40px;
  min-height: 40px;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: none;
}

.admin-link {
  padding: 0 14px;
  color: var(--ink);
}

.admin-body {
  background: #eef3f8;
}

.admin-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.login-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  margin: 8vh auto;
  padding: 34px;
  box-shadow: var(--shadow);
}

.login-panel h1,
.admin-top h1 {
  font-size: 42px;
}

.admin-form,
.admin-card {
  display: grid;
  gap: 14px;
}

.admin-panel {
  display: grid;
  gap: 20px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.admin-card {
  padding: 22px;
}

.wide-admin,
.save-bar {
  grid-column: 1 / -1;
}

.admin-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.repeat-editor {
  display: grid;
  gap: 12px;
}

.repeat-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfdff;
}

.repeat-item label:nth-child(3),
.repeat-item label:nth-child(4),
.repeat-item label:nth-child(5) {
  grid-column: span 3;
}

.save-bar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px;
  backdrop-filter: blur(18px);
}

.form-note {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100vw - 190px);
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .hero,
  .split-section,
  .offer-section,
  .lead-section,
  .documents-strip,
  .login-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 38px 24px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-facts {
    width: min(420px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .tariff-stage {
    padding: 34px 24px;
  }

  .tariff-stage::after {
    right: 20px;
    top: 22px;
    font-size: 78px;
  }

  .license-grid {
    display: flex;
  }

  .license-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .portal-preview {
    min-height: 360px;
  }

  .report-body {
    grid-template-columns: 1fr;
  }

  .sales-flow,
  .sales-dashboard {
    grid-template-columns: 1fr;
  }

  .sales-flow i {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .service-grid,
  .case-grid,
  .pain-grid,
  .pricing-grid,
  .service-detail-grid,
  .ai-section,
  .prices-hero,
  .market-grid,
  .hourly-grid,
  .support-scope,
  .scope-grid,
  .process-list,
  .admin-grid,
  .site-footer,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .ai-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-top,
  .save-bar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 12px;
  }

  .about-page .prices-hero {
    grid-template-columns: 1fr;
  }

  .about-page .partner-status-card {
    min-height: 0;
  }

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

  .main-nav a {
    padding: 0 12px;
    font-size: 15px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 760px) {
  .process-modern {
    padding: 30px 18px;
  }

  .prices-hero h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .partner-status-card {
    min-height: 220px;
    padding: 26px;
  }

  .about-page .prices-hero {
    gap: 24px;
    padding: 30px 18px;
  }

  .about-page .partner-status-card {
    align-self: auto;
    width: 100%;
    margin-top: 0;
  }

  .pain-section {
    padding: 28px 18px;
  }

  .pain-grid {
    gap: 12px;
  }

  .pain-grid article {
    min-width: 0;
    padding: 18px;
  }

  .pain-grid h3,
  .pain-grid p {
    overflow-wrap: anywhere;
  }

  .partner-stars {
    font-size: 28px;
  }

  .partner-gold-link {
    font-size: 21px;
  }

  .process-modern::before {
    display: none;
  }

  .process-list li {
    min-height: 0;
  }

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

  .main-nav {
    max-width: calc(100vw - 146px);
  }

  .main-nav a[href="/contacts"] {
    display: inline-flex;
  }

.mobile-contact-link {
  display: none;
}

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

  .main-nav {
    width: 100%;
    max-width: none;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .main-nav a {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12.5px;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .header-socials a {
    min-width: 34px;
    min-height: 34px;
    font-size: 11px;
  }

  .section,
  .section-band,
  .trust-strip,
  .site-footer,
  .offer-document {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    width: min(260px, 100%);
    justify-items: center;
    text-align: center;
  }

  .hero-facts span {
    width: 100%;
    border-top: 3px solid #a020f0;
    border-left: 0;
    padding-top: 10px;
    padding-left: 0;
  }
  }

  .tariff-stage {
    padding: 28px 18px;
  }

  .tariff-stage::after {
    opacity: 0.62;
    font-size: 58px;
  }

  .license-grid {
    display: flex;
  }

  .license-card {
    flex-basis: 100%;
  }

  .preview-grid {
    grid-template-columns: 58px 1fr;
  }

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

  .executive-report {
    gap: 14px;
    padding: 16px;
  }

  .report-head {
    align-items: flex-start;
  }

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

  .report-chart {
    min-height: 220px;
  }

  .sales-system {
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .sales-flow article {
    min-height: auto;
  }

  .pipeline {
    height: 128px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .repeat-item,
  .admin-three {
    grid-template-columns: 1fr;
  }

  .repeat-item label:nth-child(n) {
    grid-column: auto;
  }
}

/* Digital-Life dark brand theme */
:root {
  --bg: #07050d;
  --ink: #ffffff;
  --muted: #b9a9d6;
  --line: rgba(185, 169, 214, 0.18);
  --panel: rgba(19, 11, 36, 0.86);
  --soft: rgba(160, 32, 240, 0.12);
  --blue: #a020f0;
  --cyan: #1aa6b7;
  --green: #52e0b6;
  --coral: #d83bd2;
  --yellow: #6f5cff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

body {
  background:
    radial-gradient(circle at 18% 4%, rgba(160, 32, 240, 0.24), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(26, 166, 183, 0.16), transparent 32%),
    linear-gradient(180deg, #090711 0%, #07050d 48%, #0d0718 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(185, 169, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 169, 214, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.site-header {
  border-bottom-color: rgba(185, 169, 214, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(160, 32, 240, 0.16), transparent 36%),
    rgba(7, 5, 13, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 32, 240, 0.64), rgba(82, 224, 182, 0.42), transparent);
  opacity: 0.7;
}

.brand-mark {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(160, 32, 240, 0.36);
  background: #fff;
  box-shadow: 0 0 30px rgba(160, 32, 240, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
}

.brand strong,
.site-footer strong {
  color: #fff;
}

.brand small,
.main-nav a,
.service-card p,
.case-card p,
.price-card p,
.process-list p,
.site-footer p {
  color: var(--muted);
}

.main-nav {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(16, 9, 28, 0.72);
  padding: 5px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.main-nav a {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #cfc3e8;
  font-size: 15px;
  letter-spacing: 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a020f0, #52e0b6);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.header-phone,
.secondary-button,
.admin-link {
  border-color: rgba(160, 32, 240, 0.28);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.primary-button {
  background: linear-gradient(135deg, #a020f0 0%, #6a0dad 48%, #2556d9 100%);
  box-shadow: 0 16px 38px rgba(160, 32, 240, 0.32);
}

.primary-button:hover {
  box-shadow:
    0 22px 52px rgba(160, 32, 240, 0.42),
    0 0 0 1px rgba(82, 224, 182, 0.16) inset;
  filter: saturate(1.08);
}

.secondary-button:hover,
.header-phone:hover,
.main-nav a:hover {
  border-color: rgba(82, 224, 182, 0.42);
  background: rgba(82, 224, 182, 0.1);
  color: #fff;
  box-shadow: 0 14px 34px rgba(82, 224, 182, 0.08);
}

.main-nav a:hover {
  transform: none;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  border: 1px solid rgba(185, 169, 214, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(16, 9, 28, 0.62);
  padding: 5px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-phone {
  min-height: 40px;
  border-color: rgba(160, 32, 240, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(160, 32, 240, 0.18), rgba(82, 224, 182, 0.06)),
    rgba(255, 255, 255, 0.055);
  color: #fff;
}

.inline-link:hover {
  border-bottom-color: rgba(82, 224, 182, 0.86);
  color: #52e0b6;
}

.billing-option:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #52e0b6;
}

.billing-option.active:hover {
  color: #fff;
  box-shadow: 0 16px 34px rgba(160, 32, 240, 0.28);
}

.section-band,
.service-card,
.case-card,
.price-card,
.admin-card,
.login-panel {
  border-color: rgba(185, 169, 214, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(19, 11, 36, 0.84);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.hero {
  position: relative;
  border: 1px solid rgba(160, 32, 240, 0.22);
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.94), rgba(9, 7, 17, 0.92) 56%, rgba(12, 31, 48, 0.82)),
    rgba(9, 7, 17, 0.95);
}

.hero::after {
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(160, 32, 240, 0.28);
  border-radius: 50%;
  content: "";
  box-shadow:
    inset 0 0 0 42px rgba(255, 255, 255, 0.025),
    inset 0 0 0 86px rgba(160, 32, 240, 0.06),
    0 0 80px rgba(26, 166, 183, 0.16);
}

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

.hero-text,
.section-head p,
.insight-list,
.lead-section p,
.offer-section p {
  color: var(--muted);
}

.eyebrow {
  color: #d26cff;
}

body:not(.admin-body) h1,
body:not(.admin-body) h2 {
  color: #fff;
}

.hero-facts span {
  border-left-color: #a020f0;
  color: var(--muted);
}

.hero-facts strong,
.service-card h3,
.case-card h3,
.price-card h3,
.process-list strong,
.price {
  color: #fff;
}

.portal-preview {
  position: relative;
  border-color: rgba(185, 169, 214, 0.2);
  background:
    linear-gradient(135deg, rgba(160, 32, 240, 0.16), rgba(26, 166, 183, 0.1)),
    rgba(8, 7, 20, 0.72);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.floating-leads {
  position: absolute;
  inset: 16px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.floating-leads::before,
.floating-leads::after {
  position: absolute;
  border: 1px solid rgba(82, 224, 182, 0.24);
  content: "";
  opacity: 0.78;
}

.floating-leads::before {
  left: 84px;
  top: 104px;
  width: 270px;
  transform: rotate(8deg);
  animation: signalLine 4.8s ease-in-out infinite;
}

.floating-leads::after {
  right: 86px;
  bottom: 102px;
  width: 220px;
  transform: rotate(-12deg);
  animation: signalLine 4.8s ease-in-out infinite reverse;
}

.floating-leads span {
  position: absolute;
  display: inline-flex;
  width: 52px;
  height: 38px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(185, 169, 214, 0.22);
  border-radius: 999px;
  background: rgba(19, 11, 36, 0.78);
  padding: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  animation: floatLead 6s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.floating-leads span::before {
  position: absolute;
  left: 7px;
  top: 7px;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52e0b6;
  content: "";
  box-shadow: 0 0 18px rgba(82, 224, 182, 0.7);
}

.floating-leads span:nth-child(1) {
  left: 24px;
  top: 94px;
}

.floating-leads span:nth-child(2) {
  right: 52px;
  top: 198px;
  animation-delay: -2s;
}

.floating-leads span:nth-child(3) {
  left: 72px;
  bottom: 72px;
  animation-delay: -4s;
}

.preview-orbit {
  position: absolute;
  right: -72px;
  top: 90px;
  width: 260px;
  height: 260px;
  border: 16px solid rgba(160, 32, 240, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 22px rgba(255, 255, 255, 0.03),
    0 0 70px rgba(160, 32, 240, 0.2);
}

.preview-sidebar {
  background: linear-gradient(180deg, #241044, #0e0819);
}

.preview-kpis b,
.pipeline,
.preview-list i,
.trust-strip span,
.lead-form,
input,
textarea {
  border-color: rgba(185, 169, 214, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.pipeline span {
  background: linear-gradient(180deg, #d83bd2, #6f5cff 62%, #1aa6b7);
  box-shadow: 0 0 22px rgba(160, 32, 240, 0.24);
  animation: pipelineMove 3.8s ease-in-out infinite;
}

.pipeline span:nth-child(2) {
  animation-delay: -0.7s;
}

.pipeline span:nth-child(3) {
  animation-delay: -1.4s;
}

.pipeline span:nth-child(4) {
  animation-delay: -2.1s;
}

.pipeline span:nth-child(5) {
  animation-delay: -2.8s;
}

.executive-report {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 520px;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(160, 32, 240, 0.34);
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 59, 210, 0.28), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(26, 166, 183, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(21, 9, 40, 0.96), rgba(8, 7, 20, 0.94) 58%, rgba(10, 33, 45, 0.82));
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
}

.report-glow {
  position: absolute;
  inset: auto -120px -170px auto;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(160, 32, 240, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 32, 240, 0.22), transparent 62%);
  animation: reportGlow 6s ease-in-out infinite;
}

.report-head,
.report-kpis,
.report-body,
.report-feed {
  position: relative;
  z-index: 1;
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.report-head span,
.report-kpis span,
.request-panel > span,
.chart-head span {
  display: block;
  color: #b9a9d6;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-head strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.08;
}

.report-head em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(82, 224, 182, 0.35);
  border-radius: 999px;
  background: rgba(82, 224, 182, 0.1);
  padding: 8px 12px;
  color: #52e0b6;
  font-style: normal;
  font-weight: 900;
}

.report-head em::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52e0b6;
  box-shadow: 0 0 0 0 rgba(82, 224, 182, 0.55);
  content: "";
  animation: livePulse 1.8s ease-out infinite;
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.report-kpis article,
.report-chart,
.request-panel,
.report-feed {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.report-kpis article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
}

.report-kpis strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
}

.report-kpis small {
  color: #d6c9eb;
  font-size: 12px;
  line-height: 1.35;
}

.report-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr);
  gap: 12px;
}

.report-chart {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 18px;
}

.chart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.chart-head strong {
  color: #52e0b6;
  font-size: 30px;
}

.chart-bars {
  position: absolute;
  inset: 76px 18px 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
}

.chart-bars i {
  display: block;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #d83bd2, #8d4cff 52%, #1aa6b7);
  box-shadow: 0 0 26px rgba(160, 32, 240, 0.28);
  animation: barPulse 4s ease-in-out infinite;
  transform-origin: bottom;
}

.chart-bars i:nth-child(2) {
  animation-delay: -0.5s;
}

.chart-bars i:nth-child(3) {
  animation-delay: -1s;
}

.chart-bars i:nth-child(4) {
  animation-delay: -1.5s;
}

.chart-bars i:nth-child(5) {
  animation-delay: -2s;
}

.chart-bars i:nth-child(6) {
  animation-delay: -2.5s;
}

.profit-line {
  position: absolute;
  left: 24px;
  right: 18px;
  bottom: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #52e0b6, #d83bd2, transparent);
  filter: drop-shadow(0 0 10px rgba(82, 224, 182, 0.42));
  transform: rotate(-8deg);
  animation: lineScan 4.8s ease-in-out infinite;
}

.request-panel {
  padding: 18px;
}

.request-panel ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.request-panel li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(185, 169, 214, 0.12);
  padding-bottom: 10px;
}

.request-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.request-panel b {
  color: #fff;
  font-size: 14px;
}

.request-panel em {
  border-radius: 999px;
  background: rgba(160, 32, 240, 0.18);
  padding: 5px 8px;
  color: #f1ddff;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
}

.report-feed {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
}

.report-feed span {
  flex: 0 0 auto;
  border: 1px solid rgba(82, 224, 182, 0.2);
  border-radius: 999px;
  background: rgba(82, 224, 182, 0.09);
  padding: 8px 12px;
  color: #dffdf5;
  font-size: 13px;
  font-weight: 800;
  animation: feedMove 9s linear infinite;
}

.sales-system {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 520px;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(160, 32, 240, 0.34);
  background:
    radial-gradient(circle at 78% 12%, rgba(216, 59, 210, 0.22), transparent 34%),
    radial-gradient(circle at 18% 92%, rgba(26, 166, 183, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(21, 9, 40, 0.96), rgba(8, 7, 20, 0.94) 56%, rgba(10, 33, 45, 0.82));
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
}

.sales-glow {
  position: absolute;
  inset: auto -120px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 32, 240, 0.24), transparent 62%);
  animation: reportGlow 6s ease-in-out infinite;
}

.sales-head,
.sales-flow,
.sales-dashboard {
  position: relative;
  z-index: 1;
}

.sales-head span {
  color: #52e0b6;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
}

.sales-head strong {
  display: block;
  max-width: 560px;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 600;
  line-height: 1.24;
}

.sales-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.sales-flow article {
  min-width: 0;
  min-height: 118px;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.sales-flow span {
  color: #d26cff;
  font-size: 12px;
  font-weight: 900;
}

.sales-flow strong {
  display: block;
  margin: 12px 0 8px;
  color: #fff;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.sales-flow small {
  color: #d6c9eb;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.sales-flow i {
  display: none;
}

.sales-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sales-dashboard div {
  border: 1px solid rgba(82, 224, 182, 0.18);
  border-radius: 8px;
  background: rgba(82, 224, 182, 0.08);
  padding: 14px;
}

.sales-dashboard span {
  display: block;
  color: #b9a9d6;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sales-dashboard strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.service-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 20px;
  border: 1px solid rgba(82, 224, 182, 0.32);
  border-radius: 8px;
  background: rgba(82, 224, 182, 0.1);
  padding: 0 12px;
  color: #dffdf5;
  cursor: pointer;
  font-weight: 900;
}

.service-action:hover {
  background: rgba(82, 224, 182, 0.16);
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
}

.report-modal.is-open {
  display: grid;
}

.report-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border: 1px solid rgba(160, 32, 240, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.98), rgba(9, 7, 17, 0.98) 62%, rgba(11, 45, 58, 0.88));
  padding: 24px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.56);
}

.report-modal-panel .modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.report-modal-panel .modal-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.report-modal-panel .modal-head .icon-button {
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid rgba(160, 32, 240, 0.42);
  background:
    radial-gradient(circle at 32% 20%, rgba(82, 224, 182, 0.2), transparent 38%),
    rgba(160, 32, 240, 0.14);
  color: #f1ddff;
  cursor: pointer;
  font-size: 24px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.report-modal-panel .modal-head .icon-button:hover {
  border-color: rgba(82, 224, 182, 0.72);
  background: rgba(82, 224, 182, 0.14);
  color: #52e0b6;
  transform: translateY(-1px);
}

.service-detail-panel {
  width: min(860px, 100%);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: 22px;
}

.service-detail-lead {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.service-detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  border: 1px solid rgba(185, 169, 214, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 13px 14px 13px 38px;
  color: #fff;
  line-height: 1.42;
}

.service-detail-list li::before {
  position: absolute;
  left: 14px;
  top: 17px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #52e0b6;
  content: "";
  box-shadow: 0 0 16px rgba(82, 224, 182, 0.62);
}

.service-detail-result {
  border: 1px solid rgba(82, 224, 182, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 14%, rgba(82, 224, 182, 0.14), transparent 42%),
    rgba(82, 224, 182, 0.08);
  padding: 20px;
}

.service-detail-result span {
  display: block;
  margin-bottom: 12px;
  color: #52e0b6;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail-result p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.48;
}

.report-preview-modal {
  min-height: 0;
}

.partner-profile-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.partner-profile-link:hover {
  color: #d26cff;
}

.partner-status-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-color: rgba(255, 214, 107, 0.34);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 214, 107, 0.16), transparent 34%),
    radial-gradient(circle at 92% 86%, rgba(82, 224, 182, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(45, 25, 62, 0.92), rgba(15, 10, 26, 0.92));
  padding: 34px;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 214, 107, 0.08) inset;
}

.partner-status-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 216, 106, 0.2), transparent 34%, rgba(255, 190, 76, 0.12));
  opacity: 0.72;
}

.partner-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  color: #ffd66b;
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(255, 214, 107, 0.48),
    0 0 40px rgba(255, 172, 64, 0.26);
}

.partner-gold-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  background: linear-gradient(135deg, #fff4b4 0%, #ffd66b 34%, #c98a2a 66%, #fff0a0 100%);
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.18;
  text-decoration: none;
  text-shadow: 0 0 26px rgba(255, 190, 76, 0.16);
}

.partner-gold-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 107, 0.9), transparent);
  transform: scaleX(0.72);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.partner-profile-link.partner-gold-link:hover {
  color: transparent;
  filter: brightness(1.13);
  transform: translateY(-1px);
}

.partner-profile-link.partner-gold-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-page .prices-hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.58fr);
  align-items: stretch;
}

.about-page .partner-status-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1120px) {
  .about-page .prices-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-page .partner-status-card {
    align-self: auto;
    justify-content: flex-start;
    min-height: 0;
    padding: 30px;
  }

  .about-page .prices-hero h1 {
    max-width: 760px;
    color: #fff;
  }
}

.about-page .partner-status-card p {
  position: relative;
  z-index: 1;
  margin: 20px 0 22px;
  font-size: 17px;
}

.about-page .partner-status-card > span {
  position: relative;
  z-index: 1;
}

.trust-strip {
  border-color: rgba(185, 169, 214, 0.16);
  background: rgba(185, 169, 214, 0.16);
}

.metric-row span,
.price-card li {
  background: rgba(160, 32, 240, 0.14);
  color: #f1ddff;
}

.pain-section {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.62), rgba(9, 7, 17, 0.88) 62%, rgba(11, 45, 58, 0.38));
  padding: 42px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-grid article {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.pain-grid span {
  color: #d26cff;
  font-weight: 900;
}

.pain-grid h3 {
  color: #fff;
}

.pain-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.mini-character {
  position: relative;
  width: 54px;
  height: 62px;
  margin-bottom: 18px;
}

.mini-character i,
.mini-character b {
  position: absolute;
  display: block;
  content: "";
}

.mini-character i {
  left: 15px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d83bd2, #1aa6b7);
  animation: characterPulse 3.8s ease-in-out infinite;
}

.mini-character b {
  left: 6px;
  bottom: 0;
  width: 42px;
  height: 34px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(135deg, rgba(160, 32, 240, 0.72), rgba(37, 86, 217, 0.58));
}

.pain-grid article:nth-child(2) .mini-character i,
.pain-grid article:nth-child(2) .mini-character b {
  animation-delay: -1.2s;
}

.pain-grid article:nth-child(3) .mini-character i,
.pain-grid article:nth-child(3) .mini-character b {
  animation-delay: -2.4s;
}

.chat-automation {
  display: grid;
  align-content: center;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(160, 32, 240, 0.12), rgba(26, 166, 183, 0.1)),
    rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.chat-window {
  display: grid;
  gap: 12px;
}

.chat-message {
  max-width: 88%;
  border: 1px solid rgba(185, 169, 214, 0.18);
  border-radius: 8px;
  background: rgba(7, 5, 13, 0.42);
  padding: 13px 14px;
  color: #fff;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: chatMessage 8s ease-in-out infinite;
}

.chat-message.bot {
  justify-self: end;
  background: rgba(160, 32, 240, 0.18);
  animation-delay: 1.4s;
}

.chat-message.crm {
  max-width: 100%;
  background: rgba(82, 224, 182, 0.1);
  color: #dffcf4;
  font-weight: 800;
  animation-delay: 2.8s;
}

@keyframes floatLead {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes signalLine {
  0%,
  100% {
    opacity: 0.2;
    filter: drop-shadow(0 0 0 rgba(82, 224, 182, 0));
  }

  50% {
    opacity: 0.82;
    filter: drop-shadow(0 0 14px rgba(82, 224, 182, 0.34));
  }
}

@keyframes pipelineMove {
  0%,
  100% {
    filter: brightness(1);
    transform: scaleY(1);
    transform-origin: bottom;
  }

  50% {
    filter: brightness(1.16);
    transform: scaleY(1.08);
  }
}

@keyframes characterPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.04);
  }
}

@keyframes chatMessage {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  12%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }

  90%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(82, 224, 182, 0.55);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(82, 224, 182, 0);
  }
}

@keyframes barPulse {
  0%,
  100% {
    filter: brightness(1);
    transform: scaleY(1);
  }

  50% {
    filter: brightness(1.18);
    transform: scaleY(1.07);
  }
}

@keyframes lineScan {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-8px) rotate(-8deg);
  }

  50% {
    opacity: 1;
    transform: translateX(14px) rotate(-8deg);
  }
}

@keyframes feedMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-72px);
  }
}

@keyframes reportGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

@keyframes pulseRun {
  0% {
    stroke-dashoffset: 610;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.case-image {
  background:
    linear-gradient(135deg, rgba(160, 32, 240, 0.92), rgba(26, 166, 183, 0.62)),
    var(--image, none) center / cover;
}

.case-card:nth-child(2) .case-image {
  background:
    linear-gradient(135deg, rgba(106, 13, 173, 0.92), rgba(37, 86, 217, 0.7)),
    var(--image, none) center / cover;
}

.case-card:nth-child(3) .case-image {
  background:
    linear-gradient(135deg, rgba(216, 59, 210, 0.82), rgba(26, 166, 183, 0.7)),
    var(--image, none) center / cover;
}

.price-card.featured {
  border-color: rgba(160, 32, 240, 0.62);
  box-shadow: 0 22px 80px rgba(160, 32, 240, 0.2);
}

.offer-section,
.lead-section {
  border: 1px solid rgba(160, 32, 240, 0.24);
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.96), rgba(9, 7, 17, 0.92) 58%, rgba(11, 45, 58, 0.72));
}

.lead-form {
  background: rgba(255, 255, 255, 0.07);
}

.admin-body {
  background:
    radial-gradient(circle at 20% 0%, rgba(160, 32, 240, 0.26), transparent 34%),
    #07050d;
}

.save-bar {
  border-color: rgba(185, 169, 214, 0.18);
  background: rgba(19, 11, 36, 0.92);
}

.repeat-item {
  border-color: rgba(185, 169, 214, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

body {
  cursor: default;
}

*:not(input):not(textarea) {
  caret-color: transparent;
}

body:not(.admin-body) .admin-link {
  display: none !important;
}

.contacts-page .prices-hero h1 {
  max-width: 640px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
}

.contacts-page .lead-section,
.offer-page .offer-document {
  margin-top: 34px;
}

.about-page .about-proof {
  margin-top: 34px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.lead-modal:target,
.lead-modal.is-open {
  display: grid;
}

.video-case-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 20px;
}

.video-case-modal.is-open {
  display: grid;
}

.video-case-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 9, 0.78);
  backdrop-filter: blur(14px);
}

.video-case-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(980px, 100%);
  gap: 16px;
  border: 1px solid rgba(160, 32, 240, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #130b24;
  padding: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.video-case-panel .modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.video-case-panel .modal-head .icon-button {
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid rgba(160, 32, 240, 0.42);
  background:
    radial-gradient(circle at 32% 20%, rgba(82, 224, 182, 0.2), transparent 38%),
    rgba(160, 32, 240, 0.14);
  color: #f1ddff;
  cursor: pointer;
  font-size: 24px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.video-case-panel .modal-head .icon-button:hover {
  border-color: rgba(82, 224, 182, 0.72);
  background: rgba(82, 224, 182, 0.14);
  color: #52e0b6;
  transform: translateY(-1px);
}

.video-case-panel h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: #050309;
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  background: #050309;
}

.video-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(160, 32, 240, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.92), rgba(7, 5, 13, 0.96));
  text-align: center;
}

.video-loading::before {
  justify-self: center;
  width: 54px;
  height: 54px;
  border: 3px solid rgba(185, 169, 214, 0.18);
  border-top-color: #52e0b6;
  border-radius: 50%;
  content: "";
  animation: loaderSpin 0.9s linear infinite;
}

.video-loading strong,
.video-loading p {
  margin: 0;
}

.video-loading strong {
  color: #fff;
}

.video-loading p {
  color: var(--muted);
}

.video-fallback {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: 360px;
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(7, 5, 13, 0.78);
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.video-fallback-centered {
  inset: 50% auto auto 50%;
  width: min(520px, calc(100% - 32px));
  max-width: none;
  text-align: center;
  transform: translate(-50%, -50%);
}

.video-fallback strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 9, 0.72);
  backdrop-filter: blur(14px);
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(520px, 100%);
  gap: 14px;
  border: 1px solid rgba(160, 32, 240, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #130b24;
  padding: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.lead-modal-panel .modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lead-modal-panel .modal-head .icon-button {
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid rgba(160, 32, 240, 0.42);
  background:
    radial-gradient(circle at 32% 20%, rgba(82, 224, 182, 0.2), transparent 38%),
    rgba(160, 32, 240, 0.14);
  color: #f1ddff;
  cursor: pointer;
  font-size: 24px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lead-modal-panel .modal-head .icon-button:hover {
  border-color: rgba(82, 224, 182, 0.72);
  background: rgba(82, 224, 182, 0.14);
  color: #52e0b6;
  transform: translateY(-1px);
}

.lead-modal-panel h2 {
  font-size: 34px;
}

.modal-open {
  overflow: hidden;
}

.form-success {
  margin: 4px 0 0;
  border: 1px solid rgba(82, 224, 182, 0.34);
  border-radius: 8px;
  background: rgba(82, 224, 182, 0.1);
  padding: 12px 14px;
  color: #dffcf4;
  font-weight: 800;
  line-height: 1.45;
}

.about-proof {
  border: 1px solid rgba(160, 32, 240, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(160, 32, 240, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(36, 16, 68, 0.78), rgba(9, 7, 17, 0.9) 58%, rgba(11, 45, 58, 0.48));
  padding: 42px;
  box-shadow: var(--shadow);
}

.partner-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.partner-card > div,
.certificate-preview,
.cert-grid article {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

.partner-card h3,
.cert-grid strong,
.certificate-preview strong {
  color: #fff;
}

.partner-card p,
.certificate-preview small {
  color: var(--muted);
  line-height: 1.58;
}

.certificate-preview {
  display: grid;
  align-content: center;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(160, 32, 240, 0.18), rgba(26, 166, 183, 0.16)),
    rgba(255, 255, 255, 0.055);
}

.certificate-preview span,
.cert-grid span {
  color: #d26cff;
  font-weight: 900;
}

.certificate-preview strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.1;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cert-grid article {
  min-height: 150px;
}

.featured-certificate {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.featured-certificate-copy,
.certificate-main-image,
.cert-grid a {
  border: 1px solid rgba(185, 169, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.featured-certificate-copy {
  display: grid;
  align-content: center;
  padding: 28px;
}

.featured-certificate-copy h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}

.featured-certificate-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.certificate-main-image {
  display: block;
  overflow: hidden;
  padding: 12px;
}

.certificate-main-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  border-radius: 6px;
  object-fit: contain;
  background: #0d0d0f;
}

.cert-grid a {
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: hidden;
  padding: 12px;
}

.cert-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  background: #0d0d0f;
}

.cert-grid strong {
  padding: 0 4px 4px;
  font-size: 15px;
  line-height: 1.28;
}

.main-nav {
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.case-image-video.has-video-preview {
  background:
    linear-gradient(135deg, rgba(22, 8, 42, 0.54), rgba(7, 5, 13, 0.34)),
    var(--image, none) center / cover;
}

.scroll-top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(160, 32, 240, 0.52);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 18%, rgba(82, 224, 182, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(160, 32, 240, 0.92), rgba(37, 86, 217, 0.82));
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  border-color: rgba(82, 224, 182, 0.72);
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .partner-card,
  .featured-certificate,
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
