:root {
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-soft: #eef7fb;
  --text: #102033;
  --muted: #64748b;
  --line: #dbe7ef;
  --blue: #1769e0;
  --blue-dark: #0f4fb0;
  --cyan: #23b7c7;
  --green: #20b486;
  --gold: #f4b740;
  --shadow: 0 22px 60px rgba(15, 35, 65, .10);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(35, 183, 199, .14), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(23, 105, 224, .12), transparent 34%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 231, 239, .8);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(23, 105, 224, .22);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.06em;
}

.brand b {
  display: block;
  font-size: 18px;
  line-height: 1.05;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #40536a;
  font-weight: 650;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(23, 105, 224, .22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  box-shadow: 0 18px 42px rgba(23, 105, 224, .28);
}

.btn.secondary {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.green {
  background: var(--green);
  box-shadow: 0 14px 34px rgba(32, 180, 134, .22);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: #fff;
}

.burger span,
.burger span:before,
.burger span:after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: auto;
  content: "";
}

.burger span:before {
  transform: translateY(-7px);
}

.burger span:after {
  transform: translateY(5px);
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 14px 16px;
  margin: 8px 0;
  border-radius: 16px;
  background: #f4f8fb;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  padding: 74px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(35, 183, 199, .35);
  border-radius: 999px;
  background: rgba(35, 183, 199, .08);
  color: #087988;
  font-weight: 800;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}

.lead {
  margin: 24px 0 0;
  max-width: 690px;
  color: #42566f;
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #40536a;
  font-weight: 750;
  font-size: 13px;
}

.card-visual {
  position: relative;
  min-height: 520px;
}

.mock-card {
  position: absolute;
  inset: 60px 0 auto auto;
  width: min(100%, 500px);
  min-height: 310px;
  border-radius: 34px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.30), transparent 24%),
    linear-gradient(135deg, #132f63, #1769e0 48%, #23b7c7);
  box-shadow: 0 40px 90px rgba(23, 105, 224, .28);
  transform: rotate(-4deg);
}

.mock-card:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
}

.mock-card small {
  position: relative;
  z-index: 2;
  opacity: .82;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

.mock-card .chip {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 42px;
  margin-top: 62px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffe29b, #f4b740);
}

.mock-card .digits {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  font-size: 28px;
  letter-spacing: .14em;
  font-weight: 800;
}

.mock-card .bottom {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}

.float-card {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 260px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.float-card b {
  display: block;
  margin-bottom: 6px;
}

.float-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 54px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

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

.tile,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 35, 65, .05);
}

.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}

.tile h3,
.panel h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.tile p,
.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.6;
}

.compare-table {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  background: #eef7fb;
  color: #17324f;
  font-size: 15px;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 72px;
}

.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 26px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.faq-item b {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.seo-text {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  color: #34465c;
  line-height: 1.75;
  box-shadow: 0 12px 34px rgba(15, 35, 65, .05);
}

.seo-text h2 {
  color: var(--text);
  font-size: 34px;
}

.cta {
  border-radius: 36px;
  padding: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(135deg, #123a70, #1769e0 56%, #20b486);
  box-shadow: 0 30px 90px rgba(23,105,224,.22);
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255,255,255,.82);
}

.footer {
  margin-top: 54px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer b {
  color: var(--text);
}

.footer a {
  color: var(--blue);
  text-decoration: none;
}

.legal {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: #7b8ca1;
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-visual {
    min-height: 420px;
  }

  .mock-card {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
  }

  .float-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 18px;
    width: 100%;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-table table {
    min-width: 680px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 38px 0;
  }

  .tile,
  .panel,
  .seo-text,
  .cta {
    padding: 22px;
    border-radius: 22px;
  }
}

/* V2 INNER PAGES START */
.breadcrumbs {
  margin: 28px 0 0;
  color: #7b8ca1;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: #1769e0;
  text-decoration: none;
}

.page-hero {
  padding: 48px 0 34px;
}

.page-hero h1 {
  max-width: 900px;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.solution-item span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef7fb;
  color: var(--blue);
  font-weight: 900;
}

.solution-item b {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

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

.card-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(15, 35, 65, .06);
}

.catalog-card:before {
  content: "";
  display: block;
  height: 148px;
  margin: -4px -4px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.35), transparent 26%),
    linear-gradient(135deg, #123a70, #1769e0 55%, #23b7c7);
}

.catalog-card.gold:before {
  background: linear-gradient(135deg, #7a4c00, #f4b740 55%, #ffe29b);
}

.catalog-card.green:before {
  background: linear-gradient(135deg, #0f5f4b, #20b486 55%, #8af0d2);
}

.catalog-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.catalog-card p {
  color: var(--muted);
  line-height: 1.55;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badges span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f7fb;
  color: #40536a;
  font-size: 12px;
  font-weight: 800;
}

.notice {
  padding: 20px;
  border-radius: 22px;
  background: #fff8e8;
  border: 1px solid rgba(244, 183, 64, .45);
  color: #6b4a00;
  line-height: 1.65;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 940px) {
  .card-catalog,
  .contact-box {
    grid-template-columns: 1fr;
  }
}
/* V2 INNER PAGES END */

/* HOME SEO EXPANSION START */
.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-cloud a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: #334155;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(15, 35, 65, .04);
}

.service-cloud a:hover {
  color: var(--blue);
  border-color: rgba(23, 105, 224, .35);
}

.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 35, 65, .05);
}

.scenario-card .label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef7fb;
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}

.scenario-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.factor {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.factor b {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.factor p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.inline-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}

.inline-link:hover {
  text-decoration: underline;
}

.seo-text p + h3 {
  margin-top: 26px;
}

.seo-text h3 {
  color: var(--text);
  font-size: 24px;
  line-height: 1.2;
}

@media (max-width: 940px) {
  .factor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .factor-grid {
    grid-template-columns: 1fr;
  }
}
/* HOME SEO EXPANSION END */

/* CARDS CATALOG V1 START */
.cards-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.cards-toolbar span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #40536a;
  font-weight: 800;
  font-size: 13px;
}

.zk-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.zk-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(15, 35, 65, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.zk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 35, 65, .10);
}

.zk-card-visual {
  position: relative;
  height: 168px;
  border-radius: 24px;
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.30), transparent 28%),
    linear-gradient(135deg, #123a70, #1769e0 56%, #23b7c7);
  margin-bottom: 18px;
}

.zk-card.gold .zk-card-visual {
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.34), transparent 28%),
    linear-gradient(135deg, #5a3b08, #f4b740 55%, #ffe29b);
}

.zk-card.green .zk-card-visual {
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.30), transparent 28%),
    linear-gradient(135deg, #075346, #20b486 55%, #8af0d2);
}

.zk-card.dark .zk-card-visual {
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(135deg, #111827, #334155 54%, #1769e0);
}

.zk-card-chip {
  width: 44px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe29b, #f4b740);
}

.zk-card-country {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 20px;
  font-weight: 900;
}

.zk-card-type {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.zk-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

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

.zk-card-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px;
  border-radius: 18px;
  background: #f6f9fc;
}

.zk-card-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #475569;
  font-size: 14px;
}

.zk-card-meta b {
  color: var(--text);
}

.zk-card .btn {
  width: 100%;
  margin-top: 14px;
}

.card-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
  align-items: start;
}

.card-detail-side {
  position: sticky;
  top: 100px;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.detail-table td:first-child {
  color: var(--muted);
  padding-right: 18px;
}

.detail-table td:last-child {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .zk-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-detail-layout {
    grid-template-columns: 1fr;
  }

  .card-detail-side {
    position: static;
  }
}

@media (max-width: 560px) {
  .zk-card-grid {
    grid-template-columns: 1fr;
  }

  .zk-card-visual {
    height: 156px;
  }
}
/* CARDS CATALOG V1 END */

/* REAL CARD IMAGES START */
.zk-card-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  background: #eef7fb;
  border: 1px solid rgba(219, 231, 239, .9);
}

.zk-card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 760;
  object-fit: cover;
}

.card-detail-img-wrap {
  overflow: hidden;
  border-radius: 28px;
  background: #eef7fb;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(15, 35, 65, .08);
  margin-bottom: 18px;
}

.card-detail-img {
  display: block;
  width: 100%;
  height: auto;
}
/* REAL CARD IMAGES END */

/* CARD IMAGE SIZE FIX START */

/* В каталоге делаем изображения компактными */
.zk-card-img-wrap {
  height: 150px;
  margin-bottom: 16px;
  border-radius: 20px;
}

.zk-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* На детальной странице карта тоже не должна быть гигантской */
.card-detail-img-wrap {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
}

.card-detail-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Если изображение оказалось в основном контенте — тоже ограничиваем */
.seo-text .card-detail-img-wrap,
.container > .card-detail-img-wrap {
  max-width: 420px;
}

/* На мобильной версии чуть компактнее */
@media (max-width: 560px) {
  .zk-card-img-wrap {
    height: 132px;
    border-radius: 18px;
  }

  .card-detail-img-wrap {
    max-width: 100%;
    border-radius: 20px;
  }
}

/* CARD IMAGE SIZE FIX END */

/* SERVICES CATALOG V1 START */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(15, 35, 65, .06);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 35, 65, .10);
  border-color: rgba(23, 105, 224, .28);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #1769e0, #23b7c7);
  box-shadow: 0 14px 30px rgba(23, 105, 224, .18);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

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

.service-card .badges {
  margin-top: 18px;
}

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

.requirement {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.requirement span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #eef7fb;
  color: var(--blue);
  font-weight: 900;
}

.requirement b {
  display: block;
  margin-bottom: 5px;
}

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

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
/* SERVICES CATALOG V1 END */

/* REAL SERVICE LOGOS START */
.service-logo-wrap {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #f6f9fc;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(15, 35, 65, .06);
}

.service-logo-img {
  display: block;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.service-card .service-icon {
  display: none;
}
/* REAL SERVICE LOGOS END */

/* SERVICE DETAIL LOGO START */
.service-logo-detail {
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
}

.service-logo-detail .service-logo-img {
  max-width: 48px;
  max-height: 48px;
}
/* SERVICE DETAIL LOGO END */

/* CLICKABLE PREMIUM CARDS START */

/* Все карточки-ссылки */
a.zk-card,
a.service-card {
  color: inherit;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* Сервисные карточки делаем ближе к стилю красивого Steam-блока */
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 340px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 8%, rgba(23,105,224,.06), transparent 28%),
    #fff;
}

.service-card h3 {
  font-size: 30px;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}

.service-card p {
  font-size: 19px;
  line-height: 1.65;
  color: #64748b;
}

.service-logo-wrap {
  width: 112px;
  height: 112px;
  margin-bottom: 34px;
  border-radius: 34px;
  background: #f8fbff;
  border: 1px solid #dbe7ef;
  box-shadow: 0 18px 42px rgba(15, 35, 65, .07);
}

.service-logo-img {
  max-width: 62px;
  max-height: 62px;
}

.service-card .badges {
  margin-top: 26px;
}

.service-card .badges span,
.zk-card .badges span {
  transition: background .18s ease, color .18s ease;
}

/* Стрелка-клик по всей карточке */
.service-card::after,
.zk-card::after {
  content: "Подробнее →";
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

.service-card:hover::after,
.zk-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Карточки карт тоже делаем визуально как цельные кликабельные блоки */
.zk-card {
  min-height: 100%;
}

.zk-card h3 {
  font-size: 24px;
  letter-spacing: -.025em;
}

.zk-card p {
  font-size: 16px;
  line-height: 1.65;
}

/* Старую кнопку подробнее внутри карточки скрываем, если где-то осталась */
.zk-card > .btn.secondary {
  display: none;
}

/* Красивый hover */
.service-card:hover,
.zk-card:hover {
  border-color: rgba(23, 105, 224, .34);
}

.service-card:focus-visible,
.zk-card:focus-visible {
  outline: 3px solid rgba(23, 105, 224, .28);
  outline-offset: 4px;
}

/* Для планшета */
@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 310px;
  }
}

/* Для мобилки */
@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
    border-radius: 28px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card p {
    font-size: 18px;
  }

  .service-logo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    margin-bottom: 26px;
  }

  .service-logo-img {
    max-width: 54px;
    max-height: 54px;
  }
}

/* CLICKABLE PREMIUM CARDS END */

/* FINAL CARD LINK + STEAM FIX START */

/* Кликабельные карточки не должны выглядеть как обычные ссылки */
a.zk-card,
a.zk-card:link,
a.zk-card:visited,
a.zk-card:hover,
a.zk-card:active,
a.service-card,
a.service-card:link,
a.service-card:visited,
a.service-card:hover,
a.service-card:active {
  color: inherit !important;
  text-decoration: none !important;
}

a.zk-card *,
a.service-card * {
  text-decoration: none !important;
}

a.zk-card h3,
a.zk-card p,
a.zk-card dt,
a.zk-card dd,
a.zk-card .badges span,
a.service-card h3,
a.service-card p,
a.service-card .badges span {
  color: inherit !important;
  text-decoration: none !important;
}

/* Steam logo — делаем аккуратнее */
.service-card img[src*="steam"],
.service-logo-img[src*="steam"] {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transform: scale(1.35);
  transform-origin: center center;
}

/* Контейнер под Steam чуть мягче */
a[href*="/steam"] .service-logo-wrap,
.service-card[href*="/steam"] .service-logo-wrap {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  border: 1px solid #d6e2ef;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

/* Мобилка */
@media (max-width: 640px) {
  .service-card img[src*="steam"],
  .service-logo-img[src*="steam"] {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    transform: scale(1.28);
  }
}

/* FINAL CARD LINK + STEAM FIX END */

/* STEAM NEW LOGO FINAL OVERRIDE START */
.service-logo-img[src*="steam-new"] {
  width: 68px !important;
  height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  object-fit: contain !important;
  transform: none !important;
  margin: 0 auto !important;
}

.service-logo-wrap:has(.service-logo-img[src*="steam-new"]) {
  background: #f8fbff !important;
  border: 1px solid #dbe7ef !important;
}
/* STEAM NEW LOGO FINAL OVERRIDE END */

/* CARDS CATALOG CLEAN FIX START */
.zk-card-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

a.zk-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  padding: 18px !important;
  color: inherit !important;
  text-decoration: none !important;
}

a.zk-card *,
a.zk-card:hover * {
  text-decoration: none !important;
}

.zk-card-img-wrap {
  height: 150px !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  margin-bottom: 16px !important;
}

.zk-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.zk-card h3 {
  margin: 0 0 10px !important;
  color: #102033 !important;
  text-decoration: none !important;
}

.zk-card p {
  color: #64748b !important;
  text-decoration: none !important;
}

.zk-card-meta {
  margin-top: auto !important;
}

@media (max-width: 1120px) {
  .zk-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .zk-card-grid {
    grid-template-columns: 1fr !important;
  }
}
/* CARDS CATALOG CLEAN FIX END */

/* COMPARE PAGE V1 START */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.compare-choice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15, 35, 65, .05);
}

.compare-choice .label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef7fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.compare-choice h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.compare-choice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.full-compare-table {
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.full-compare-table table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.full-compare-table th,
.full-compare-table td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.full-compare-table th {
  background: #eef7fb;
  color: #17324f;
  font-size: 14px;
}

.full-compare-table td {
  color: #475569;
  line-height: 1.5;
}

.full-compare-table td b {
  color: var(--text);
}

.full-compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.compare-link:hover {
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .compare-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .compare-cards {
    grid-template-columns: 1fr;
  }
}
/* COMPARE PAGE V1 END */

/* VIRTUAL PLASTIC SEO PAGES START */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.use-case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15, 35, 65, .05);
}

.use-case span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef7fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.use-case h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.use-case p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.logic-box {
  background:
    radial-gradient(circle at 90% 12%, rgba(35,183,199,.12), transparent 30%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.logic-box h2 {
  margin-top: 0;
}

.logic-box p {
  color: #475569;
  line-height: 1.75;
}

@media (max-width: 940px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}
/* VIRTUAL PLASTIC SEO PAGES END */

/* FAQ PAGE V1 START */
.faq-category {
  margin-bottom: 42px;
}

.faq-category-title {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.faq-category-desc {
  margin: -6px 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.faq-nav a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #40536a;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
}

.faq-nav a:hover {
  color: var(--blue);
  border-color: rgba(23,105,224,.35);
}

.faq-item strong {
  color: var(--text);
}

.faq-item a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}
/* FAQ PAGE V1 END */

/* ABOUT CONTACTS V1 START */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 35, 65, .05);
}

.trust-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef7fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.trust-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-hero-box {
  background:
    radial-gradient(circle at 90% 12%, rgba(32,180,134,.14), transparent 32%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-hero-box h2 {
  margin-top: 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #f6f9fc;
  border: 1px solid var(--line);
}

.contact-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #eef7fb;
  color: var(--blue);
  font-weight: 900;
}

.contact-list b {
  display: block;
  margin-bottom: 4px;
}

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

.disclaimer-box {
  padding: 24px;
  border-radius: 28px;
  background: #fff8e8;
  border: 1px solid rgba(244, 183, 64, .45);
  color: #6b4a00;
  line-height: 1.7;
}

@media (max-width: 940px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* ABOUT CONTACTS V1 END */
