/* / - редизайн главной страницы */

.main--home-hub {
  margin-bottom: 0;
}

.home-hub {
  --hh-ink: #14161d;
  --hh-ink-70: #3d4250;
  --hh-ink-50: #6b7280;
  --hh-surface: #f3f5f8;
  --hh-surface-2: #eaeef4;
  --hh-line: #e4e8ee;
  --hh-accent: #15a05a;
  --hh-accent-700: #0f7d45;
  --hh-accent-50: #e9f6ef;
  --hh-navy: #0f1320;
  --hh-green-light: #4fd18a;
  --hh-r: 16px;
  --hh-r-sm: 10px;
  --hh-font-display: "Inter Tight", sans-serif;
  --hh-font-body: "Inter", sans-serif;
  color: var(--hh-ink);
  font-family: var(--hh-font-body);
}

/* Hero */
.home-hub__hero {
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}

.home-hub__hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(21, 160, 90, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.home-hub__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
}

.home-hub__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--hh-accent-50);
  color: var(--hh-accent-700);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.home-hub__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hh-accent);
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .home-hub__pulse {
    box-shadow: 0 0 0 0 rgba(21, 160, 90, 0.5);
    animation: home-hub-pulse 2.2s infinite;
  }
}

@keyframes home-hub-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 160, 90, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(21, 160, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 160, 90, 0);
  }
}

.home-hub__title {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.07;
  letter-spacing: -1.4px;
  margin: 0 0 20px;
  color: var(--hh-ink);
}

.home-hub__title em {
  font-style: normal;
  color: var(--hh-accent);
}

.home-hub__lead {
  color: var(--hh-ink-70);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 26px;
}

.home-hub__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.home-hub__checks li,
.home-hub__checks > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hh-ink-70);
}

.home-hub__check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--hh-accent-50);
  color: var(--hh-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-hub__check-icon svg {
  width: 12px;
  height: 12px;
}

.home-hub__hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--hh-font-body);
  font-weight: 600;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
}

.home-hub__btn--primary {
  background: var(--hh-accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--hh-r-sm);
  font-size: 14.5px;
}

.home-hub__btn--primary:hover {
  background: var(--hh-accent-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(21, 160, 90, 0.3);
  color: #fff;
}

.home-hub__btn--ghost {
  background: #fff;
  color: var(--hh-ink);
  border: 1px solid var(--hh-line);
  padding: 12px 22px;
  border-radius: var(--hh-r-sm);
  font-size: 14.5px;
}

.home-hub__btn--ghost:hover {
  border-color: var(--hh-ink-50);
  color: var(--hh-ink);
}

/* Hero card */
.home-hub__hero-card {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(20, 22, 29, 0.08);
}

.home-hub__hc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.home-hub__hc-head > :first-child {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--hh-ink-50);
}

.home-hub__hc-head > :last-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hh-accent);
  background: var(--hh-accent-50);
  padding: 5px 10px;
  border-radius: 100px;
  min-height: 28px;
}

.home-hub__hc-head .home-hub__live {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--hh-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .home-hub__hc-head .home-hub__live {
    box-shadow: 0 0 0 0 rgba(21, 160, 90, 0.55);
    animation: home-hub-pulse 1.8s infinite;
  }
}

.home-hub__scope {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-hub__scope-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--hh-surface);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 15px;
  transition: all 0.18s;
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}

.home-hub__scope-item:hover {
  background: #fff;
  border-color: var(--hh-line);
  box-shadow: 0 6px 18px rgba(20, 22, 29, 0.06);
  color: inherit;
}

.home-hub__scope-ic {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home-hub__scope-ic svg {
  width: 19px;
  height: 19px;
}

.home-hub__scope-item:nth-child(1) .home-hub__scope-ic {
  background: #15a05a;
}

.home-hub__scope-item:nth-child(2) .home-hub__scope-ic {
  background: #15a05a;
}

.home-hub__scope-item:nth-child(3) .home-hub__scope-ic {
  background: #7c3aed;
}

.home-hub__scope-item:nth-child(4) .home-hub__scope-ic {
  background: #d98412;
}

.home-hub__scope-item:nth-child(5) .home-hub__scope-ic {
  background: #0ea5b7;
}

.home-hub__scope-item:nth-child(6) .home-hub__scope-ic {
  background: #e1467c;
}

.home-hub__scope-label {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
}

.home-hub__scope-desc {
  font-size: 12.5px;
  color: var(--hh-ink-50);
  margin-top: 1px;
  line-height: 1.35;
}

/* Trust strip (navy) */
.home-hub__trust {
  background: var(--hh-navy);
}

.home-hub__trust .container {
  padding-top: 30px;
  padding-bottom: 30px;
}

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

.home-hub__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-hub__trust-num {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.1;
}

.home-hub__trust-num span {
  color: var(--hh-green-light);
}

.home-hub__trust-txt {
  font-size: 13px;
  color: #9aa3b6;
  line-height: 1.4;
}

/* Block sections */
.home-hub__block {
  padding: 72px 0;
}

.home-hub__block--surface {
  background: var(--hh-surface);
}

.home-hub__block--ratings {
  background: var(--hh-surface);
}

.home-hub__block--clients {
  background: var(--hh-surface);
}

.home-hub__sec-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.home-hub__sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-hub__sec-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.home-hub__sec-head--row .home-hub__see-link {
  flex-shrink: 0;
}

.home-hub__label {
  display: inline-block;
  color: var(--hh-accent);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 12px;
}

.home-hub__h2 {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.9px;
  margin: 0 0 12px;
  color: var(--hh-ink);
}

.home-hub__sec-sub {
  color: var(--hh-ink-70);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0;
}

.home-hub__see-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hh-accent);
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
}

.home-hub__see-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.home-hub__see-link:hover {
  color: var(--hh-accent-700);
}

.home-hub__see-link:hover svg {
  transform: translateX(3px);
}

.home-hub__sec-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

/* Services grid */
.home-hub__svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-hub__svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

.home-hub__svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--hh-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s;
}

.home-hub__svc-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(20, 22, 29, 0.1);
  transform: translateY(-3px);
  color: inherit;
}

.home-hub__svc-card:hover::before {
  transform: scaleY(1);
}

.home-hub__svc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.home-hub__svc-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home-hub__svc-ic svg {
  width: 24px;
  height: 24px;
}

.home-hub__svc-ic--green {
  background: #15a05a;
}

.home-hub__svc-ic--blue {
  background: #2563eb;
}

.home-hub__svc-ic--violet {
  background: #7c3aed;
}

.home-hub__svc-ic--amber {
  background: #d98412;
}

.home-hub__svc-ic--teal {
  background: #0ea5b7;
}

.home-hub__svc-ic--rose {
  background: #e1467c;
}

.home-hub__svc-card h3 {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0;
}

.home-hub__svc-card p {
  color: var(--hh-ink-70);
  font-size: 14.5px;
  line-height: 1.62;
  margin: 0 0 18px;
}

.home-hub__svc-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hh-accent);
  min-height: 44px;
}

.home-hub__svc-more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}

.home-hub__svc-card:hover .home-hub__svc-more svg {
  transform: translateX(4px);
}

/* Why grid */
.home-hub__why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-hub__why {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 26px;
}

.home-hub__why-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--hh-accent-50);
  color: var(--hh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-hub__why-ic svg {
  width: 23px;
  height: 23px;
}

.home-hub__why h3 {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

.home-hub__why p {
  color: var(--hh-ink-70);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Process */
.home-hub__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-hub__step {
  display: block;
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 18px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-hub__step:hover {
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(20, 22, 29, 0.08);
  transform: translateY(-2px);
}

.home-hub__step-n {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--hh-navy);
  color: #fff;
  font-family: var(--hh-font-display);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.home-hub__step:first-child .home-hub__step-n {
  background: var(--hh-accent);
}

.home-hub__step h4 {
  font-family: var(--hh-font-display);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.2px;
}

.home-hub__step p {
  color: var(--hh-ink-50);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

/* Cases */
.home-hub__case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-hub__case {
  display: block;
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.home-hub__case:hover {
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(20, 22, 29, 0.12);
  transform: translateY(-4px);
  color: inherit;
}

.home-hub__case-img {
  aspect-ratio: 16 / 10;
  background: var(--hh-surface-2);
  position: relative;
  overflow: hidden;
}

.home-hub__case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.home-hub__case:hover .home-hub__case-img img {
  transform: scale(1.04);
}

.home-hub__case-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(15, 19, 32, 0.78);
  backdrop-filter: blur(4px);
  padding: 5px 11px;
  border-radius: 100px;
}

.home-hub__case-body {
  padding: 20px 22px 22px;
}

.home-hub__case-body h3 {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  margin: 0 0 7px;
}

.home-hub__case-body p {
  color: var(--hh-ink-70);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Platform stats */
.home-hub__stats {
  background: var(--hh-surface);
}

.home-hub__stats-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.home-hub__stats-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.home-hub__stats-figs--solo {
  grid-template-columns: repeat(2, 1fr);
}

.home-hub__figc {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-hub__figc:hover {
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(20, 22, 29, 0.1);
  transform: translateY(-3px);
}

.home-hub__figc-num {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -1.6px;
  color: var(--hh-ink);
  line-height: 1;
}

.home-hub__figc-num span {
  color: var(--hh-accent);
}

.home-hub__figc-label {
  font-size: 13.5px;
  color: var(--hh-ink-50);
  margin-top: 9px;
  line-height: 1.45;
}

.home-hub__stat-hl {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-hub__hlc {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 20px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-hub__hlc:hover {
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(20, 22, 29, 0.1);
  transform: translateY(-3px);
}

.home-hub__hlc-ic {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--hh-accent-50);
  color: var(--hh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hub__hlc-ic svg {
  width: 23px;
  height: 23px;
}

.home-hub__hlc-num {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -1px;
  color: var(--hh-ink);
  line-height: 1.05;
}

.home-hub__hlc-num span {
  color: var(--hh-accent);
}

.home-hub__hlc-label {
  font-size: 13.2px;
  line-height: 1.45;
  color: var(--hh-ink-50);
  margin-top: 5px;
}

.home-hub__stats-bars {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 26px 28px;
}

.home-hub__stats-bars-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hh-ink-50);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.home-hub__stats-bars-ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--hh-accent-50);
  color: var(--hh-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-hub__stats-bars-ic svg {
  width: 17px;
  height: 17px;
}

.home-hub__bar-row {
  margin-bottom: 19px;
}

.home-hub__bar-row:last-child {
  margin-bottom: 0;
}

.home-hub__bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.home-hub__bar-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hh-ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hub__bar-name--muted {
  color: var(--hh-ink-50);
  font-weight: 500;
}

.home-hub__bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.home-hub__bar-val {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--hh-ink-50);
  white-space: nowrap;
}

.home-hub__bar-val b {
  font-weight: 600;
  color: var(--hh-ink);
}

.home-hub__bar-track {
  height: 10px;
  border-radius: 100px;
  background: var(--hh-surface-2);
  overflow: hidden;
}

.home-hub__bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hub__stats-foot,
.home-hub__stats-solo-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--hh-line);
  font-size: 13px;
  color: var(--hh-ink-50);
  line-height: 1.55;
}

.home-hub__stats-solo-foot {
  margin-top: 18px;
  padding-top: 0;
  border-top: none;
  max-width: 760px;
}

/* Platform strip */
.home-hub__platforms {
  background: #fff;
  border-top: 1px solid var(--hh-line);
  border-bottom: 1px solid var(--hh-line);
}

.home-hub__platforms .container {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
}

.home-hub__plat-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--hh-ink-50);
}

.home-hub__plat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hub__plat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--hh-surface);
  border: 1px solid var(--hh-line);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--hh-ink);
  letter-spacing: -0.2px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  min-height: 44px;
}

.home-hub__plat:hover {
  border-color: var(--hh-accent);
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 160, 90, 0.12);
  transform: translateY(-2px);
}

.home-hub__plat-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Ratings */
.home-hub__rate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-hub__rate {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-hub__rate:hover {
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(20, 22, 29, 0.1);
  transform: translateY(-3px);
}

.home-hub__rate-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-hub__rate-place {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--hh-accent);
}

.home-hub__rate-medal {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--hh-accent-50);
  color: var(--hh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-hub__rate-medal svg {
  width: 22px;
  height: 22px;
}

.home-hub__rate-year {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hh-ink-50);
}

.home-hub__rate-cat {
  font-size: 14px;
  color: var(--hh-ink-70);
  line-height: 1.5;
  font-weight: 500;
}

.home-hub__rate-more {
  margin-top: 28px;
}

/* Clients */
.home-hub__logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.home-hub__logo-cell {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r-sm);
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.home-hub__logo-cell:hover {
  border-color: var(--hh-accent);
  box-shadow: 0 10px 24px rgba(21, 160, 90, 0.08);
}

.home-hub__logo-cell img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.2s, opacity 0.2s;
}

.home-hub__logo-cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Prices */
.home-hub__price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-hub__price-card {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-height: 100%;
}

.home-hub__price-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(20, 22, 29, 0.1);
  transform: translateY(-3px);
}

.home-hub__price-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--hh-accent-50);
  color: var(--hh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-hub__price-ic svg {
  width: 23px;
  height: 23px;
}

.home-hub__price-card h3 {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: 18.5px;
  margin: 0 0 9px;
  letter-spacing: -0.2px;
}

.home-hub__price-card p {
  color: var(--hh-ink-70);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.home-hub__price-card .home-hub__see-link {
  margin-top: auto;
  font-size: 14px;
  min-height: 44px;
}

.home-hub__price-card:hover .home-hub__see-link svg {
  transform: translateX(4px);
}

/* FAQ */
.home-hub__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-hub__faq {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-r-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s;
}

.home-hub__faq.open {
  border-color: var(--hh-accent);
}

.home-hub__faq-q {
  padding: 19px 22px;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}

.home-hub__faq-ar {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.25s;
}

.home-hub__faq-ar::before,
.home-hub__faq-ar::after {
  content: "";
  position: absolute;
  background: var(--hh-accent);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home-hub__faq-ar::before {
  width: 13px;
  height: 2px;
}

.home-hub__faq-ar::after {
  width: 2px;
  height: 13px;
  transition: transform 0.25s;
}

.home-hub__faq.open .home-hub__faq-ar::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.home-hub__faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.home-hub__faq.open .home-hub__faq-a {
  max-height: 320px;
}

.home-hub__faq-a p {
  padding: 0 22px 20px;
  color: var(--hh-ink-70);
  font-size: 14.2px;
  line-height: 1.65;
  margin: 0;
}

/* CTA (navy) */
.home-hub__cta {
  background: var(--hh-navy);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.home-hub__cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 160, 90, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.home-hub__cta .container {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.home-hub__cta-title {
  font-family: var(--hh-font-display);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.9px;
  margin: 0 0 12px;
  color: #fff;
}

.home-hub__cta-text {
  color: #9aa3b6;
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.home-hub__cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hub__btn--white {
  background: #fff;
  color: var(--hh-navy);
  padding: 14px 30px;
  border-radius: var(--hh-r-sm);
  font-size: 15px;
  font-weight: 700;
}

.home-hub__btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  color: var(--hh-navy);
}

.home-hub__btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 30px;
  border-radius: var(--hh-r-sm);
  font-size: 15px;
  font-weight: 600;
}

.home-hub__btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* Responsive */
@media (min-width: 600px) {
  .home-hub__trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

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

  .home-hub__logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (min-width: 768px) {
  .home-hub__stats-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
  }
}

@media (min-width: 980px) {
  .home-hub__hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }

  .home-hub__trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .home-hub__why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .home-hub__stats-figs--solo {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-hub__rate-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-hub__logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .home-hub__hero {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .home-hub__block {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-hub__sec-head--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .home-hub__svc-card {
    padding: 20px;
  }

  .home-hub__cta .container {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
