/* =========================================================
   01. ROOT / TOKENS
========================================================= */
:root {
  --color-white: #ffffff;
  --color-page: #f7f9fc;
  --color-bg-muted: #f1f6fa;
  --color-bg-blue: #f0f9ff;

  --color-text-main: #2a2f36;
  --color-text-dark: #2a2f36;
  --color-text-muted: #9497a1;
  --color-text-soft: #6e7480;

  --color-blue: #185cff;
  --color-blue-hover: #124ee0;
  --color-line: #e9edf5;

  --container: 1110px;

  --radius-btn: 0.5rem;
  --radius-card: 1.5rem;
  --radius-md: 1.125rem;
  --radius-sm: 0.75rem;

  --shadow-soft: 0 1rem 3.125rem rgba(41, 45, 51, 0.08);
  --shadow-btn: 0 0.75rem 1.875rem rgba(24, 92, 255, 0.18);

  --border-soft: 1px solid rgba(41, 45, 51, 0.08);
  --transition: 0.25s ease;
}

/* =========================================================
   02. RESET / BASE
========================================================= */
.public-site__main {
  padding-top: 0;
}

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

.page--home {
  color: var(--color-text-main);
  background: var(--color-page);
}

.page--home img {
  max-width: 100%;
  display: block;
}

.page--home a {
  color: inherit;
  text-decoration: none;
}

.page--home button,
.page--home input,
.page--home textarea {
  font: inherit;
}

.public-home .container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* =========================================================
   03. TYPOGRAPHY
========================================================= */
.page--home h1,
.page--home h2,
.page--home h3,
.site-header h1,
.site-header h2,
.site-header h3,
.site-footer h1,
.site-footer h2,
.site-footer h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--color-text-dark);
}

.page--home h1,
.page--home h2 {
  line-height: 1.2;
  font-size: clamp(2rem, 4vw, 2.875rem);
}

.page--home p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 1rem;
}

/* =========================================================
   04. SECTIONS / LAYOUT
========================================================= */
.page--home .section {
  padding: 6.875rem 0;
}

.page--home .section--hero {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--color-page);
}

.page--home .section--muted {
  background: var(--color-bg-muted);
}

.page--home .section--blue {
  background: var(--color-bg-blue);
}

.page--home .section-heading {
  max-width: 45.625rem;
  margin: 0 auto 3.5rem;
}

.page--home .section-heading--center {
  text-align: center;
}

.page--home .section-heading p,
.page--home .feature__content p,
.page--home .hero__text p {
  font-size: 1.25rem;
}

/* =========================================================
   05. BUTTONS
========================================================= */
.page--home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.375rem;
  padding: 0 2.125rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.page--home .btn:hover {
  transform: translateY(-1px);
}

.page--home .btn--primary {
  background: var(--color-blue);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

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

.page--home .btn--primary,
.page--home .btn--primary span,
.page--home .hero__note-icon,
.page--home .contact-cta__check {
  color: #fff;
}

.site-header .btn--header {
  min-height: 2.625rem;
  padding: 0 1.125rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  box-shadow: none;
}

.site-header .btn--header-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .btn--header-icon {
  width: 1rem;
  height: 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.4375rem;
  line-height: 1;
}

/* =========================================================
   06. HEADER
========================================================= */
.site-header {
  background: #fff;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.25rem;
  height: 1.25rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.site-header__inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.site-header__logo {
  flex: 0 0 auto;
}

.site-header__logo .site-logo__mark {
  height: 3.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav a {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 600;
  color: #8e949f;
  text-decoration: none !important;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-text-main);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__icon-link {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-text-main);
  background: #fff;
  border: 1px solid rgba(42, 47, 54, 0.08);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.site-header__icon-link:hover,
.site-header__icon-link:focus {
  color: var(--color-blue);
  border-color: rgba(24, 92, 255, 0.25);
}

.site-header__icon-link--button {
  cursor: pointer;
}

.site-header__icon-link::after {
  display: none;
}

.site-header__icon-link i {
  font-size: 1rem;
  line-height: 1;
}

.site-header__user-menu .dropdown-menu {
  min-width: 12rem;
  margin-top: 0.125rem;
  border: 1px solid rgba(42, 47, 54, 0.08);
  border-radius: 0.875rem;
  box-shadow: 0 1rem 2.5rem rgba(42, 47, 54, 0.12);
}

.site-header__user-menu:hover .dropdown-menu {
  display: block;
}

.site-header__user-menu .dropdown-item,
.site-header__user-menu .dropdown-item-text {
  font-size: 0.875rem;
}

.site-header__user-menu .dropdown-item-text {
  color: var(--color-text-soft);
}

/* =========================================================
   07. HERO
========================================================= */
.page--home .hero {
  background: var(--color-page);
}

.page--home .hero__grid {
  display: grid;
  grid-template-columns: 32.5rem 1fr;
  gap: 4.375rem;
  align-items: center;
  min-height: 38.75rem;
  padding-top: 1.375rem;
  padding-bottom: 2.875rem;
}

.page--home .hero__content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.page--home .hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.page--home .hero__text h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2d3138;
  max-width: 40rem;
}

.page--home .hero__text p {
  max-width: 29.375rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #8f96a3;
}

.page--home .hero__buttons {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}

.page--home .hero__visual {
  display: flex;
  justify-content: flex-end;
}

.page--home .hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================================================
   08. HERO NOTE
========================================================= */
.page--home .hero__note {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 999px;
  background: rgba(24, 92, 255, 0.08);
  color: #185cff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.page--home .hero__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: #185cff;
  flex: 0 0 1.375rem;
}

.page--home .hero__note-icon::before {
  content: "✓";
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
}

.page--home .hero__note-text {
  color: #185cff;
}

/* =========================================================
   09. PLACEHOLDERS / ILLUSTRATIONS
========================================================= */
.page--home .placeholder-art {
  width: 100%;
  border-radius: 1.75rem;
  background:
    linear-gradient(135deg, rgba(41, 45, 51, 0.06), rgba(41, 45, 51, 0.02)),
    linear-gradient(180deg, rgba(240, 249, 255, 1), rgba(241, 246, 250, 1));
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.page--home .placeholder-art::before,
.page--home .placeholder-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.page--home .placeholder-art::before {
  width: 13.75rem;
  height: 13.75rem;
  top: -2.5rem;
  right: -1.875rem;
  background: rgba(41, 45, 51, 0.06);
}

.page--home .placeholder-art::after {
  width: 10rem;
  height: 10rem;
  bottom: -1.25rem;
  left: -1.25rem;
  background: rgba(148, 151, 161, 0.12);
}

.page--home .placeholder-art span {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--color-text-muted);
}

.page--home .placeholder-art--hero {
  max-width: 40rem;
  min-height: 26.25rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.page--home .placeholder-art--hero span {
  color: #c5cedd;
  font-size: 1.125rem;
}

.page--home .placeholder-art--hero::before,
.page--home .placeholder-art--hero::after {
  display: none;
}

.page--home .placeholder-art--feature {
  min-height: 36.875rem;
}

/* =========================================================
   10. HERO BENEFITS STRIP
========================================================= */
.page--home .hero-logos {
  border-top: 1px solid var(--color-line);
  background: transparent;
}

.page--home .hero-benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: stretch;
}

.page--home .hero-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 1.375rem 0.875rem 1.125rem;
  min-height: 8.625rem;
  border-right: 1px solid rgba(42, 47, 54, 0.05);
  transition: background var(--transition);
}

.page--home .hero-benefit:first-child {
  border-left: 1px solid rgba(42, 47, 54, 0.05);
}

.page--home .hero-benefit:hover {
  background: rgba(255, 255, 255, 0.45);
}

.page--home .hero-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  margin-bottom: 0.75rem;
  color: var(--color-blue);
  font-size: 1.375rem;
  line-height: 1;
}

.page--home .hero-benefit__title {
  min-height: 1.375rem;
  margin-bottom: 0.625rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.15;
  color: #2d3138;
}

.page--home .hero-benefit__text {
  max-width: 9.0625rem;
  min-height: 3.375rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #8f96a3;
}

/* =========================================================
   11. ADVANTAGES / HOW IT WORKS
========================================================= */
.page--home .advantages-heading {
  max-width: 47.5rem;
}

.page--home .advantages-heading h2 {
  margin-bottom: 1.125rem;
}

.page--home .advantages-heading p {
  max-width: 47.5rem;
  margin: 0 auto;
}

.page--home .advantages-steps {
  display: grid;
  grid-template-columns: 1fr 7.5rem 1fr 7.5rem 1fr 7.5rem 1fr;
  align-items: center;
  margin-top: 4.375rem;
}

.page--home .step-card {
  position: relative;
  min-height: 17.5rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page--home .step-card--2,
.page--home .step-card--4 {
  transform: translateY(2rem);
}

.page--home .step-card__num {
  font-family: "Manrope", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.page--home .step-card h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 0.875rem;
  max-width: 14.375rem;
}

.page--home .step-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 15.625rem;
}

.page--home .step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(24, 92, 255, 0.65);
  pointer-events: none;
}

.page--home .step-arrow svg {
  display: block;
  width: 100%;
  max-width: 11.25rem;
  height: auto;
}

.page--home .step-arrow--up {
  transform: translateY(-2.125rem);
}

.page--home .step-arrow--down {
  transform: translateY(2.125rem);
}

/* =========================================================
   12. FEATURES
========================================================= */
.public-home .features__stack {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}

.page--home .feature {
  display: grid;
  grid-template-columns: 33.75rem 1fr;
  gap: 5.9375rem;
  align-items: center;
}

.page--home .feature--image-left {
  grid-template-columns: 1fr 33.75rem;
}

.page--home .feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
}

.page--home .feature__content h2 {
  max-width: 33.75rem;
  font-size: 2.875rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.page--home .feature__content p {
  max-width: 33.75rem;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.page--home .feature__visual {
  display: flex;
  align-items: center;
}

.page--home .feature--image-right .feature__visual {
  justify-content: flex-end;
}

.page--home .feature--image-left .feature__visual {
  justify-content: flex-start;
}

/* =========================================================
   13. BLOG
========================================================= */
.page--home .blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.page--home .blog-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: var(--border-soft);
  display: flex;
  flex-direction: column;
}

.page--home .blog-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 11.25rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(41, 45, 51, 0.06), rgba(41, 45, 51, 0.02));
  color: var(--color-text-muted);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  overflow: hidden;
}

.page--home .blog-card__image-media {
  width: 100%;
  height: 100%;
  min-height: 11.25rem;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page--home .blog-card__body {
  padding: 1.5rem;
}

.page--home .blog-card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

.page--home .blog-card__body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

.page--home .blog-card__body p {
  margin-bottom: 1.125rem;
}

.page--home .link-arrow {
  font-weight: 700;
  color: var(--color-text-dark);
}

.blog-public-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.875rem;
}

.blog-public-page .blog-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  z-index: 1;
}

.blog-public-page .blog-card::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: -0.625rem;
  height: 1.125rem;
  border-radius: 999px;
  background: rgba(42, 47, 54, 0.10);
  filter: blur(12px);
  opacity: 0.14;
  z-index: -1;
  transition: opacity var(--transition), transform var(--transition);
}

.blog-public-page .blog-card:hover,
.blog-public-page .blog-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 1.125rem 3.125rem rgba(42, 47, 54, 0.08), 0 0.25rem 0.75rem rgba(42, 47, 54, 0.04);
  filter: brightness(0.985);
}

.blog-public-page .blog-card:hover::after,
.blog-public-page .blog-card:focus-within::after {
  opacity: 0.24;
  transform: translateY(0.125rem);
}

.blog-card--public-list {
  height: 100%;
}

.blog-public-page .blog-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 11.25rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(41, 45, 51, 0.06), rgba(41, 45, 51, 0.02));
  color: var(--color-text-muted);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  overflow: hidden;
}

.blog-card__image-link {
  display: block;
}

.blog-public-page .blog-card__image-media {
  width: 100%;
  height: 100%;
  min-height: 11.25rem;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-public-page .blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.blog-public-page .blog-card__body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

.blog-public-page .blog-card__meta {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.blog-public-page .blog-card__title-link,
.blog-public-page .link-arrow {
  color: var(--color-text-dark);
  text-decoration: none;
}

.blog-public-page .blog-card__title-link:hover,
.blog-public-page .blog-card__title-link:focus-visible,
.blog-public-page .link-arrow:hover,
.blog-public-page .link-arrow:focus-visible {
  color: var(--color-primary);
}

.blog-public-page .blog-card__preview {
  margin-bottom: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.blog-public-page .link-arrow {
  margin-top: auto;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .blog-public-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .blog-public-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   14. ACTIONS
========================================================= */
.page--home .section-actions {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}

/* =========================================================
   15. REVIEWS
========================================================= */
.page--home .reviews {
  background: #f5f7fb;
}

.page--home .reviews__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.page--home .reviews__top h2 {
  max-width: 27.8125rem;
}

.page--home .reviews__controls {
  display: flex;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.page--home .slider-btn {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(42, 47, 54, 0.08);
  background: #ffffff;
  cursor: pointer;
  font-size: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.page--home .slider-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1.125rem rgba(42, 47, 54, 0.06);
}

.page--home .reviews__viewport {
  overflow: hidden;
  padding: 0 0.5rem 1.375rem;
}

.page--home .reviews__track {
  display: flex;
  gap: 1.875rem;
  will-change: transform;
}

.page--home .review-card {
  position: relative;
  flex: 0 0 calc((100% - 1.875rem) / 2);
  min-height: 14.6875rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 1.375rem;
  border: 1px solid rgba(42, 47, 54, 0.04);
  box-shadow: none;
  transition: transform var(--transition);
  z-index: 1;
}

.page--home .review-card::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: -0.625rem;
  height: 1.125rem;
  border-radius: 999px;
  background: rgba(42, 47, 54, 0.10);
  filter: blur(12px);
  opacity: 0.14;
  z-index: -1;
}

.page--home .review-card:hover {
  transform: translateY(-2px);
}

.page--home .review-card__text {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.page--home .review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.page--home .review-card__author strong {
  font-size: 1rem;
  color: var(--color-text-dark);
}

.page--home .review-card__author span {
  color: var(--color-text-muted);
}

/* =========================================================
   16. CONTACT / FINAL CTA
========================================================= */
.page--home .contact {
  background: linear-gradient(180deg, #f5f7fb 0%, #f1f5fb 100%);
}

.page--home .contact-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.page--home .contact-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page--home .contact-cta__content h2 {
  max-width: 40rem;
  font-size: 3.625rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.page--home .contact-cta__lead {
  max-width: 35rem;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.875rem;
}

.page--home .contact-cta__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(13.75rem, 1fr));
  gap: 1rem 1.5rem;
  width: 100%;
  max-width: 38.75rem;
  margin-bottom: 2.125rem;
}

.page--home .contact-cta__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 1.75rem;
  color: var(--color-text-dark);
  font-size: 1.0625rem;
  line-height: 1.45;
  font-weight: 600;
}

.page--home .contact-cta__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  border-radius: 50%;
  background: var(--color-blue);
}

.page--home .contact-cta__check::before {
  content: "✓";
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 700;
}

.page--home .contact-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.page--home .contact-cta__btn {
  min-width: 16.25rem;
}

.page--home .contact-cta__note {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  width: 100%;
  text-align: center;
}

.page--home .contact-cta__side {
  display: flex;
  justify-content: flex-end;
}

.page--home .contact-cta-card {
  width: 100%;
  max-width: 31.25rem;
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(42, 47, 54, 0.06);
  box-shadow:
    0 1.125rem 3.125rem rgba(42, 47, 54, 0.08),
    0 0.25rem 0.75rem rgba(42, 47, 54, 0.04);
  backdrop-filter: blur(8px);
}

.page--home .contact-cta-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.125rem;
  padding: 0 0.875rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(24, 92, 255, 0.08);
  color: var(--color-blue);
  font-size: 0.8125rem;
  font-weight: 700;
}

.page--home .contact-cta-card__items {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.page--home .contact-cta-card__item {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(42, 47, 54, 0.06);
}

.page--home .contact-cta-card__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page--home .contact-cta-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.125rem;
  background: linear-gradient(180deg, rgba(24, 92, 255, 0.12), rgba(24, 92, 255, 0.05));
  color: var(--color-blue);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.page--home .contact-cta-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.page--home .contact-cta-card__text strong {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-text-dark);
}

.page--home .contact-cta-card__text span {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.page--home .contact-cta-card__footer {
  margin-top: 1.5rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(42, 47, 54, 0.06);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* =========================================================
   17. STATS FULL-WIDTH
========================================================= */
.page--home .stats {
  margin: 0;
}

.page--home .stats__inner {
  width: 100%;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #185cff, #2f6dff);
  color: #ffffff;
}

.page--home .stats__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.page--home .stat-item {
  text-align: center;
  position: relative;
}

.page--home .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2.875rem;
  background: rgba(255, 255, 255, 0.2);
}

.page--home .stat-item__value {
  font-family: "Manrope", sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.625rem;
}

.page--home .stat-item__label {
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0.85;
}

/* =========================================================
   18. SUBSCRIBE
========================================================= */
.page--home .subscribe {
  margin: 0;
}

.page--home .subscribe__inner {
  width: 100%;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #185cff, #2f6dff);
  color: #ffffff;
}

.page--home .subscribe__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32.5rem;
  gap: 3.5rem;
  align-items: center;
}

.page--home .subscribe__content {
  max-width: 35rem;
}

.page--home .subscribe__content h2 {
  color: #ffffff;
  font-size: 2.625rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.125rem;
}

.page--home .subscribe__lead {
  max-width: 32.5rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.page--home .subscribe__socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page--home .subscribe__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page--home .subscribe__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: background var(--transition), transform var(--transition);
}

.page--home .subscribe__social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.page--home .subscribe__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1;
  display: inline-block;
  flex: 0 0 1.125rem;
}

.page--home .subscribe__social-link--max-group svg,
.page--home .subscribe__social-link--max-bot svg {
  width: 1.2rem;
  height: 1.2rem;
}

.page--home .subscribe__social-link--telegram svg {
  width: 1.28rem;
  height: 1.28rem;
  transform: translate(-0.06rem, 0.02rem);
}

.page--home .subscribe__social-link--vk svg {
  width: 1.1875rem;
  height: 1.1875rem;
  transform: translateY(0.05rem);
}

.page--home .subscribe__panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page--home .subscribe__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9.375rem;
  width: 100%;
  margin-bottom: 1.125rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ffffff;
}

.page--home .subscribe__form input {
  min-width: 0;
  height: 3.5rem;
  padding: 0 1.125rem;
  border: none;
  border-radius: 0;
  background: #dbe6f3;
  color: #2a2f36;
  box-shadow: none;
}

.page--home .subscribe__submit {
  height: 3.5rem;
  border: none;
  border-radius: 0;
  background: #ffffff;
  color: #2a2f36;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.page--home .subscribe__consent {
  display: grid;
  grid-template-columns: 1.125rem 1fr;
  gap: 0.75rem;
  align-items: start;
  cursor: pointer;
}

.page--home .subscribe__checkbox {
  margin: 0.125rem 0 0;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #ffffff;
}

.page--home .subscribe__consent-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* =========================================================
   19. FOOTER
========================================================= */
.site-footer {
  background: #c9dcec;
  padding: 1.5rem 0 1.625rem;
  border-top: 1px solid rgba(42, 47, 54, 0.06);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.site-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
}

.site-footer__brand .site-logo__mark {
  height: 5.25rem;
}

.site-footer__copy {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(42, 47, 54, 0.8);
  margin-top: auto;
}

.site-footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.site-footer__nav a {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: opacity var(--transition);
}

.site-footer__nav a:hover,
.site-footer__dev:hover {
  opacity: 0.75;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: var(--color-text-dark);
  transition: transform var(--transition), background var(--transition);
}

.site-footer__social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.7);
}

.site-footer__social-link i,
.site-footer__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-block;
  flex: 0 0 1.125rem;
}

.site-footer__social-link--vk svg {
  width: 1.1875rem;
  height: 1.1875rem;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  text-align: right;
}

.site-footer__meta {
  max-width: 22.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(42, 47, 54, 0.78);
}

.site-footer__dev-wrap {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(42, 47, 54, 0.78);
}

.site-footer__dev-label {
  color: rgba(42, 47, 54, 0.78);
}

.site-footer__dev {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none !important;
  transition: opacity var(--transition);
}

.site-footer__bottom {
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(42, 47, 54, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__legal-link {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(42, 47, 54, 0.72);
}

.site-footer__legal-link:hover {
  color: var(--color-text-dark);
}

/* =========================================================
   20. RESPONSIVE ≤ 1200
========================================================= */
@media (max-width: 1200px) {
  .site-header__logo .site-logo__mark {
    height: 3.25rem;
  }

  .site-footer__brand .site-logo__mark {
    height: 4.25rem;
  }

  .page--home .hero__grid,
  .page--home .feature,
  .page--home .feature--image-left {
    grid-template-columns: 1fr;
  }

  .page--home .hero__grid {
    gap: 2.5rem;
    min-height: auto;
    padding-top: 0.625rem;
  }

  .page--home .hero__text h1 {
    font-size: 2.75rem;
    max-width: 100%;
  }

  .page--home .hero__text p {
    max-width: 100%;
  }

  .page--home .hero__visual {
    justify-content: flex-start;
  }

  .page--home .hero__image {
    width: 100%;
  }

  .page--home .placeholder-art--hero {
    max-width: 100%;
  }

  .page--home .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .page--home .hero-benefit:nth-child(4) {
    border-left: 1px solid rgba(42, 47, 54, 0.05);
  }

  .page--home .advantages-steps {
    grid-template-columns: 1fr 5.625rem 1fr;
    gap: 1.5rem 0;
    margin-top: 3.5rem;
  }

  .page--home .step-card--2,
  .page--home .step-card--4 {
    transform: none;
  }

  .page--home .step-card--3,
  .page--home .step-card--4 {
    margin-top: 0.5rem;
  }

  .page--home .step-arrow {
    min-height: 5rem;
  }

  .page--home .advantages-steps .step-card--3 {
    grid-column: 1;
    grid-row: 3;
  }

  .page--home .advantages-steps .step-card--4 {
    grid-column: 3;
    grid-row: 3;
  }

  .page--home .advantages-steps .step-arrow:nth-of-type(3) {
    display: none;
  }

  .page--home .feature {
    gap: 2.5rem;
  }

  .page--home .feature__content h2,
  .page--home .feature__content p {
    max-width: 100%;
  }

  .page--home .feature__content h2 {
    font-size: 2.5rem;
  }

  .page--home .contact-cta,
  .page--home .subscribe__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page--home .contact-cta__content h2,
  .page--home .contact-cta__lead,
  .page--home .subscribe__content,
  .page--home .subscribe__lead {
    max-width: 100%;
  }

  .page--home .contact-cta__side {
    justify-content: flex-start;
  }

  .page--home .contact-cta-card {
    max-width: 100%;
  }
}

/* =========================================================
   21. RESPONSIVE ≤ 900
========================================================= */
@media (max-width: 900px) {
  .page--home .section {
    padding: 5rem 0;
  }

  .site-nav {
    display: none;
  }

  .site-header__inner {
    min-height: 4.25rem;
    gap: 1rem;
  }

  .page--home .blog__grid,
  .blog-public-grid,
  .page--home .advantages-steps,
  .page--home .stats__container,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .page--home .review-card {
    flex: 0 0 100%;
  }

  .page--home .hero__buttons {
    gap: 1.125rem;
  }

  .page--home .contact-cta__content h2 {
    font-size: 2.75rem;
  }

  .page--home .contact-cta__benefits {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .page--home .stat-item::after {
    display: none;
  }

  .site-footer__left,
  .site-footer__center,
  .site-footer__right {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__copy {
    margin-top: 0;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer__socials {
    justify-content: flex-start;
  }

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

/* =========================================================
   22. RESPONSIVE ≤ 640
========================================================= */
@media (max-width: 640px) {
  .page--home .hero__text h1 {
    font-size: 2.125rem;
  }

  .page--home .hero__text p,
  .page--home .feature__content p,
  .page--home .review-card__text,
  .page--home .contact-cta__lead,
  .page--home .subscribe__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .page--home .btn--primary {
    min-height: 3.125rem;
    padding: 0 1.5rem;
  }

  .page--home .hero__buttons {
    align-items: flex-start;
  }

  .page--home .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .page--home .hero-benefit {
    min-height: 7.75rem;
    padding: 1.125rem 0.625rem 1rem;
  }

  .page--home .hero-benefit:nth-child(3),
  .page--home .hero-benefit:nth-child(5) {
    border-left: 1px solid rgba(42, 47, 54, 0.05);
  }

  .page--home .step-card {
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
    min-height: auto;
  }

  .page--home .step-card__num {
    font-size: 2.125rem;
    margin-bottom: 1.125rem;
  }

  .page--home .step-card h3 {
    font-size: 1.3125rem;
  }

  .page--home .features__stack {
    gap: 5rem;
  }

  .page--home .feature__content h2,
  .page--home .contact-cta__content h2,
  .page--home .subscribe__content h2 {
    font-size: 2.125rem;
    line-height: 1.16;
  }

  .page--home .review-card {
    padding: 1.375rem;
  }

  .page--home .slider-btn {
    width: 3.125rem;
    height: 3.125rem;
    flex-basis: 3.125rem;
  }

  .page--home .contact-cta-card {
    padding: 1.375rem;
    border-radius: 1.375rem;
  }

  .page--home .contact-cta-card__item {
    grid-template-columns: 3.25rem 1fr;
    gap: 0.875rem;
  }

  .page--home .contact-cta-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    font-size: 0.875rem;
  }

  .page--home .contact-cta-card__text strong {
    font-size: 1rem;
  }

  .page--home .contact-cta-card__text span {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .page--home .contact-cta__btn {
    width: 100%;
    min-width: 0;
  }

  .page--home .stats__inner,
  .page--home .subscribe__inner {
    padding: 2.5rem 0;
  }

  .page--home .stats__container {
    gap: 1.375rem;
  }

  .page--home .stat-item__value {
    font-size: 2.125rem;
  }

  .page--home .subscribe__form {
    grid-template-columns: 1fr;
    border-radius: 0.75rem;
  }

  .page--home .subscribe__submit {
    border-top: 1px solid rgba(42, 47, 54, 0.08);
  }

  .site-footer {
    padding: 1.75rem 0 2rem;
  }

  .site-footer__social-link {
    width: 2.5rem;
    height: 2.5rem;
  }

  .site-header__logo .site-logo__mark {
    height: 2.875rem;
  }

  .site-footer__brand .site-logo__mark {
    height: 3.5rem;
  }

  .site-header__icon-link {
    width: 2.25rem;
    height: 2.25rem;
  }
}
