@charset "UTF-8";
:root {
  --color-primary: #02B1CE;
  --color-primary-hover: #0299B3;
  --color-primary-light: #EAF9FC;
  --color-accent-warm: #FFA652;
  --color-accent-warm-light: #FFF3E5;
  --color-text: #17252A;
  --color-text-muted: #637178;
  --color-text-light: #8C989D;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F6FAFB;
  --color-bg-secondary: #EEF7F8;
  --color-border: #DFEAED;
  --color-warm-light: #FFF4E8;
  --color-success-light: #EAF8F1;
  --radius-control: 12px;
  --radius-card: 20px;
  --radius-large: 28px;
  --font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  --shadow-soft: 0 18px 50px rgba(23, 37, 42, 0.07);
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(2, 177, 206, 0.78) var(--color-bg-soft);
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--color-bg-soft);
}

html::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 3px solid var(--color-bg-soft);
  border-radius: 999px;
  background: rgba(2, 177, 206, 0.72);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

html::-webkit-scrollbar-thumb:active {
  background: var(--color-primary-hover);
}

html::-webkit-scrollbar-corner {
  background: var(--color-bg-soft);
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(2, 177, 206, 0.35);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin-bottom: 0.45em;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.5rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1em;
}

.v2-page {
  min-width: 320px;
}

.v2-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 32px;
}

.v2-preview-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.96);
}

.v2-preview-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--color-text);
  text-decoration: none;
}

.v2-brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.v2-brand strong,
.v2-brand small {
  display: block;
}

.v2-brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.v2-brand small {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.v2-preview-badge,
.v2-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.v2-preview-badge {
  padding: 10px 13px;
}

.v2-section {
  padding-block: 84px;
}

.v2-section--hero {
  overflow: hidden;
  background: var(--color-bg-soft);
}

.v2-section--soft {
  background: var(--color-bg-soft);
}

.v2-section--turquoise {
  background: var(--color-primary-light);
}

.v2-hero {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
}

.v2-lead {
  max-width: 740px;
  margin-bottom: 32px;
  color: var(--color-text-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.v2-eyebrow {
  margin-bottom: 14px;
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.v2-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.v2-button:hover {
  transform: translateY(-1px);
}

.v2-button--attention {
  position: relative;
  animation: v2-button-attention 2.4s ease-out infinite;
}

@keyframes v2-button-attention {
  0% {
    box-shadow: 0 0 0 0 rgba(2, 177, 206, 0.52);
  }
  34% {
    box-shadow: 0 0 0 7px rgba(2, 177, 206, 0.24);
  }
  58% {
    box-shadow: 0 0 0 12px rgba(2, 177, 206, 0);
  }
  59%, 100% {
    box-shadow: 0 0 0 0 rgba(2, 177, 206, 0);
  }
}
.v2-button--primary {
  background: var(--color-primary);
  color: #fff;
}

.v2-button--primary:hover {
  background: var(--color-primary-hover);
}

.v2-button--secondary {
  border-color: var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
}

.v2-button--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
}

.v2-button--full {
  width: 100%;
}

.v2-button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-hover);
  font-weight: 700;
  text-decoration: none;
}

.v2-button-link span {
  transition: transform var(--transition);
}

.v2-button-link:hover span {
  transform: translateX(4px);
}

.v2-hero-note {
  position: relative;
  padding: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}

.v2-hero-note::before {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--color-primary-light);
  content: "";
  z-index: -1;
}

.v2-hero-note__icon,
.v2-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  background: var(--color-success-light);
  color: #218c5b;
  font-size: 20px;
  font-weight: 700;
}

.v2-hero-note p:last-child,
.v2-card p:last-child {
  margin-bottom: 0;
}

.v2-section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
}

.v2-section-heading h1,
.v2-section-heading h2,
.v2-section-heading p {
  margin-bottom: 0;
}

.v2-section-heading > p {
  color: var(--color-text-muted);
}

.v2-type-specimen,
.v2-component-panel {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-type-row {
  display: grid;
  align-items: baseline;
  padding: 28px;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
}

.v2-type-row + .v2-type-row {
  border-top: 1px solid var(--color-border);
}

.v2-type-row > span {
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-type-row h1,
.v2-type-row h2,
.v2-type-row h3,
.v2-type-row p {
  margin-bottom: 0;
}

.v2-type-row h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.v2-type-row h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.v2-text-muted {
  color: var(--color-text-muted);
}

.v2-color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-color-token {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-bg);
}

.v2-color-token__swatch {
  display: block;
  height: 100px;
  border-bottom: 1px solid var(--color-border);
  background: var(--swatch);
}

.v2-color-token > span:last-child {
  display: block;
  padding: 16px;
}

.v2-color-token strong,
.v2-color-token small {
  display: block;
}

.v2-color-token strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-color-token small {
  margin-top: 5px;
  color: var(--color-text-muted);
}

.v2-component-panel {
  display: grid;
  align-items: center;
  padding: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
}

.v2-radius-list {
  display: flex;
  gap: 12px;
}

.v2-radius-sample {
  display: grid;
  width: 88px;
  height: 76px;
  place-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.v2-radius-sample small {
  display: block;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 500;
}

.v2-radius-sample--control {
  border-radius: var(--radius-control);
}

.v2-radius-sample--card {
  border-radius: var(--radius-card);
}

.v2-radius-sample--large {
  border-radius: var(--radius-large);
}

.v2-card-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.v2-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.v2-card:hover {
  border-color: rgba(2, 177, 206, 0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.v2-card > .v2-button-link,
.v2-card > .v2-button {
  margin-top: auto;
}

.v2-card > p:not(.v2-eyebrow) {
  color: var(--color-text-muted);
}

.v2-specialist-card {
  gap: 20px;
}

.v2-specialist-card__photo {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  place-items: center;
  border: 1px solid rgba(255, 166, 82, 0.35);
  border-radius: 16px;
  background: var(--color-accent-warm-light);
}

.v2-specialist-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-specialist-card__photo--plain {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.v2-specialist-card__photo--plain img {
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-specialist-card__photo .v2-status {
  position: absolute;
  top: 12px;
  right: 12px;
}

.v2-specialist-card__photo-placeholder {
  max-width: 130px;
  color: #9a571c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.v2-avatar {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 22px;
  background: var(--color-warm-light);
  color: #b36318;
  font-weight: 700;
}

.v2-avatar--small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 12px;
}

.v2-status {
  padding: 8px 9px;
  font-size: 9px;
}

.v2-review-card {
  position: relative;
  padding: 26px 28px;
  border-color: #dbe7ea;
  box-shadow: 0 10px 34px rgba(23, 37, 42, 0.045);
}

.v2-review-card blockquote {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

.v2-review-card__content {
  position: relative;
  min-height: 0;
}

.v2-js .v2-review-card:not(.is-expanded) .v2-review-card__content {
  overflow: hidden;
  max-height: 8.4em;
}

.v2-review-card.has-collapsed-review .v2-review-card__content::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-bg) 88%);
  content: "";
  pointer-events: none;
}

.v2-review-card.is-expanded .v2-review-card__content::after {
  display: none;
}

.v2-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-review-card__source {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.v2-review-preview-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 7px;
  border-radius: 7px;
  background: var(--color-warm-light);
  color: #8a5b24;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v2-stars {
  display: inline-flex;
  align-items: center;
  color: #e3e5ed;
  gap: 3px;
  white-space: nowrap;
}

.v2-stars__icon {
  display: block;
  width: 20px;
  height: 19px;
  color: #e3e5ed;
  flex: 0 0 auto;
}

.v2-stars__icon.is-active {
  color: #fc0;
}

.v2-review-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.v2-review-author {
  color: inherit;
  text-decoration: none;
}

.v2-review-author:hover {
  color: var(--color-primary-hover);
}

.v2-review-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 0;
  margin-top: 12px;
  background: transparent;
  color: var(--color-primary-hover);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  gap: 5px;
}

.v2-review-more[hidden] {
  display: none;
}

.v2-review-more:hover {
  color: var(--color-primary);
}

.v2-review-more svg {
  transition: transform var(--transition);
}

.v2-review-more[aria-expanded=true] svg {
  transform: rotate(180deg);
}

.v2-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-review-order-note {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.v2-review-attributions {
  display: flex;
  align-items: center;
  margin-top: 20px;
  color: #5e5e5e;
  font-size: 12px;
  gap: 12px;
}

.v2-review-attributions a {
  color: inherit;
}

.v2-review-source__mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: var(--color-accent-warm);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.v2-review-card footer {
  display: flex;
  align-items: center;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  gap: 12px;
}

.v2-review-card footer strong,
.v2-review-card footer small {
  display: block;
}

.v2-review-card footer small {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-game-card__preview {
  position: relative;
  overflow: hidden;
  height: 150px;
  margin: -10px -10px 24px;
  border-radius: 16px;
  background: #dff4ff;
}

.v2-game-card__preview::before {
  position: absolute;
  right: -20px;
  bottom: -38px;
  left: -20px;
  height: 95px;
  border-radius: 50% 50% 0 0;
  background: #9ae2bd;
  content: "";
}

.v2-game-card__cloud {
  position: absolute;
  top: 28px;
  left: 24px;
  width: 54px;
  height: 18px;
  border-radius: 20px;
  background: #fff;
}

.v2-game-card__character,
.v2-game-card__target {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
}

.v2-game-card__character {
  bottom: 28px;
  left: 32px;
  width: 62px;
  height: 62px;
  background: #f5a85b;
}

.v2-game-card__target {
  right: 28px;
  bottom: 44px;
  width: 46px;
  height: 46px;
  border: 6px solid #fff;
  background: var(--color-primary);
}

.v2-game-card__meta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 10px;
  border-radius: 9px;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
}

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

.v2-section-sample {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.v2-section-sample > span {
  margin-bottom: auto;
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 700;
}

.v2-section-sample strong {
  font-size: 18px;
}

.v2-section-sample small {
  color: var(--color-text-muted);
}

.v2-section-sample--white {
  background: var(--color-bg);
}

.v2-section-sample--soft {
  background: var(--color-bg-soft);
}

.v2-section-sample--turquoise {
  background: var(--color-primary-light);
}

.v2-preview-footer {
  padding-block: 42px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.v2-preview-footer .v2-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-preview-footer p {
  margin-bottom: 0;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .v2-section {
    padding-block: 80px;
  }
  .v2-card-grid,
  .v2-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-card {
    min-height: 360px;
  }
}
@media (max-width: 900px) {
  .v2-container {
    padding-inline: 24px;
  }
  .v2-hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .v2-hero-note {
    display: grid;
    align-items: start;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 22px;
         column-gap: 22px;
  }
  .v2-hero-note__icon {
    grid-row: 1/span 3;
  }
  .v2-section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .v2-component-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  body {
    line-height: 1.6;
  }
  h1 {
    font-size: clamp(2.375rem, 10.5vw, 2.625rem);
    line-height: 1.08;
  }
  .v2-container {
    padding-inline: 16px;
  }
  .v2-preview-header__inner {
    min-height: 72px;
  }
  .v2-brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 18px;
  }
  .v2-brand small,
  .v2-preview-badge {
    display: none;
  }
  .v2-section {
    padding-block: 60px;
  }
  .v2-section--hero {
    padding-top: 52px;
  }
  .v2-hero {
    gap: 32px;
  }
  .v2-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .v2-actions .v2-button {
    width: 100%;
  }
  .v2-hero-note {
    display: block;
    padding: 26px;
  }
  .v2-hero-note__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
  }
  .v2-section-heading {
    margin-bottom: 32px;
  }
  .v2-type-row {
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .v2-color-grid,
  .v2-card-grid,
  .v2-section-samples {
    grid-template-columns: 1fr;
  }
  .v2-color-token {
    display: grid;
    grid-template-columns: 88px 1fr;
  }
  .v2-color-token__swatch {
    height: 100%;
    min-height: 84px;
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }
  .v2-component-panel {
    padding: 22px;
  }
  .v2-radius-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .v2-radius-sample {
    width: 100%;
    height: 70px;
  }
  .v2-card {
    min-height: 0;
    padding: 24px;
  }
  .v2-review-card blockquote {
    margin-inline: 0;
  }
  .v2-game-card__preview {
    height: 180px;
  }
  .v2-section-sample {
    min-height: 140px;
  }
  .v2-preview-footer .v2-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.v2-visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.v2-home section,
.v2-home footer,
.v2-home-anchor {
  scroll-margin-top: 96px;
}

.v2-home .v2-card {
  min-height: 0;
}

.v2-site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(223, 234, 237, 0.9);
  background: var(--color-bg);
  box-shadow: 0 8px 24px rgba(23, 37, 42, 0.04);
}

.v2-scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  overflow: hidden;
  background: var(--color-primary-light);
  pointer-events: none;
}

.v2-scroll-progress__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 3px 3px 0;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(2, 177, 206, 0.42);
  transform: scaleX(var(--v2-scroll-progress, 0));
  transform-origin: left center;
  transition: transform 160ms ease-out;
  will-change: transform;
}

.v2-site-header__inner {
  position: relative;
  display: grid;
  min-height: 82px;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
}

.v2-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.v2-site-nav > a:not(.v2-button) {
  position: relative;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.v2-site-nav > a:not(.v2-button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.v2-site-nav > a:not(.v2-button):hover::after,
.v2-site-nav > a:not(.v2-button):focus-visible::after {
  transform: scaleX(1);
}

.v2-site-nav__cta {
  min-height: 44px;
  padding: 10px 17px;
}

.v2-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
}

.v2-menu-toggle__lines {
  display: grid;
  width: 20px;
  gap: 4px;
}

.v2-menu-toggle__lines i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.v2-menu-toggle[aria-expanded=true] .v2-menu-toggle__lines i:first-child {
  transform: translateY(6px) rotate(45deg);
}

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

.v2-menu-toggle[aria-expanded=true] .v2-menu-toggle__lines i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.v2-home-hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(to bottom, var(--color-bg-soft) 0, var(--color-bg-soft) calc(100% - 76px), var(--color-bg) 100%);
  isolation: isolate;
}

.v2-home-hero > .v2-container {
  position: relative;
  z-index: 1;
}

.v2-home-hero__backdrop,
.v2-home-hero__backdrop-dots,
.v2-home-hero__backdrop-blob {
  position: absolute;
  pointer-events: none;
}

.v2-home-hero__backdrop {
  z-index: 0;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 84px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 84px), transparent 100%);
}

.v2-home-hero__backdrop-dots {
  background-image: radial-gradient(circle, rgba(2, 177, 206, 0.14) 2.4px, transparent 2.6px);
  background-size: 19px 19px;
}

.v2-home-hero__backdrop-dots--top {
  top: 24px;
  left: -18px;
  width: 210px;
  height: 136px;
}

.v2-home-hero__backdrop-dots--bottom {
  bottom: 20px;
  left: 39%;
  width: 285px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(255, 181, 27, 0.13) 2.6px, transparent 2.8px);
  background-size: 21px 21px;
}

.v2-home-hero__backdrop-dots--right {
  top: 42%;
  right: -20px;
  width: 170px;
  height: 125px;
  background-image: radial-gradient(circle, rgba(2, 177, 206, 0.11) 2.2px, transparent 2.4px);
  background-size: 18px 18px;
}

.v2-home-hero__backdrop-blob {
  opacity: 0.75;
}

.v2-home-hero__backdrop-blob--peach {
  bottom: -158px;
  left: -126px;
  width: 450px;
  height: 290px;
  border-radius: 43% 57% 68% 32%/57% 37% 63% 43%;
  background: rgba(255, 166, 82, 0.15);
  transform: rotate(-8deg);
}

.v2-home-hero__backdrop-blob--cyan {
  top: 84px;
  right: -190px;
  width: 410px;
  height: 275px;
  border-radius: 62% 38% 44% 56%/45% 62% 38% 55%;
  background: rgba(43, 187, 208, 0.09);
  transform: rotate(14deg);
}

.v2-home-hero__backdrop-blob--yellow {
  right: 18%;
  bottom: 74px;
  width: 220px;
  height: 155px;
  border-radius: 51% 49% 66% 34%/62% 44% 56% 38%;
  background: rgba(255, 181, 27, 0.08);
  transform: rotate(21deg);
}

.v2-home-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  gap: clamp(32px, 3.6vw, 50px);
}

.v2-home-hero__content h1 {
  max-width: 610px;
  margin-bottom: 0;
}

.v2-home-hero__wave {
  display: block;
  width: 174px;
  height: auto;
  margin: 17px 0 24px;
  color: var(--color-primary);
}

.v2-home-hero__content .v2-lead {
  max-width: 670px;
}

.v2-home-hero__content .v2-actions {
  flex-wrap: nowrap;
}

.v2-home-hero__content .v2-button {
  white-space: nowrap;
}

.v2-home-media-placeholder {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 166, 82, 0.35);
  border-radius: var(--radius-large);
  background: var(--color-accent-warm-light);
  color: #8f5118;
  text-align: center;
}

.v2-home-media-placeholder::before {
  width: 56px;
  height: 40px;
  margin-bottom: 10px;
  border: 2px solid var(--color-accent-warm);
  border-radius: 14px;
  content: "";
  opacity: 0.72;
}

.v2-home-media-placeholder__label,
.v2-home-media-placeholder > span {
  max-width: 270px;
  padding-inline: 18px;
  font-size: 13px;
  font-weight: 600;
}

.v2-home-media-placeholder small {
  color: var(--color-text-muted);
  font-size: 11px;
}

.v2-home-media-placeholder--real {
  margin: 0;
  border-color: rgba(2, 177, 206, 0.18);
  background: #dfecee;
}

.v2-home-media-placeholder--real::before {
  display: none;
}

.v2-home-media-placeholder--real img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-home-hero__visual {
  --hero-front-top: 58px;
  --hero-front-right: 22px;
  --hero-front-width: min(550px, calc(100% - 28px));
  --hero-front-border-width: 7px;
  --hero-front-radius: 34px 28px 38px 30px;
  --hero-front-transform: rotate(-3deg);
  --hero-back-top: 260px;
  --hero-back-right: -22px;
  --hero-back-width: min(390px, 72%);
  --hero-back-border-width: 6px;
  --hero-back-radius: 25px 31px 27px 34px;
  --hero-back-transform: rotate(3deg);
  position: relative;
  min-width: 0;
  min-height: 560px;
  isolation: isolate;
}

.v2-home-hero__photo-blob {
  position: absolute;
  z-index: 0;
  top: -12px;
  right: -72px;
  width: 650px;
  height: auto;
  color: rgba(43, 187, 208, 0.72);
  pointer-events: none;
}

.v2-home-hero__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-style: solid;
  border-color: var(--color-bg);
  background: #dfecee;
  box-shadow: 0 16px 38px rgba(23, 37, 42, 0.12);
  transition: top 440ms cubic-bezier(0.22, 0.72, 0.2, 1), right 440ms cubic-bezier(0.22, 0.72, 0.2, 1), width 440ms cubic-bezier(0.22, 0.72, 0.2, 1), border-radius 440ms ease, border-width 440ms ease, box-shadow 220ms ease, transform 440ms cubic-bezier(0.22, 0.72, 0.2, 1);
  will-change: top, right, width, transform;
}

.v2-home-hero__photo[role=button] {
  cursor: pointer;
}

.v2-home-hero__photo[role=button]:hover {
  box-shadow: 0 19px 44px rgba(23, 37, 42, 0.17);
}

.v2-home-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-home-hero__photo--primary {
  z-index: 3;
  top: var(--hero-front-top);
  right: var(--hero-front-right);
  width: var(--hero-front-width);
  aspect-ratio: 4/3;
  border-width: var(--hero-front-border-width);
  border-radius: var(--hero-front-radius);
  transform: var(--hero-front-transform);
}

.v2-home-hero__photo--primary img {
  -o-object-position: 52% center;
     object-position: 52% center;
}

.v2-home-hero__photo--secondary {
  z-index: 2;
  top: var(--hero-back-top);
  right: var(--hero-back-right);
  width: var(--hero-back-width);
  aspect-ratio: 4/3;
  border-width: var(--hero-back-border-width);
  border-radius: var(--hero-back-radius);
  transform: var(--hero-back-transform);
}

.v2-home-hero__visual.is-swapped .v2-home-hero__photo--primary {
  z-index: 2;
  top: var(--hero-back-top);
  right: var(--hero-back-right);
  width: var(--hero-back-width);
  border-width: var(--hero-back-border-width);
  border-radius: var(--hero-back-radius);
  transform: var(--hero-back-transform);
}

.v2-home-hero__visual.is-swapped .v2-home-hero__photo--secondary {
  z-index: 3;
  top: var(--hero-front-top);
  right: var(--hero-front-right);
  width: var(--hero-front-width);
  border-width: var(--hero-front-border-width);
  border-radius: var(--hero-front-radius);
  transform: var(--hero-front-transform);
}

.v2-home-hero__photo--secondary img {
  -o-object-position: 58% center;
     object-position: 58% center;
}

.v2-home-hero__shape,
.v2-home-hero__dots,
.v2-home-hero__rays {
  position: absolute;
  pointer-events: none;
}

.v2-home-hero__shape--peach {
  z-index: 1;
  bottom: 24px;
  left: -20px;
  width: 220px;
  height: 150px;
  border-radius: 46% 54% 62% 38%/58% 38% 62% 42%;
  background: rgba(255, 166, 82, 0.24);
  transform: rotate(-9deg);
}

.v2-home-hero__shape--organic {
  z-index: 4;
  right: 6px;
  bottom: 122px;
  width: 42px;
  height: 58px;
  border-radius: 64% 36% 51% 49%/42% 57% 43% 58%;
  background: var(--color-primary);
  opacity: 0.84;
  transform: rotate(18deg);
}

.v2-home-hero__dots {
  z-index: 1;
  top: 158px;
  left: -14px;
  width: 112px;
  height: 92px;
  background-image: radial-gradient(circle, rgba(2, 177, 206, 0.25) 2px, transparent 2.2px);
  background-size: 17px 17px;
}

.v2-home-hero__rays {
  z-index: 4;
  top: 14px;
  left: 2px;
  width: 96px;
  height: 70px;
}

.v2-home-hero__rays i {
  position: absolute;
  bottom: 0;
  width: 9.6px;
  height: 35px;
  border-radius: 999px;
  background: #ffd23f;
  transform-origin: center bottom;
}

.v2-home-hero__rays i:first-child {
  left: 18px;
  height: 31px;
  transform: rotate(-51deg);
}

.v2-home-hero__rays i:nth-child(2) {
  left: 42px;
  height: 45px;
  transform: rotate(-6deg);
}

.v2-home-hero__rays i:last-child {
  right: 15px;
  height: 35px;
  transform: rotate(34deg);
}

.v2-home-hero__floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 202px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(223, 234, 237, 0.95);
  border-radius: 18px;
  background: var(--color-bg);
  box-shadow: 0 13px 30px rgba(23, 37, 42, 0.13);
  gap: 13px;
}

.v2-home-hero__floating-card--location {
  bottom: 62px;
  left: -8px;
}

.v2-home-hero__floating-card--directions {
  right: -8px;
  bottom: 38px;
  min-width: 218px;
}

.v2-home-hero__floating-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.v2-home-hero__floating-icon--warm {
  background: #fff7df;
  color: #f2a900;
}

.v2-home-hero__floating-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.v2-home-hero__floating-card > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.v2-home-hero__floating-card strong {
  font-size: 15px;
}

.v2-home-hero__floating-card small {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.v2-home-trust {
  display: grid;
  margin-top: 56px;
  padding: 24px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-home-trust > div {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.v2-home-trust > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--color-border);
}

.v2-home-trust strong {
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.v2-home-trust span {
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-home-help {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  isolation: isolate;
}

.v2-home-help > .v2-container {
  position: relative;
  z-index: 1;
}

.v2-home-help__backdrop,
.v2-home-help__backdrop-dots,
.v2-home-help__backdrop-blob {
  position: absolute;
  pointer-events: none;
}

.v2-home-help__backdrop {
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.v2-home-help__backdrop-dots {
  background-image: radial-gradient(circle, rgba(2, 177, 206, 0.12) 2.3px, transparent 2.5px);
  background-size: 19px 19px;
}

.v2-home-help__backdrop-dots--left {
  top: 130px;
  left: -74px;
  width: 230px;
  height: 166px;
}

.v2-home-help__backdrop-dots--right {
  right: -32px;
  bottom: 90px;
  width: 215px;
  height: 154px;
  background-image: radial-gradient(circle, rgba(255, 181, 27, 0.14) 2.5px, transparent 2.7px);
  background-size: 21px 21px;
}

.v2-home-help__backdrop-blob {
  opacity: 0.72;
}

.v2-home-help__backdrop-blob--peach {
  right: -175px;
  top: 12px;
  width: 390px;
  height: 255px;
  border-radius: 62% 38% 45% 55%/43% 63% 37% 57%;
  background: rgba(255, 166, 82, 0.1);
  transform: rotate(13deg);
}

.v2-home-help__backdrop-blob--cyan {
  bottom: -175px;
  left: -145px;
  width: 430px;
  height: 285px;
  border-radius: 43% 57% 65% 35%/58% 39% 61% 42%;
  background: rgba(43, 187, 208, 0.08);
  transform: rotate(-10deg);
}

.v2-home-help__backdrop-blob--yellow {
  right: 35%;
  bottom: 20px;
  width: 210px;
  height: 145px;
  border-radius: 55% 45% 39% 61%/44% 59% 41% 56%;
  background: rgba(255, 181, 27, 0.07);
  transform: rotate(18deg);
}

.v2-home-help-grid,
.v2-home-service-grid,
.v2-home-specialist-grid,
.v2-home-review-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.v2-home-help-card {
  --help-card-accent: var(--color-primary);
  --help-card-media-bg: #d2edef;
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
}

.v2-home-help-card__media {
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 0;
  aspect-ratio: 11/3;
  background: var(--help-card-media-bg);
}

.v2-home-help-card__media-link {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.v2-home-help-card__media-link:focus-visible {
  outline: 3px solid var(--help-card-accent);
  outline-offset: 3px;
}

.v2-home-help-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 48%;
     object-position: center 48%;
  transition: transform 260ms ease;
}

.v2-home-help-card:hover .v2-home-help-card__media img {
  transform: scale(1.025);
}

.v2-home-help-card__body {
  display: flex;
  min-height: 200px;
  padding: 22px 24px 24px;
  flex: 1;
  flex-direction: column;
}

.v2-home-help-card__body > p {
  color: var(--color-text-muted);
}

.v2-home-help-card__body .v2-button-link {
  margin-top: auto;
  color: var(--help-card-accent);
}

.v2-home-card-number {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--help-card-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 5px 16px rgba(23, 37, 42, 0.13);
}

.v2-home-help-card:nth-child(2) {
  --help-card-accent: #f2ab19;
  --help-card-media-bg: #fbe3a7;
}

.v2-home-help-card:nth-child(3) {
  --help-card-accent: #73a83f;
  --help-card-media-bg: #e3edc8;
}

.v2-home-help-card:nth-child(4) {
  --help-card-accent: #e77f91;
  --help-card-media-bg: #fccbcc;
}

.v2-home-help-card:nth-child(5) {
  --help-card-accent: #8065b4;
  --help-card-media-bg: #dacbed;
}

.v2-home-help-card:nth-child(6) {
  --help-card-accent: #199fa8;
  --help-card-media-bg: #bceae6;
}

.v2-home-help-illustration {
  --illustration-bg: #eaf9fc;
  --illustration-ink: #0299b3;
  position: relative;
  display: block;
  overflow: hidden;
  width: 116px;
  height: 78px;
  flex: 0 0 116px;
  border-radius: 24px 19px 26px 18px;
  background: var(--illustration-bg);
  color: var(--illustration-ink);
  transform: rotate(1.5deg);
}

.v2-home-help-illustration::before {
  position: absolute;
  top: -26px;
  right: -18px;
  width: 88px;
  height: 72px;
  border-radius: 44% 56% 64% 36%/58% 42% 58% 42%;
  background: rgba(255, 255, 255, 0.58);
  content: "";
  transform: rotate(18deg);
}

.v2-home-help-illustration::after {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 38px;
  height: 30px;
  background-image: radial-gradient(circle, currentColor 1.5px, transparent 1.8px);
  background-size: 10px 10px;
  content: "";
  opacity: 0.14;
}

.v2-home-help-illustration__stage,
.v2-home-help-illustration__stage::before,
.v2-home-help-illustration__stage::after,
.v2-home-help-illustration__stage i,
.v2-home-help-illustration__stage i::before,
.v2-home-help-illustration__stage i::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.v2-home-help-illustration__stage {
  z-index: 1;
  inset: 0;
  transform: rotate(-1.5deg);
}

.v2-home-help-illustration__stage i {
  margin: 0;
  font-style: normal;
}

.v2-home-help-illustration--speech .v2-home-help-illustration__stage::before,
.v2-home-help-illustration--speech .v2-home-help-illustration__stage::after {
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.78);
  content: "";
}

.v2-home-help-illustration--speech .v2-home-help-illustration__stage::before {
  top: 17px;
  left: 20px;
  width: 50px;
  height: 37px;
  border-radius: 17px 17px 17px 7px;
}

.v2-home-help-illustration--speech .v2-home-help-illustration__stage::after {
  top: 32px;
  right: 17px;
  width: 35px;
  height: 27px;
  border-radius: 13px 13px 6px 13px;
}

.v2-home-help-illustration--speech i {
  top: 33px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.v2-home-help-illustration--speech i:first-child {
  left: 31px;
}

.v2-home-help-illustration--speech i:nth-child(2) {
  left: 41px;
}

.v2-home-help-illustration--speech i:nth-child(3) {
  left: 51px;
}

.v2-home-help-illustration--speech i:nth-child(4) {
  top: 43px;
  right: 29px;
  box-shadow: 8px 0 0 currentColor;
}

.v2-home-help-illustration--articulation {
  --illustration-bg: #fff4e8;
  --illustration-ink: #d7792c;
}

.v2-home-help-illustration--articulation .v2-home-help-illustration__stage::before {
  top: 24px;
  left: 17px;
  width: 43px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 45% 45%/57% 57% 43% 43%;
  background: rgba(255, 255, 255, 0.7);
  content: "";
  transform: rotate(-7deg);
}

.v2-home-help-illustration--articulation .v2-home-help-illustration__stage::after {
  top: 37px;
  left: 21px;
  width: 35px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: rotate(-7deg);
}

.v2-home-help-illustration--articulation i:nth-child(-n+3) {
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.v2-home-help-illustration--articulation i:first-child {
  top: 30px;
  left: 65px;
  width: 15px;
  height: 19px;
}

.v2-home-help-illustration--articulation i:nth-child(2) {
  top: 25px;
  left: 66px;
  width: 25px;
  height: 29px;
}

.v2-home-help-illustration--articulation i:nth-child(3) {
  top: 20px;
  left: 67px;
  width: 35px;
  height: 39px;
}

.v2-home-help-illustration--articulation i:nth-child(4) {
  top: 16px;
  right: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.v2-home-help-illustration--focus {
  --illustration-bg: #eef7f8;
  --illustration-ink: #188b9e;
}

.v2-home-help-illustration--focus .v2-home-help-illustration__stage::before {
  top: 14px;
  left: 33px;
  width: 52px;
  height: 52px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.72), inset 0 0 0 11px currentColor;
  content: "";
}

.v2-home-help-illustration--focus .v2-home-help-illustration__stage::after {
  top: 34px;
  left: 53px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.v2-home-help-illustration--focus i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.v2-home-help-illustration--focus i:first-child {
  top: 16px;
  left: 22px;
}

.v2-home-help-illustration--focus i:nth-child(2) {
  top: 19px;
  right: 19px;
}

.v2-home-help-illustration--focus i:nth-child(3) {
  bottom: 17px;
  left: 24px;
}

.v2-home-help-illustration--focus i:nth-child(4) {
  right: 18px;
  bottom: 20px;
}

.v2-home-help-illustration--rhythm {
  --illustration-bg: #f0effc;
  --illustration-ink: #6d67b1;
}

.v2-home-help-illustration--rhythm .v2-home-help-illustration__stage::before,
.v2-home-help-illustration--rhythm .v2-home-help-illustration__stage::after,
.v2-home-help-illustration--rhythm i {
  border: 2px solid currentColor;
  background: transparent;
  content: "";
}

.v2-home-help-illustration--rhythm i:first-child,
.v2-home-help-illustration--rhythm i:nth-child(3),
.v2-home-help-illustration--rhythm .v2-home-help-illustration__stage::before {
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.v2-home-help-illustration--rhythm i:nth-child(2),
.v2-home-help-illustration--rhythm i:nth-child(4),
.v2-home-help-illustration--rhythm .v2-home-help-illustration__stage::after {
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.v2-home-help-illustration--rhythm i:first-child {
  top: 34px;
  left: 11px;
  width: 11px;
  height: 5px;
  opacity: 0.56;
}

.v2-home-help-illustration--rhythm i:nth-child(2) {
  top: 39px;
  left: 20px;
  width: 16px;
  height: 9px;
  opacity: 0.76;
}

.v2-home-help-illustration--rhythm i:nth-child(3) {
  top: 22px;
  left: 34px;
  width: 25px;
  height: 17px;
}

.v2-home-help-illustration--rhythm i:nth-child(4) {
  top: 39px;
  left: 57px;
  width: 25px;
  height: 17px;
}

.v2-home-help-illustration--rhythm .v2-home-help-illustration__stage::before {
  top: 30px;
  left: 80px;
  width: 16px;
  height: 9px;
  opacity: 0.76;
}

.v2-home-help-illustration--rhythm .v2-home-help-illustration__stage::after {
  top: 39px;
  left: 94px;
  width: 11px;
  height: 5px;
  opacity: 0.56;
}

.v2-home-help-illustration--literacy {
  --illustration-bg: #fff8df;
  --illustration-ink: #b78612;
}

.v2-home-help-illustration--literacy .v2-home-help-illustration__stage::before,
.v2-home-help-illustration--literacy .v2-home-help-illustration__stage::after {
  top: 20px;
  width: 39px;
  height: 43px;
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.78);
  content: "";
}

.v2-home-help-illustration--literacy .v2-home-help-illustration__stage::before {
  left: 18px;
  border-radius: 5px 13px 5px 8px;
  transform: skewY(5deg);
}

.v2-home-help-illustration--literacy .v2-home-help-illustration__stage::after {
  left: 56px;
  border-radius: 13px 5px 8px 5px;
  transform: skewY(-5deg);
}

.v2-home-help-illustration--literacy i:first-child,
.v2-home-help-illustration--literacy i:nth-child(2) {
  top: 35px;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 8px 0 rgba(183, 134, 18, 0.55);
}

.v2-home-help-illustration--literacy i:first-child {
  left: 26px;
  transform: rotate(3deg);
}

.v2-home-help-illustration--literacy i:nth-child(2) {
  left: 64px;
  transform: rotate(-3deg);
}

.v2-home-help-illustration--literacy i:nth-child(3) {
  top: 16px;
  right: 18px;
  width: 7px;
  height: 39px;
  border: 2px solid currentColor;
  border-radius: 5px 5px 2px 2px;
  background: #fff;
  transform: rotate(36deg);
}

.v2-home-help-illustration--literacy i:nth-child(4) {
  top: 55px;
  right: 34px;
  width: 0;
  height: 0;
  border-top: 6px solid currentColor;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  transform: rotate(36deg);
}

.v2-home-help-illustration--sensory {
  --illustration-bg: #eaf8f1;
  --illustration-ink: #3b9b72;
}

.v2-home-help-illustration--sensory .v2-home-help-illustration__stage::before {
  bottom: 11px;
  left: 17px;
  width: 82px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  opacity: 0.16;
}

.v2-home-help-illustration--sensory .v2-home-help-illustration__stage::after {
  top: 15px;
  left: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 4px 0 rgba(59, 155, 114, 0.5), 2px 13px 0 rgba(59, 155, 114, 0.3);
  content: "";
  opacity: 0.72;
}

.v2-home-help-illustration--sensory i:first-child {
  top: 24px;
  left: 19px;
  width: 35px;
  height: 35px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  transform: rotate(-5deg);
}

.v2-home-help-illustration--sensory i:first-child::before {
  top: 9px;
  left: 4px;
  width: 25px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.62;
  transform: rotate(17deg);
}

.v2-home-help-illustration--sensory i:first-child::after {
  top: 8px;
  left: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 11px 3px 0 currentColor, 5px 13px 0 currentColor;
  content: "";
  opacity: 0.42;
}

.v2-home-help-illustration--sensory i:nth-child(2) {
  top: 34px;
  left: 65px;
  width: 21px;
  height: 29px;
  border-radius: 8px 8px 10px 10px;
  background: currentColor;
  transform: rotate(-3deg);
}

.v2-home-help-illustration--sensory i:nth-child(2)::before {
  top: -17px;
  left: 1px;
  width: 4px;
  height: 21px;
  border-radius: 4px 4px 2px 2px;
  background: currentColor;
  box-shadow: 6px -4px 0 currentColor, 12px -2px 0 currentColor, 18px 2px 0 currentColor;
  content: "";
}

.v2-home-help-illustration--sensory i:nth-child(2)::after {
  top: 7px;
  right: -9px;
  width: 13px;
  height: 7px;
  border-radius: 0 6px 6px 0;
  background: currentColor;
  content: "";
  transform: rotate(-28deg);
  transform-origin: left center;
}

.v2-home-help-illustration--sensory i:nth-child(3),
.v2-home-help-illustration--sensory i:nth-child(4) {
  display: none;
}

.v2-home-help-card h3 {
  max-width: 300px;
}

.v2-home-signs {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.v2-home-signs::before,
.v2-home-signs::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.v2-home-signs::before {
  top: -170px;
  right: -115px;
  width: 380px;
  height: 380px;
  background: rgba(255, 166, 82, 0.12);
}

.v2-home-signs::after {
  bottom: -230px;
  left: -150px;
  width: 420px;
  height: 420px;
  background: rgba(2, 177, 206, 0.08);
}

.v2-home-signs .v2-container {
  position: relative;
  z-index: 1;
}

.v2-home-signs__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 86px);
}

.v2-home-signs__intro h2 {
  max-width: 500px;
}

.v2-home-signs__intro .v2-home-copy {
  margin-bottom: 26px;
}

.v2-home-signs__note {
  padding: 20px 22px;
  border: 1px solid rgba(2, 177, 206, 0.24);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.72);
}

.v2-home-signs__note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-primary-hover);
  font-size: 13px;
}

.v2-home-signs__note p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.v2-home-signs__action {
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
  flex-direction: column;
  gap: 10px;
}

.v2-home-signs__action small {
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-home-signs__list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.v2-home-signs__list li {
  display: grid;
  min-height: 134px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(223, 234, 237, 0.92);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  transition: border-color var(--transition), transform var(--transition);
}

.v2-home-signs__list li:hover {
  border-color: rgba(2, 177, 206, 0.42);
  transform: translateY(-2px);
}

.v2-home-signs__list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 700;
}

.v2-home-signs__list p {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.v2-hippo-game {
  overflow: hidden;
  padding: clamp(24px, 3vw, 40px) 0;
  background: radial-gradient(circle at 88% 16%, rgba(255, 206, 92, 0.28), transparent 28%), linear-gradient(145deg, #f8fdfe 0%, #eefbfc 100%);
}

.v2-hippo-game > .v2-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.v2-hippo-game__card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 260px;
  align-items: center;
  padding: 28px max(32px, (100vw - 1200px) / 2 + 32px);
  border-top: 1px solid rgba(2, 177, 206, 0.17);
  border-bottom: 1px solid rgba(2, 177, 206, 0.17);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(23, 37, 42, 0.08);
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
}

.v2-hippo-game__card::before,
.v2-hippo-game__card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.v2-hippo-game__card::before {
  top: -92px;
  right: -62px;
  width: 310px;
  height: 310px;
  background: rgba(2, 177, 206, 0.09);
}

.v2-hippo-game__card::after {
  right: 21%;
  bottom: -110px;
  width: 230px;
  height: 230px;
  background: rgba(255, 206, 92, 0.16);
}

.v2-hippo-game__copy {
  position: relative;
  z-index: 2;
}

.v2-hippo-game__copy h2 {
  max-width: 510px;
  margin-bottom: 18px;
}

.v2-hippo-game__hint {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
}

.v2-hippo-game__hint i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-light);
  font-size: 9px;
  font-style: normal;
}

.v2-hippo-game .earbodyhtml {
  --v2-hippo-eye-x: 0px;
  --v2-hippo-eye-y: 0px;
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 190px;
  place-items: center;
}

.v2-hippo-game .earbody {
  position: relative;
  display: grid;
  width: min(100%, 410px);
  min-height: 180px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 177, 206, 0.13) 0%, rgba(2, 177, 206, 0.04) 56%, transparent 57%);
}

.v2-hippo-game button.ear {
  position: relative;
  width: min(84%, 280px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 14px 15px rgba(42, 65, 72, 0.16));
  animation: v2-hippo-float 3.2s ease-in-out infinite;
}

.v2-hippo-game button.ear::after {
  position: absolute;
  right: 6%;
  bottom: -30px;
  left: 6%;
  height: 18px;
  border-radius: 50%;
  background: rgba(23, 37, 42, 0.12);
  content: "";
  filter: blur(8px);
  transform-origin: center;
  animation: v2-hippo-shadow 3.2s ease-in-out infinite;
}

.v2-hippo-game button.ear:focus-visible {
  border-radius: 38px;
  outline: 4px solid rgba(2, 177, 206, 0.24);
  outline-offset: 9px;
}

.v2-hippo-game button.ear svg {
  display: block;
  overflow: visible;
  width: 100%;
}

.v2-hippo-game .ear-left-outer,
.v2-hippo-game .ear-right-outer {
  fill: #8f9da0;
}

.v2-hippo-game .ear-left-inner,
.v2-hippo-game .ear-right-inner {
  fill: #66777b;
}

.v2-hippo-game .eye-right-outer,
.v2-hippo-game .eye-left-outer,
.v2-hippo-game .nostril-right-outer,
.v2-hippo-game .nostril-left-outer,
.v2-hippo-game .body {
  fill: #aebcbf;
}

.v2-hippo-game .eye-right-inner,
.v2-hippo-game .eye-left-inner {
  fill: #fff;
}

.v2-hippo-game .nostril-right-inner,
.v2-hippo-game .nostril-left-inner {
  fill: #7c8d91;
}

.v2-hippo-game .freckle {
  fill: #77898d;
}

.v2-hippo-game .mouth-back {
  fill: #334b51;
}

.v2-hippo-game .tongue {
  fill: #ff6f70;
  stroke: #ff6f70;
  stroke-width: 18px;
  stroke-linecap: round;
}

.v2-hippo-game .tooth-left,
.v2-hippo-game .tooth-right {
  fill: #fffde8;
}

.v2-hippo-game .mouth-pieces,
.v2-hippo-game .teeth,
.v2-hippo-game .freckles,
.v2-hippo-game .ears,
.v2-hippo-game .eyes,
.v2-hippo-game .nostrils,
.v2-hippo-game .eye-left,
.v2-hippo-game .eye-right {
  transition: transform 240ms ease;
}

.v2-hippo-game .eye-left-pupil,
.v2-hippo-game .eye-right-pupil {
  transform: translate(var(--v2-hippo-eye-x), var(--v2-hippo-eye-y));
  transition: transform 120ms ease-out;
}

.v2-hippo-game .ear-right {
  transform-box: fill-box;
  transform-origin: center;
  animation: v2-hippo-ear-wiggle 3.4s ease-in-out infinite;
}

.v2-hippo-game button.ear:hover .mouth-pieces,
.v2-hippo-game button.ear:focus-visible .mouth-pieces {
  transform: translateY(-70px);
}

.v2-hippo-game button.ear:hover .teeth,
.v2-hippo-game button.ear:focus-visible .teeth {
  transform: translateY(-70px) scaleY(1.15);
}

.v2-hippo-game button.ear:hover .freckles,
.v2-hippo-game button.ear:focus-visible .freckles {
  transform: translateY(-10px);
}

.v2-hippo-game button.ear:hover .ears,
.v2-hippo-game button.ear:focus-visible .ears {
  transform: translateY(6px);
}

.v2-hippo-game button.ear:hover .eyes,
.v2-hippo-game button.ear:focus-visible .eyes {
  transform: translateY(2px);
}

.v2-hippo-game button.ear:hover .eye-left,
.v2-hippo-game button.ear:focus-visible .eye-left {
  transform: translateX(2px);
}

.v2-hippo-game button.ear:hover .eye-right,
.v2-hippo-game button.ear:focus-visible .eye-right {
  transform: translateX(-2px);
}

.v2-hippo-game button.ear:hover .nostrils,
.v2-hippo-game button.ear:focus-visible .nostrils {
  transform: translateY(-6px);
}

.v2-hippo-game__bubble {
  position: absolute;
  z-index: 3;
  top: 5px;
  right: 3%;
  padding: 10px 15px;
  border: 1px solid rgba(2, 177, 206, 0.22);
  border-radius: 16px 16px 16px 4px;
  background: #fff;
  color: var(--color-primary-hover);
  box-shadow: 0 8px 22px rgba(23, 37, 42, 0.08);
  font-size: 12px;
  font-weight: 700;
  animation: v2-hippo-bubble 2.8s ease-in-out infinite;
}

@keyframes v2-hippo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes v2-hippo-shadow {
  0%, 100% {
    opacity: 0.78;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.48;
    transform: scaleX(0.88);
  }
}
@keyframes v2-hippo-ear-wiggle {
  0%, 72%, 100% {
    transform: rotate(0);
  }
  77% {
    transform: rotate(38deg);
  }
  82% {
    transform: rotate(-8deg);
  }
  87% {
    transform: rotate(24deg);
  }
  92% {
    transform: rotate(0);
  }
}
@keyframes v2-hippo-bubble {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}
body.v2-quiz-open,
body.v2-sound-game-open {
  overflow: hidden;
}

.v2-sound-game-dialog {
  width: min(920px, 100vw - 32px);
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-large);
  background: transparent;
  color: var(--color-text);
  box-shadow: 0 28px 90px rgba(23, 37, 42, 0.24);
}

.v2-sound-game-dialog::backdrop {
  background: rgba(23, 37, 42, 0.58);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.v2-sound-game-dialog__panel {
  position: relative;
  overflow-y: auto;
  max-height: calc(100dvh - 32px);
  padding: clamp(28px, 5vw, 52px);
  border-radius: inherit;
  background: radial-gradient(circle at 100% 0, rgba(2, 177, 206, 0.13), transparent 30%), var(--color-bg);
}

.v2-sound-game-dialog__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.v2-sound-game-dialog__close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
  transform: rotate(4deg);
}

.v2-sound-game-dialog__header {
  display: flex;
  align-items: flex-end;
  padding-right: 48px;
  margin-bottom: 28px;
  justify-content: space-between;
  gap: 24px;
}

.v2-sound-game-dialog__header h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
}

.v2-sound-game-dialog__progress {
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 8px 12px;
  margin: 0;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 700;
}

.v2-sound-game {
  display: grid;
  align-items: start;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.v2-sound-game__listen {
  display: flex;
  width: 150px;
  min-width: 0;
  flex-direction: column;
}

.v2-sound-game__sound {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 16px 12px;
  border: 1px solid rgba(2, 177, 206, 0.25);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--color-primary-light), #fff);
  color: var(--color-text);
  cursor: pointer;
  text-align: center;
  gap: 4px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.v2-sound-game__sound:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(2, 177, 206, 0.12);
  transform: translateY(-2px);
}

.v2-sound-game__sound > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(2, 177, 206, 0.22);
  font-size: 26px;
}

.v2-sound-game__sound.is-playing > span {
  animation: v2-sound-pulse 760ms ease-in-out infinite alternate;
}

.v2-sound-game__sound strong {
  font-size: 15px;
}

.v2-sound-game__sound small {
  color: var(--color-text-muted);
  font-size: 11px;
}

@keyframes v2-sound-pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}
.v2-sound-game__feedback {
  min-height: 0;
  margin: 8px 2px 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.v2-sound-game__feedback.is-success {
  color: #218658;
  font-weight: 700;
}

.v2-sound-game__feedback.is-error {
  color: #bd554f;
  font-weight: 700;
}

.v2-sound-game__choices {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v2-sound-game-choice {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 8px 8px 14px;
  border: 2px solid transparent;
  border-radius: var(--radius-card);
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 10px 26px rgba(23, 37, 42, 0.08);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), opacity var(--transition), transform var(--transition);
}

.v2-sound-game-choice:hover {
  border-color: rgba(2, 177, 206, 0.48);
  box-shadow: 0 14px 32px rgba(23, 37, 42, 0.12);
  transform: translateY(-3px);
}

.v2-sound-game-choice img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: calc(var(--radius-card) - 8px);
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-sound-game-choice span {
  display: block;
  padding-top: 11px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.v2-sound-game-choice.is-wrong {
  border-color: rgba(189, 85, 79, 0.4);
  opacity: 0.45;
  transform: scale(0.97);
}

.v2-sound-game-choice.is-correct {
  border-color: #40ac7a;
  box-shadow: 0 0 0 4px rgba(64, 172, 122, 0.12);
  transform: translateY(-3px);
}

.v2-sound-game-result[hidden],
.v2-sound-game[hidden] {
  display: none;
}

.v2-sound-game-result {
  display: grid;
  min-height: 350px;
  place-items: center;
  align-content: center;
  padding: 32px;
  border: 1px solid rgba(2, 177, 206, 0.2);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--color-primary-light), #fff);
  text-align: center;
}

.v2-sound-game-result__mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #ffce5c;
  color: #6e5310;
  box-shadow: 0 12px 30px rgba(255, 206, 92, 0.28);
  font-size: 34px;
}

.v2-sound-game-result h3 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
}

.v2-sound-game-result > p:not(.v2-eyebrow) {
  margin-bottom: 24px;
  color: var(--color-text-muted);
}

.v2-sound-game-result__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 800px) {
  .v2-hippo-game__card {
    min-height: 0;
    padding: 28px 24px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .v2-hippo-game__hint {
    justify-content: center;
  }
  .v2-hippo-game .earbodyhtml {
    min-height: 180px;
  }
  .v2-hippo-game .earbody {
    min-height: 170px;
  }
  .v2-sound-game {
    grid-template-columns: 1fr;
  }
  .v2-sound-game__listen {
    width: min(150px, 100%);
    margin: 0 auto;
  }
  .v2-sound-game__sound {
    min-height: 120px;
  }
}
@media (max-width: 560px) {
  .v2-hippo-game__card {
    padding: 26px 16px 18px;
  }
  .v2-hippo-game__bubble {
    right: 0;
  }
  .v2-sound-game-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }
  .v2-sound-game-dialog__panel {
    max-height: calc(100dvh - 16px);
    padding: 28px 16px 24px;
  }
  .v2-sound-game-dialog__header {
    display: block;
    padding-right: 40px;
    margin-bottom: 20px;
  }
  .v2-sound-game-dialog__progress {
    display: inline-block;
    margin-top: 12px;
  }
  .v2-sound-game__choices {
    gap: 8px;
  }
  .v2-sound-game-choice {
    padding: 5px 5px 10px;
    border-radius: 14px;
  }
  .v2-sound-game-choice span {
    padding-top: 8px;
    font-size: 11px;
  }
  .v2-sound-game-result {
    min-height: 330px;
    padding: 24px 16px;
  }
}
.v2-quiz-dialog {
  width: min(1040px, 100vw - 32px);
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-large);
  background: transparent;
  color: var(--color-text);
  box-shadow: 0 28px 90px rgba(23, 37, 42, 0.22);
}

.v2-quiz-dialog::backdrop {
  background: rgba(23, 37, 42, 0.56);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.v2-quiz-dialog__panel {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 610px;
  max-height: calc(100dvh - 32px);
  border-radius: inherit;
  background: var(--color-bg);
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
}

.v2-quiz-dialog__close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.v2-quiz-dialog__close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
  transform: rotate(4deg);
}

.v2-quiz-dialog__intro {
  display: flex;
  min-width: 0;
  padding: 48px 42px 40px;
  background: var(--color-primary-light);
  flex-direction: column;
}

.v2-quiz-dialog__intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.v2-quiz-dialog__intro > p:not(.v2-eyebrow) {
  color: var(--color-text-muted);
  font-size: 15px;
}

.v2-quiz-dialog__intro > small {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.55;
}

.v2-quiz-progress {
  display: grid;
  margin-top: auto;
  gap: 10px;
}

.v2-quiz-progress > span:first-child {
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 700;
}

.v2-quiz-progress__track {
  display: block;
  overflow: hidden;
  height: 8px;
  border-radius: 8px;
  background: rgba(2, 177, 206, 0.14);
}

.v2-quiz-progress__track i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-primary);
  transition: width 220ms ease;
}

.v2-quiz-form {
  display: flex;
  min-width: 0;
  min-height: 610px;
  overflow-y: auto;
  padding: 52px 48px 38px;
  flex-direction: column;
}

.v2-quiz-step[hidden],
.v2-quiz-result[hidden],
.v2-quiz-dialog__nav[hidden],
.v2-quiz-dialog__nav [hidden] {
  display: none;
}

.v2-quiz-step__counter {
  margin-bottom: 14px;
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-quiz-step fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.v2-quiz-step legend {
  width: 100%;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.v2-quiz-step fieldset > p {
  margin-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.v2-quiz-name-field {
  display: grid;
  margin-bottom: 18px;
  gap: 7px;
}

.v2-quiz-name-field > span {
  font-size: 12px;
  font-weight: 700;
}

.v2-quiz-name-field > span small {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 500;
}

.v2-quiz-name-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.v2-quiz-name-field input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 177, 206, 0.12);
}

.v2-quiz-options {
  display: grid;
  gap: 10px;
}

.v2-quiz-option {
  display: grid;
  min-height: 52px;
  align-items: start;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  cursor: pointer;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  transition: background-color var(--transition), border-color var(--transition);
}

.v2-quiz-option:hover {
  border-color: rgba(2, 177, 206, 0.55);
  background: var(--color-primary-light);
}

.v2-quiz-option:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.v2-quiz-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}

.v2-quiz-option span {
  font-size: 13px;
  line-height: 1.5;
}

.v2-quiz-dialog__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 26px;
  gap: 12px;
}

.v2-quiz-dialog__nav .v2-button {
  min-width: 132px;
}

.v2-quiz-form__status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  text-align: right;
}

.v2-quiz-form__status.is-error {
  color: #a33b3b;
}

.v2-quiz-result {
  margin-block: auto;
}

.v2-quiz-result__mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  background: var(--color-success-light);
  color: #218c5b;
  font-size: 23px;
  font-weight: 700;
}

.v2-quiz-result h3 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.v2-quiz-result__name {
  margin-bottom: 8px;
  color: var(--color-primary-hover) !important;
  font-size: 12px !important;
  font-weight: 700;
}

.v2-quiz-result > p:not(.v2-eyebrow):not(.v2-quiz-result__disclaimer) {
  color: var(--color-text-muted);
  font-size: 16px;
}

.v2-quiz-result__reasons {
  padding: 18px 20px;
  margin: 22px 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg-soft);
}

.v2-quiz-result__reasons h4 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 14px;
}

.v2-quiz-result__reasons ul {
  display: grid;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.5;
  list-style: none;
  gap: 8px;
}

.v2-quiz-result__reasons li {
  position: relative;
  padding-left: 18px;
}

.v2-quiz-result__reasons li::before {
  position: absolute;
  top: 0.58em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
}

.v2-quiz-result[data-v2-quiz-result-level=high] .v2-quiz-result__mark {
  background: var(--color-warm-light);
  color: #b76820;
}

.v2-quiz-result[data-v2-quiz-result-level=medium] .v2-quiz-result__mark {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.v2-quiz-result__disclaimer {
  padding: 14px 16px;
  margin-top: 0;
  border-radius: var(--radius-control);
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-quiz-result__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
  gap: 10px;
}

.v2-home-process {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.v2-home-process li {
  position: relative;
  min-width: 0;
  padding: 0 16px;
  text-align: center;
}

.v2-home-process li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid var(--color-primary);
  border-radius: 16px;
  background: var(--color-bg);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 700;
}

.v2-home-process__arrow {
  position: absolute;
  top: 5px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 38px;
  background: var(--color-primary);
  content: "";
  pointer-events: none;
  -webkit-mask: url("/images/site-v2/process-arrow.svg") center/100% 100% no-repeat;
  mask: url("/images/site-v2/process-arrow.svg") center/100% 100% no-repeat;
}

.v2-home-process li:nth-child(2) .v2-home-process__arrow {
  background: #35a875;
}

.v2-home-process li:nth-child(3) .v2-home-process__arrow {
  background: #8075d3;
}

.v2-home-process li:nth-child(4) .v2-home-process__arrow {
  background: #f39a16;
}

.v2-home-process h3 {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.v2-home-process p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.v2-home-team {
  padding-top: 82px;
  margin-top: 82px;
  border-top: 1px solid var(--color-border);
}

.v2-home-team .v2-specialist-card--featured {
  display: grid;
  min-height: 430px;
  padding: 24px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: minmax(0, 1fr) auto;
  -moz-column-gap: clamp(28px, 5vw, 60px);
       column-gap: clamp(28px, 5vw, 60px);
}

.v2-home-team .v2-specialist-card--featured .v2-specialist-card__photo {
  height: 100%;
  min-height: 380px;
  margin: 0;
  grid-row: 1/-1;
  aspect-ratio: auto;
  border-radius: var(--radius-card);
}

.v2-home-team .v2-specialist-card--featured .v2-specialist-card__body {
  padding-top: 22px;
}

.v2-home-team .v2-specialist-card--featured .v2-specialist-card__body h3 {
  max-width: 540px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.v2-home-team .v2-specialist-card--featured .v2-specialist-card__position {
  font-size: 14px;
}

.v2-home-team .v2-specialist-card--featured .v2-specialist-card__actions {
  padding-bottom: 14px;
  grid-column: 2;
}

.v2-home-credentials {
  display: grid;
  padding: 28px;
  margin-top: 24px;
  border: 1px solid rgba(2, 177, 206, 0.22);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
}

.v2-home-credentials__intro h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.v2-home-credentials__intro > p:not(.v2-eyebrow) {
  max-width: 430px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.v2-home-credentials__intro .v2-button-link {
  margin-top: 10px;
}

.v2-home-credentials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v2-home-credential {
  display: flex;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-bg);
  color: var(--color-text);
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.v2-home-credential:hover {
  border-color: rgba(2, 177, 206, 0.45);
  transform: translateY(-2px);
}

.v2-home-credential__media {
  display: grid;
  overflow: hidden;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 11px;
  aspect-ratio: 4/3;
  background: var(--color-bg-soft);
}

.v2-home-credential__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-home-credential > span:last-child {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.v2-home-service-grid .v2-card,
.v2-home-specialist-grid .v2-card,
.v2-home-review-grid .v2-card {
  height: 100%;
}

.v2-home-service-grid .v2-service-card {
  min-height: 315px;
}

.v2-home-service-grid .v2-card-icon {
  margin-bottom: 28px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.v2-home-section-link {
  display: flex;
  margin-top: 30px;
  justify-content: flex-end;
}

.v2-home-specialist-grid .v2-specialist-card > div:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.v2-home-specialist-grid .v2-specialist-card > div:nth-child(2) p:last-child {
  margin-bottom: 0;
}

.v2-home-anchor {
  display: block;
  width: 0;
  height: 0;
}

.v2-home-logosky {
  background: var(--color-primary-light);
}

.v2-home-logosky__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 44px;
}

.v2-home-copy {
  max-width: 690px;
  color: var(--color-text-muted);
  font-size: 18px;
}

.v2-home-check-list {
  display: grid;
  padding: 0;
  margin: 28px 0 32px;
  gap: 12px;
  list-style: none;
}

.v2-home-check-list li {
  position: relative;
  padding-left: 30px;
}

.v2-home-check-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 7px;
  background: var(--color-success-light);
  color: #218c5b;
  content: "\2713";
  font-size: 11px;
  font-weight: 700;
}

.v2-home-logosky__previews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.v2-home-logosky__previews .v2-card {
  padding: 16px;
}

.v2-home-logosky-card {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.v2-home-logosky-card:focus-visible {
  border-color: var(--color-primary);
}

.v2-home-logosky-card__media {
  overflow: hidden;
  width: 100%;
  margin: 0 0 18px;
  border-radius: 14px;
  aspect-ratio: 500/305;
  background: var(--color-bg-secondary);
}

.v2-home-logosky-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition);
}

.v2-home-logosky-card:hover .v2-home-logosky-card__media img {
  transform: scale(1.025);
}

.v2-home-logosky-card h3 {
  font-size: 19px;
}

.v2-home-logosky-card > p:not(.v2-eyebrow) {
  font-size: 13px;
}

.v2-home-logosky-card .v2-game-card__meta {
  align-items: center;
  color: var(--color-primary-hover);
  gap: 6px;
}

.v2-home-logosky-card:last-child {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: auto auto 1fr auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.v2-home-logosky-card:last-child .v2-home-logosky-card__media {
  height: 100%;
  min-height: 190px;
  margin: 0;
  grid-row: 1/-1;
  aspect-ratio: auto;
}

.v2-home-logosky-card:last-child .v2-game-card__meta {
  align-self: end;
}

.v2-home-review-platforms {
  display: grid;
  margin: -8px 0 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v2-home-rating-card {
  display: grid;
  position: relative;
  align-items: center;
  min-height: 132px;
  padding: 20px 54px 20px 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(23, 37, 42, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
}

.v2-home-rating-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  content: "";
  opacity: 0;
  transition: opacity var(--transition);
}

.v2-home-rating-card:hover {
  border-color: rgba(2, 177, 206, 0.48);
  box-shadow: 0 16px 38px rgba(23, 37, 42, 0.08);
  transform: translateY(-2px);
}

.v2-home-rating-card:hover::before {
  opacity: 1;
}

.v2-home-rating-card__mark {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--color-bg-soft);
  color: #4285f4;
  font-size: 23px;
  font-weight: 700;
  place-items: center;
}

.v2-home-rating-card--yandex .v2-home-rating-card__mark {
  background: #fff1f1;
  color: #fc3f1d;
}

.v2-home-rating-card__body,
.v2-home-rating-card__source,
.v2-home-rating-card__score-row,
.v2-home-rating-card__body small {
  display: block;
}

.v2-home-rating-card__source {
  margin-bottom: 4px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.v2-home-rating-card__score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2-home-rating-card__score-row > strong {
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.v2-home-rating-card .v2-stars {
  gap: 2px;
}

.v2-home-rating-card .v2-stars__icon {
  width: 16px;
  height: 15px;
}

.v2-home-rating-card__body small {
  margin-top: 7px;
  color: var(--color-text-light);
  font-size: 11px;
}

.v2-home-rating-card__action {
  display: grid;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
  place-items: center;
}

.v2-home-rating-card:hover .v2-home-rating-card__action {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.v2-home-review-grid .v2-review-card {
  min-height: 330px;
}

.v2-home-about {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(48px, 7vw, 90px);
}

.v2-home-about__content h2 {
  max-width: 540px;
}

.v2-home-location {
  display: grid;
  min-height: 370px;
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg);
  box-shadow: 0 16px 44px rgba(23, 37, 42, 0.055);
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
}

.v2-home-location__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
}

.v2-home-location__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  place-items: center;
}

.v2-home-location__content h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.v2-home-location__content > p:not(.v2-eyebrow) {
  max-width: 390px;
  margin-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.v2-home-location__map {
  display: block;
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background: var(--color-bg-secondary);
  color: var(--color-text);
  text-decoration: none;
}

.v2-home-location__map img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition);
}

.v2-home-location__map > span {
  display: inline-flex;
  position: absolute;
  right: 18px;
  bottom: 18px;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(223, 234, 237, 0.92);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(23, 37, 42, 0.12);
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
}

.v2-home-location__map:hover img {
  transform: scale(1.018);
}

.v2-home-location__map:hover > span {
  color: var(--color-primary-hover);
}

.v2-home-photo-mosaic {
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.v2-home-photo-mosaic .v2-home-media-placeholder {
  border-radius: var(--radius-card);
}

.v2-home-photo-mosaic .v2-home-media-placeholder:nth-child(2) img {
  -o-object-position: 50% 44%;
     object-position: 50% 44%;
}

.v2-home-photo-mosaic__large {
  grid-row: 1/-1;
}

.v2-home-about-media {
  padding-top: 72px;
  margin-top: 72px;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 1100px) {
  .v2-site-header__inner {
    gap: 20px;
  }
  .v2-site-nav {
    gap: 14px;
  }
  .v2-site-nav > a:not(.v2-button) {
    font-size: 12px;
  }
  .v2-home-process li {
    padding-inline: 10px;
  }
  .v2-home-process h3 {
    font-size: 15px;
  }
  .v2-home-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
    gap: 30px;
  }
  .v2-home-hero__content .v2-actions {
    gap: 10px;
  }
  .v2-home-hero__content .v2-button {
    padding-inline: 16px;
    font-size: 14px;
  }
  .v2-home-hero__visual {
    --hero-front-top: 54px;
    --hero-front-right: 18px;
    --hero-front-width: calc(100% - 24px);
    --hero-back-top: 250px;
    --hero-back-right: -18px;
    --hero-back-width: 72%;
    min-height: 500px;
  }
  .v2-home-hero__photo-blob {
    top: -2px;
    right: -80px;
    width: 560px;
  }
  .v2-home-hero__floating-card--location {
    bottom: 58px;
    left: -4px;
  }
  .v2-home-hero__floating-card--directions {
    right: -6px;
    bottom: 32px;
  }
  .v2-home-hero__floating-card {
    min-width: 184px;
    padding: 14px 15px;
    gap: 11px;
  }
  .v2-home-hero__floating-card--directions {
    min-width: 200px;
  }
  .v2-home-hero__floating-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .v2-home-hero__floating-icon svg {
    width: 27px;
    height: 27px;
  }
  .v2-home-hero__floating-card strong {
    font-size: 14px;
  }
  .v2-home-logosky__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }
}
@media (max-width: 900px) {
  .v2-menu-open {
    overflow: hidden;
  }
  .v2-site-header__inner {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .v2-js .v2-menu-toggle {
    display: inline-flex;
  }
  .v2-site-nav {
    display: grid;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-bg);
    box-shadow: var(--shadow-soft);
    grid-column: 1/-1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
  }
  .v2-js .v2-site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: none;
  }
  .v2-js .v2-site-nav.is-open {
    display: grid;
  }
  .v2-site-nav > a:not(.v2-button) {
    padding: 11px 10px;
    border-radius: 9px;
    font-size: 14px;
  }
  .v2-site-nav > a:not(.v2-button):hover {
    background: var(--color-bg-soft);
  }
  .v2-site-nav > a:not(.v2-button)::after {
    display: none;
  }
  .v2-site-nav__cta {
    width: 100%;
    margin-top: 10px;
    grid-column: 1/-1;
  }
  .v2-home-hero__grid,
  .v2-home-logosky__grid,
  .v2-home-about,
  .v2-home-location {
    grid-template-columns: 1fr;
  }
  .v2-home-location__map {
    min-height: 340px;
  }
  .v2-home-hero__visual {
    --hero-front-top: 62px;
    --hero-front-right: 70px;
    --hero-front-width: min(550px, calc(100% - 102px));
    --hero-back-top: 278px;
    --hero-back-right: 16px;
    --hero-back-width: min(400px, 60%);
    width: 100%;
    max-width: 700px;
    min-height: 590px;
    margin-inline: auto;
  }
  .v2-home-hero__photo-blob {
    top: -10px;
    right: -8px;
    width: 680px;
  }
  .v2-home-hero__floating-card--location {
    bottom: 68px;
    left: 46px;
  }
  .v2-home-hero__floating-card--directions {
    right: 38px;
    bottom: 40px;
  }
  .v2-home-hero__rays {
    top: 18px;
    left: 56px;
  }
  .v2-home-hero__backdrop-dots--bottom {
    left: 26%;
    opacity: 0.65;
  }
  .v2-home-hero__backdrop-dots--right,
  .v2-home-hero__backdrop-blob--yellow {
    opacity: 0.45;
  }
  .v2-home-help__backdrop-dots--left {
    left: -110px;
  }
  .v2-home-help__backdrop-dots--right {
    right: -82px;
    opacity: 0.7;
  }
  .v2-home-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .v2-home-process__arrow {
    display: none;
  }
  .v2-home-process li {
    padding: 0;
    text-align: left;
  }
  .v2-home-process li > span {
    margin: 0 0 16px;
  }
  .v2-home-team .v2-specialist-card--featured {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    -moz-column-gap: 28px;
         column-gap: 28px;
  }
  .v2-home-credentials {
    grid-template-columns: 1fr;
  }
  .v2-home-help-grid,
  .v2-home-service-grid,
  .v2-home-specialist-grid,
  .v2-home-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-home-review-grid .v2-review-card:last-child {
    grid-column: 1/-1;
  }
  .v2-home-logosky__previews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .v2-home-logosky-card:last-child {
    display: flex;
    grid-column: auto;
  }
  .v2-home-logosky-card:last-child .v2-home-logosky-card__media {
    height: auto;
    min-height: 0;
    margin-bottom: 18px;
    aspect-ratio: 500/305;
  }
  .v2-home-photo-mosaic {
    min-height: 440px;
  }
}
@media (max-width: 700px) {
  .v2-js .v2-site-nav {
    right: 16px;
    left: 16px;
    grid-template-columns: 1fr;
  }
  .v2-site-nav__cta {
    grid-column: auto;
  }
  .v2-home-hero {
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .v2-home-hero__grid {
    gap: 34px;
  }
  .v2-home-hero__content .v2-lead {
    margin-bottom: 26px;
  }
  .v2-home-hero__content .v2-actions {
    flex-wrap: wrap;
  }
  .v2-home-hero__wave {
    width: 150px;
    margin: 13px 0 20px;
  }
  .v2-home-hero__visual {
    --hero-front-top: 42px;
    --hero-front-right: 10px;
    --hero-front-width: calc(100% - 20px);
    --hero-front-border-width: 5px;
    --hero-front-radius: 28px 23px 31px 25px;
    --hero-front-transform: rotate(-2.5deg);
    max-width: 430px;
    min-height: 380px;
  }
  .v2-home-hero__photo--secondary,
  .v2-home-hero__shape--organic,
  .v2-home-hero__dots {
    display: none;
  }
  .v2-home-hero__visual.is-swapped .v2-home-hero__photo--primary {
    z-index: 3;
    top: var(--hero-front-top);
    right: var(--hero-front-right);
    width: var(--hero-front-width);
    border-width: var(--hero-front-border-width);
    border-radius: var(--hero-front-radius);
    transform: var(--hero-front-transform);
  }
  .v2-home-hero__photo-blob {
    top: 2px;
    right: -38px;
    width: 400px;
  }
  .v2-home-hero__shape--peach {
    display: none;
  }
  .v2-home-hero__rays {
    top: 4px;
    left: 4px;
    transform: scale(0.7);
    transform-origin: left bottom;
  }
  .v2-home-hero__floating-card {
    bottom: 42px;
    min-width: 0;
    padding: 10px 11px;
    border-radius: 15px;
    gap: 8px;
  }
  .v2-home-hero__floating-card--location {
    left: 0;
    width: 154px;
  }
  .v2-home-hero__floating-card--directions {
    right: 0;
    width: 172px;
  }
  .v2-home-hero__floating-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }
  .v2-home-hero__floating-icon svg {
    width: 22px;
    height: 22px;
  }
  .v2-home-hero__floating-card strong {
    font-size: 12px;
  }
  .v2-home-hero__floating-card small {
    margin-top: 1px;
    font-size: 9px;
  }
  .v2-home-hero__backdrop-dots--right,
  .v2-home-hero__backdrop-dots--bottom,
  .v2-home-hero__backdrop-blob--cyan,
  .v2-home-hero__backdrop-blob--yellow {
    display: none;
  }
  .v2-home-hero__backdrop-dots--top {
    top: 12px;
    left: -72px;
    opacity: 0.65;
  }
  .v2-home-hero__backdrop-blob--peach {
    bottom: -170px;
    left: -210px;
  }
  .v2-home-trust {
    margin-top: 38px;
    padding: 4px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-home-trust > div {
    padding: 18px 0;
  }
  .v2-home-trust > div + div {
    padding-left: 18px;
    border-left: 1px solid var(--color-border);
  }
  .v2-home-trust > div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }
  .v2-home-trust > div:nth-child(4) {
    border-top: 1px solid var(--color-border);
  }
  .v2-home-trust strong {
    font-size: 21px;
  }
  .v2-home-help__backdrop-dots--right,
  .v2-home-help__backdrop-blob--yellow {
    display: none;
  }
  .v2-home-help__backdrop-dots--left {
    top: 112px;
    left: -145px;
    opacity: 0.75;
  }
  .v2-home-help__backdrop-blob--peach {
    top: 34px;
    right: -275px;
  }
  .v2-home-help__backdrop-blob--cyan {
    bottom: -210px;
    left: -245px;
  }
  .v2-home-service-grid,
  .v2-home-specialist-grid,
  .v2-home-review-grid,
  .v2-home-logosky__previews {
    grid-template-columns: 1fr;
  }
  .v2-home-help-card,
  .v2-home-service-grid .v2-service-card,
  .v2-home-review-grid .v2-review-card {
    min-height: 0;
  }
  .v2-home-process {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .v2-home-process li {
    display: grid;
    padding: 0 0 28px;
    grid-template-columns: 46px minmax(0, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .v2-home-process li:not(:last-child)::after {
    position: absolute;
    top: 46px;
    bottom: 0;
    left: 22px;
    width: 1px;
    background: var(--color-border);
    content: "";
  }
  .v2-home-process li > span {
    margin: 0;
    grid-row: 1/span 2;
  }
  .v2-home-process h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }
  .v2-home-process p {
    grid-column: 2;
  }
  .v2-home-team {
    padding-top: 56px;
    margin-top: 56px;
  }
  .v2-home-team .v2-specialist-card--featured {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0;
  }
  .v2-home-team .v2-specialist-card--featured .v2-specialist-card__photo {
    min-height: 300px;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
  .v2-home-team .v2-specialist-card--featured .v2-specialist-card__photo--plain {
    width: 260px;
    max-width: calc(100% - 24px);
    height: auto;
    min-height: 0;
    margin-inline: auto;
    aspect-ratio: auto;
  }
  .v2-home-team .v2-specialist-card--featured .v2-specialist-card__photo--plain img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .v2-home-team .v2-specialist-card--featured .v2-specialist-card__body {
    padding-top: 24px;
  }
  .v2-home-team .v2-specialist-card--featured .v2-specialist-card__actions {
    padding-bottom: 0;
    grid-column: auto;
    flex-wrap: wrap;
  }
  .v2-home-credentials {
    padding: 20px;
    gap: 22px;
  }
  .v2-home-credentials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .v2-home-section-link {
    justify-content: flex-start;
  }
  .v2-home-copy {
    font-size: 17px;
  }
  .v2-home-review-grid .v2-review-card:last-child {
    grid-column: auto;
  }
  .v2-home-review-platforms {
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .v2-home-location {
    margin-top: 48px;
  }
  .v2-home-location__content {
    padding: 28px 24px 30px;
  }
  .v2-home-location__map {
    min-height: 300px;
  }
  .v2-home-photo-mosaic {
    min-height: 420px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr 0.75fr;
  }
  .v2-home-photo-mosaic__large {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .v2-home-about-media {
    padding-top: 56px;
    margin-top: 56px;
  }
}
@media (max-width: 399px) {
  .v2-home-help-grid {
    grid-template-columns: 1fr;
  }
  .v2-home-credentials__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 390px) {
  .v2-home-trust {
    padding-inline: 14px;
  }
  .v2-home-trust > div + div {
    padding-left: 14px;
  }
  .v2-home-trust span {
    font-size: 11px;
  }
  .v2-home-photo-mosaic {
    min-height: 380px;
  }
}
@media (max-width: 900px) {
  .v2-home-signs__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .v2-home-signs__intro {
    max-width: 720px;
  }
  .v2-quiz-dialog__panel {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  }
  .v2-quiz-dialog__intro {
    padding-inline: 30px;
  }
  .v2-quiz-form {
    padding-inline: 34px;
  }
}
@media (max-width: 700px) {
  .v2-home-signs__list {
    grid-template-columns: 1fr;
  }
  .v2-home-signs__list li {
    min-height: 0;
    padding: 19px;
  }
  .v2-home-signs__action .v2-button {
    width: 100%;
  }
  .v2-quiz-dialog {
    width: 100vw;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }
  .v2-quiz-dialog__panel {
    display: flex;
    min-height: 100dvh;
    max-height: 100dvh;
    flex-direction: column;
  }
  .v2-quiz-dialog__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .v2-quiz-dialog__intro {
    min-height: 0;
    padding: 24px 62px 22px 22px;
  }
  .v2-quiz-dialog__intro .v2-eyebrow,
  .v2-quiz-dialog__intro > p:not(.v2-eyebrow),
  .v2-quiz-dialog__intro > small {
    display: none;
  }
  .v2-quiz-dialog__intro h2 {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .v2-quiz-progress {
    margin-top: 0;
  }
  .v2-quiz-form {
    min-height: 0;
    flex: 1;
    padding: 24px 18px 18px;
  }
  .v2-quiz-step legend {
    font-size: 23px;
  }
  .v2-quiz-step fieldset > p {
    margin-bottom: 18px;
  }
  .v2-quiz-option {
    padding: 11px 12px;
  }
  .v2-quiz-dialog__nav {
    position: sticky;
    bottom: -18px;
    padding: 14px 0 18px;
    background: var(--color-bg);
  }
  .v2-quiz-dialog__nav .v2-button {
    min-width: 0;
    flex: 1;
  }
  .v2-quiz-form__status {
    text-align: left;
  }
  .v2-quiz-result__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .v2-quiz-result__actions .v2-button {
    width: 100%;
  }
}
.v2-floating-video {
  position: fixed;
  z-index: 24;
  bottom: 24px;
  left: 24px;
  width: 190px;
  padding: 6px;
  border: 1px solid rgba(2, 177, 206, 0.28);
  border-radius: 24px;
  background: var(--color-bg);
  box-shadow: 0 18px 50px rgba(23, 37, 42, 0.18);
  transform-origin: center;
  transition: bottom 320ms ease, left 320ms ease, width 320ms ease, border-radius 320ms ease, transform 320ms ease;
}

.v2-js .v2-floating-video {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 48px)) rotate(0deg);
}

.v2-js .v2-floating-video.is-ready {
  opacity: 1;
  pointer-events: auto;
  animation: v2-floating-video-enter 920ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.v2-js .v2-floating-video.is-ready.is-expanded {
  bottom: 50%;
  left: 50%;
  width: min(390px, 100vw - 40px, (100vh - 56px) * 0.5625);
  animation: none;
  border-radius: var(--radius-large);
  transform: translate(-50%, 50%) rotate(0deg);
}

@keyframes v2-floating-video-enter {
  0% {
    opacity: 0;
    transform: translateY(calc(100% + 48px)) rotate(0deg);
  }
  52% {
    opacity: 1;
    transform: translateY(-12px) rotate(4deg);
  }
  68% {
    transform: translateY(5px) rotate(-5deg);
  }
  82% {
    transform: translateY(-3px) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-3deg);
  }
}
.v2-floating-video[hidden] {
  display: none;
}

.v2-floating-video__backdrop {
  position: fixed;
  z-index: 23;
  inset: 0;
  background: rgba(23, 37, 42, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.v2-floating-video-open {
  overflow: hidden;
}

.v2-floating-video-open .v2-floating-video__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.v2-floating-video .v2-video-preview {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.v2-floating-video .v2-video-preview__overlay {
  padding: 14px 10px;
}

.v2-floating-video .v2-video-preview__overlay i {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
  font-size: 16px;
}

.v2-floating-video .v2-video-preview__overlay strong {
  font-size: 12px;
}

.v2-floating-video .v2-video-preview__overlay small {
  font-size: 9px;
}

.v2-floating-video__close {
  position: absolute;
  z-index: 2;
  top: -11px;
  right: -11px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg);
  box-shadow: 0 8px 20px rgba(23, 37, 42, 0.14);
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  place-items: center;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.v2-floating-video__close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .v2-floating-video {
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: 118px;
    padding: 5px;
    border-radius: 20px;
  }
  .v2-floating-video .v2-video-preview {
    border-radius: 15px;
  }
  .v2-floating-video .v2-video-preview__overlay i {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
  .v2-floating-video .v2-video-preview__overlay small {
    display: none;
  }
  .v2-floating-video__close {
    top: -9px;
    right: -9px;
    width: 30px;
    height: 30px;
    font-size: 19px;
  }
  .v2-js .v2-floating-video.is-ready.is-expanded {
    width: min(340px, 100vw - 32px, (100vh - 48px) * 0.5625);
    padding: 6px;
    border-radius: 24px;
  }
  .v2-floating-video.is-expanded .v2-video-preview {
    border-radius: 18px;
  }
  .v2-floating-video.is-expanded .v2-video-preview__overlay small {
    display: block;
  }
}
@media (max-height: 640px) {
  .v2-floating-video {
    width: 104px;
  }
  .v2-js .v2-floating-video.is-ready.is-expanded {
    width: min(300px, 100vw - 28px, (100vh - 44px) * 0.5625);
  }
}
.v2-public-site section,
.v2-public-site footer {
  scroll-margin-top: 96px;
}

.v2-promo-bar {
  --v2-promo-color: #34dd87;
  --v2-promo-color-hover: #12634e;
  --v2-promo-text: #123f35;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 63, 53, 0.1);
  background-color: #34dd87;
  background-image: radial-gradient(circle at top left, #34dd87 0, #34ddbf 100%);
  box-shadow: 0 48px 48px -32px rgba(52, 221, 135, 0.12), 0 96px 96px -64px rgba(52, 221, 135, 0.48);
  color: var(--v2-promo-text);
}

.v2-promo-bar::after {
  position: absolute;
  top: -62px;
  right: 12%;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.v2-promo-bar[hidden],
.v2-js .v2-promo-bar:not(.is-ready) {
  display: none;
}

.v2-promo-bar__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 68px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto 38px;
  gap: 18px;
}

.v2-promo-bar__message {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.v2-promo-bar__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(18, 63, 53, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.28);
}

.v2-promo-bar__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v2-promo-bar__copy,
.v2-promo-bar__copy small,
.v2-promo-bar__copy strong {
  display: block;
}

.v2-promo-bar__copy small {
  margin-bottom: 2px;
  color: rgba(18, 63, 53, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.v2-promo-bar__copy strong {
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.v2-promo-bar__action,
.v2-promo-bar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.v2-promo-bar__action {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--v2-promo-color-hover);
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
}

.v2-promo-bar__action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.v2-promo-bar__action:hover {
  background: #f2fbf7;
  transform: translateY(-1px);
}

.v2-promo-bar__action:hover svg {
  transform: translateX(2px);
}

.v2-promo-bar__close {
  width: 36px;
  height: 36px;
  padding: 0;
  border-color: rgba(18, 63, 53, 0.16);
  border-radius: 11px;
  background: transparent;
  color: rgba(18, 63, 53, 0.72);
}

.v2-promo-bar__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.v2-promo-bar__close:hover {
  border-color: rgba(18, 63, 53, 0.3);
  background: rgba(255, 255, 255, 0.24);
  color: var(--v2-promo-text);
}

.v2-promo-bar :focus-visible {
  outline-color: rgba(18, 63, 53, 0.72);
}

.v2-brand--official {
  display: inline-flex;
  width: clamp(176px, 15vw, 214px);
  flex: 0 0 auto;
}

.v2-brand--official img {
  display: block;
  width: 100%;
  height: auto;
}

.v2-brand--official-footer {
  width: 200px;
}

.v2-site-nav > a.is-active:not(.v2-button) {
  color: var(--color-primary-hover);
}

.v2-site-nav > a.is-active:not(.v2-button)::after {
  transform: scaleX(1);
}

.v2-faq {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 110px);
}

.v2-faq__intro {
  position: sticky;
  top: 120px;
}

.v2-faq-item {
  border-top: 1px solid var(--color-border);
}

.v2-faq-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.v2-faq-item summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

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

.v2-faq-item summary > span {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  transform: translateY(-50%);
}

.v2-faq-item summary > span::before,
.v2-faq-item summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary-hover);
  content: "";
  transform: translate(-50%, -50%);
}

.v2-faq-item summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--transition);
}

.v2-faq-item[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.v2-faq-item > div {
  max-width: 690px;
  padding: 0 54px 22px 0;
  color: var(--color-text-muted);
}

.v2-faq-item p {
  margin-bottom: 0;
}

.v2-final-cta {
  background: var(--color-bg-secondary);
}

.v2-final-cta__inner {
  display: grid;
  align-items: center;
  padding: 52px 58px;
  border: 1px solid rgba(2, 177, 206, 0.28);
  border-radius: var(--radius-large);
  background: var(--color-bg);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
}

.v2-final-cta__inner h2 {
  max-width: 700px;
}

.v2-final-cta__inner p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.v2-site-footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.v2-site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: 48px;
}

.v2-site-footer__brand p {
  max-width: 280px;
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.v2-site-footer h3 {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0;
}

.v2-site-footer nav,
.v2-site-footer address {
  display: grid;
  color: var(--color-text-muted);
  font-size: 13px;
  font-style: normal;
  gap: 10px;
}

.v2-site-footer nav a,
.v2-site-footer address a {
  text-decoration: none;
}

.v2-site-footer nav a:hover,
.v2-site-footer address a:hover {
  color: var(--color-primary-hover);
}

.v2-site-footer__social-row {
  display: grid;
  align-items: center;
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid var(--color-border);
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 2.28fr);
  gap: 32px;
}

.v2-site-footer__social-heading h3 {
  margin-bottom: 3px;
}

.v2-site-footer__social-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.5;
}

.v2-site-footer__socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.v2-site-footer__social {
  --footer-social-color: var(--color-primary-hover);
  display: flex;
  min-height: 54px;
  padding: 8px 10px;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  gap: 10px;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.v2-site-footer__social--instagram {
  --footer-social-color: #c13584;
}

.v2-site-footer__social--telegram {
  --footer-social-color: #229ed9;
}

.v2-site-footer__social-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--footer-social-color);
  color: #fff;
}

.v2-site-footer__social-icon svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.v2-site-footer__social--instagram .v2-site-footer__social-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.v2-site-footer__social--instagram .v2-social-icon__dot {
  fill: currentColor;
  stroke: none;
}

.v2-site-footer__social strong,
.v2-site-footer__social small {
  display: block;
}

.v2-site-footer__social strong {
  color: var(--color-text);
  font-size: 11px;
  line-height: 1.3;
}

.v2-site-footer__social small {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: 9px;
  line-height: 1.35;
}

.v2-site-footer__social:hover {
  border-color: var(--footer-social-color);
  box-shadow: 0 8px 20px rgba(23, 37, 42, 0.07);
  transform: translateY(-2px);
}

.v2-site-footer__bottom {
  display: flex;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 11px;
  justify-content: space-between;
}

body.v2-booking-open {
  overflow: hidden;
}

.v2-booking-dialog {
  position: fixed;
  overflow: auto;
  width: min(650px, 100vw - 40px);
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-large);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: 0 30px 90px rgba(16, 42, 49, 0.28);
}

.v2-booking-dialog::backdrop {
  background: rgba(16, 42, 49, 0.68);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.v2-booking-dialog__panel {
  position: relative;
  padding: clamp(30px, 5vw, 48px);
}

.v2-booking-dialog__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: var(--color-bg);
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.v2-booking-dialog__close:hover {
  border-color: rgba(2, 177, 206, 0.5);
  color: var(--color-primary-hover);
  transform: rotate(4deg);
}

.v2-booking-dialog__intro {
  max-width: 530px;
  padding-right: 34px;
  margin-bottom: 28px;
}

.v2-booking-dialog__intro h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.v2-booking-dialog__intro > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

.v2-booking-form {
  display: grid;
  gap: 18px;
}

.v2-booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v2-booking-field {
  display: grid;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
}

.v2-booking-field small {
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 500;
}

.v2-booking-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.v2-booking-field input::-moz-placeholder {
  color: var(--color-text-light);
}

.v2-booking-field input::placeholder {
  color: var(--color-text-light);
}

.v2-booking-field input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(2, 177, 206, 0.11);
}

.v2-booking-form__privacy {
  margin: -2px 0 0;
  color: var(--color-text-light);
  font-size: 11px;
}

.v2-booking-form__actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.v2-booking-form__actions .v2-button {
  min-width: 0;
}

.v2-booking-form__actions .v2-button--primary {
  flex: 1 1 190px;
}

.v2-booking-form__actions .v2-button--secondary {
  flex: 1 1 250px;
  font-size: 12px;
}

.v2-booking-form__actions button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.v2-booking-form__status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 600;
}

.v2-booking-form__status:empty {
  display: none;
}

.v2-booking-form__status.is-error {
  color: #b34b38;
}

.v2-booking-success {
  padding: 18px 0 6px;
  text-align: center;
}

.v2-booking-success[hidden] {
  display: none;
}

.v2-booking-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 21px;
  background: var(--color-success-light);
  color: #218c5b;
  font-size: 28px;
  font-weight: 700;
}

.v2-booking-success h3 {
  font-size: 24px;
}

.v2-booking-success p {
  max-width: 430px;
  margin: 0 auto 24px;
  color: var(--color-text-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .v2-promo-bar__inner {
    gap: 14px;
  }
  .v2-promo-bar__copy strong {
    font-size: 13px;
  }
  .v2-faq {
    grid-template-columns: 1fr;
  }
  .v2-faq__intro {
    position: static;
  }
  .v2-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .v2-final-cta__inner .v2-button {
    justify-self: start;
  }
  .v2-site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-site-footer__social-row {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .v2-promo-bar__inner {
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 9px 12px;
  }
  .v2-promo-bar__message {
    gap: 10px;
  }
  .v2-promo-bar__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 11px;
  }
  .v2-promo-bar__icon svg {
    width: 21px;
    height: 21px;
  }
  .v2-promo-bar__copy small {
    font-size: 9px;
  }
  .v2-promo-bar__copy strong {
    font-size: 12px;
  }
  .v2-promo-bar__action {
    width: 100%;
    min-height: 40px;
    grid-column: 1/-1;
  }
  .v2-promo-bar__close {
    width: 34px;
    height: 34px;
    grid-column: 2;
    grid-row: 1;
  }
  .v2-brand--official {
    width: 164px;
  }
  .v2-brand--official-footer {
    width: 190px;
  }
  .v2-faq-item summary {
    padding: 20px 48px 20px 0;
    font-size: 16px;
  }
  .v2-faq-item > div {
    padding-right: 0;
  }
  .v2-final-cta__inner {
    padding: 32px 24px;
  }
  .v2-final-cta__inner .v2-button {
    width: 100%;
  }
  .v2-site-footer {
    padding-top: 44px;
  }
  .v2-site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .v2-site-footer__brand,
  .v2-site-footer__information {
    grid-column: 1/-1;
  }
  .v2-site-footer__information nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  .v2-site-footer__information nav a:last-child {
    grid-column: 1/-1;
  }
  .v2-site-footer__social-row {
    padding-top: 22px;
    margin-top: 28px;
  }
  .v2-site-footer__socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-site-footer__social:last-child {
    grid-column: 1/-1;
  }
  .v2-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .v2-booking-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 22px;
  }
  .v2-booking-dialog__panel {
    padding: 30px 22px 24px;
  }
  .v2-booking-dialog__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .v2-booking-dialog__intro {
    padding-right: 28px;
    margin-bottom: 24px;
  }
  .v2-booking-form__grid {
    grid-template-columns: 1fr;
  }
  .v2-booking-form__actions {
    flex-direction: column;
  }
  .v2-booking-form__actions .v2-button {
    width: 100%;
    flex-basis: auto;
  }
}
.v2-breadcrumbs-wrap {
  padding-top: 26px;
  padding-bottom: 22px;
}

.v2-breadcrumbs ol {
  display: flex;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  list-style: none;
}

.v2-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v2-breadcrumbs li:not(:last-child)::after {
  color: var(--color-text-light);
  content: "/";
}

.v2-breadcrumbs a {
  text-decoration: none;
}

.v2-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.v2-internal-hero {
  padding: 68px 0 76px;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.v2-internal-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 7vw, 92px);
}

.v2-internal-hero__grid--single {
  grid-template-columns: minmax(0, 860px);
}

.v2-internal-hero__grid--gallery {
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  gap: clamp(36px, 5vw, 68px);
}

.v2-internal-hero__grid--video {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 6vw, 82px);
}

.v2-internal-hero__content h1 {
  max-width: 790px;
  font-size: clamp(2.75rem, 4.2vw, 3.75rem);
}

.v2-internal-hero__content .v2-lead {
  max-width: 760px;
  margin-bottom: 30px;
}

.v2-internal-hero__note {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 166, 82, 0.42);
  border-radius: var(--radius-large);
  background: var(--color-accent-warm-light);
}

.v2-internal-hero__gallery {
  display: grid;
  min-width: 0;
  padding: 12px;
  border-radius: var(--radius-large);
  background: var(--color-bg);
  box-shadow: 0 18px 50px rgba(23, 37, 42, 0.08);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.v2-internal-hero__gallery > a {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  cursor: zoom-in;
}

.v2-internal-hero__gallery > a img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition);
}

.v2-internal-hero__gallery > a:hover img {
  transform: scale(1.025);
}

.v2-internal-hero__video {
  width: min(100%, 360px);
  justify-self: end;
}

.v2-internal-hero__video .v2-video-preview {
  box-shadow: 0 18px 50px rgba(23, 37, 42, 0.1);
}

.v2-internal-hero__note--photo {
  display: flex;
  min-height: 290px;
  align-items: flex-end;
  border-color: rgba(23, 37, 42, 0.12);
  background: #29434c;
  color: #fff;
  isolation: isolate;
}

.v2-internal-hero__note--photo::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 31, 37, 0.08) 18%, rgba(14, 31, 37, 0.82) 100%);
  content: "";
}

.v2-internal-hero__note--photo > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.v2-internal-hero__note-content {
  position: relative;
  z-index: 1;
}

.v2-internal-hero__note-mark,
.v2-specialist-note__mark {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 17px;
  background: var(--color-bg);
  color: #9a571c;
  font-weight: 700;
}

.v2-internal-hero__note h2 {
  font-size: 22px;
  letter-spacing: -0.025em;
}

.v2-internal-hero__note p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.v2-internal-hero__note--photo .v2-internal-hero__note-mark {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.92);
}

.v2-internal-hero__note--photo p {
  color: rgba(255, 255, 255, 0.86);
}

.v2-section-heading--compact {
  margin-bottom: 38px;
}

.v2-directions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.v2-directions-grid .v2-service-card {
  min-height: 300px;
}

.v2-service-card .v2-card-icon {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.v2-directions-prices {
  scroll-margin-top: 96px;
}

.v2-price-table-shell {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  box-shadow: 0 16px 44px rgba(23, 37, 42, 0.05);
}

.v2-price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.v2-price-table th,
.v2-price-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: middle;
}

.v2-price-table th {
  background: var(--color-bg-secondary);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-price-table th:first-child {
  width: 34%;
}

.v2-price-table th:nth-child(2) {
  width: 18%;
}

.v2-price-table th:nth-child(3) {
  width: 20%;
}

.v2-price-table th:last-child {
  width: 28%;
}

.v2-price-table tbody tr {
  transition: background-color var(--transition);
}

.v2-price-table tbody tr:hover {
  background: rgba(234, 249, 252, 0.5);
}

.v2-price-table tbody tr + tr td {
  border-top: 1px solid var(--color-border);
}

.v2-price-table td {
  color: var(--color-text-muted);
  font-size: 14px;
}

.v2-price-table__service {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.v2-price-table__service > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 700;
  flex: 0 0 auto;
}

.v2-price-table__service strong {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.v2-price-table__price {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 9px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.v2-price-table__subscription {
  color: var(--color-text);
  line-height: 1.5;
}

.v2-detail-columns {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.v2-detail-list-block {
  padding: 40px;
  border-top: 3px solid var(--color-primary);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  background: var(--color-bg);
}

.v2-detail-list-block--soft {
  border-top-color: var(--color-accent-warm);
  background: var(--color-bg-soft);
}

.v2-detail-list-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.v2-check-list {
  display: grid;
  padding: 0;
  margin: 30px 0 0;
  gap: 17px;
  list-style: none;
}

.v2-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--color-text-muted);
}

.v2-check-list li::before {
  position: absolute;
  top: 0.32em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 7px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  content: "\2713";
  font-size: 11px;
  font-weight: 700;
}

.v2-detail-process {
  display: grid;
  padding: 0;
  margin: 0;
  counter-reset: process;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.v2-detail-process li {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-detail-process li > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--color-primary);
  border-radius: 14px;
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 700;
}

.v2-detail-process h3 {
  font-size: 20px;
}

.v2-detail-process p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

.v2-detail-included {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(42px, 7vw, 84px);
}

.v2-check-list--two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.v2-specialist-note {
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg-soft);
}

.v2-specialist-note__mark {
  background: var(--color-warm-light);
}

.v2-specialist-note h3 {
  font-size: 22px;
}

.v2-specialist-note > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

@media (max-width: 1100px) {
  .v2-directions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-directions-grid .v2-service-card {
    min-height: 270px;
  }
}
@media (max-width: 900px) {
  .v2-internal-hero__grid,
  .v2-detail-included {
    grid-template-columns: 1fr;
  }
  .v2-internal-hero__note,
  .v2-internal-hero__gallery,
  .v2-specialist-note {
    max-width: 680px;
  }
  .v2-internal-hero__video {
    width: min(100%, 360px);
    justify-self: center;
  }
  .v2-detail-process {
    grid-template-columns: 1fr;
  }
  .v2-price-table th,
  .v2-price-table td {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (max-width: 700px) {
  .v2-breadcrumbs-wrap {
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .v2-internal-hero {
    padding: 48px 0 58px;
  }
  .v2-internal-hero__grid {
    gap: 34px;
  }
  .v2-internal-hero__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .v2-internal-hero__gallery > a {
    border-radius: 14px;
  }
  .v2-internal-hero__video {
    width: min(100%, 340px);
  }
  .v2-internal-hero__content h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
  .v2-internal-hero__note,
  .v2-specialist-note,
  .v2-detail-list-block,
  .v2-detail-process li {
    padding: 26px;
  }
  .v2-directions-grid,
  .v2-detail-columns,
  .v2-check-list--two-columns {
    grid-template-columns: 1fr;
  }
  .v2-directions-grid .v2-service-card {
    min-height: 0;
  }
  .v2-price-table,
  .v2-price-table tbody,
  .v2-price-table tr,
  .v2-price-table td {
    display: block;
    width: 100%;
  }
  .v2-price-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .v2-price-table tbody tr {
    padding: 22px 20px;
  }
  .v2-price-table tbody tr + tr {
    border-top: 1px solid var(--color-border);
  }
  .v2-price-table tbody tr + tr td {
    border-top: 0;
  }
  .v2-price-table td {
    display: grid;
    align-items: start;
    padding: 0;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
  }
  .v2-price-table td + td {
    margin-top: 14px;
  }
  .v2-price-table td::before {
    color: var(--color-text-light);
    content: attr(data-label);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .v2-price-table td:first-child {
    display: block;
    margin-bottom: 20px;
  }
  .v2-price-table td:first-child::before {
    display: none;
  }
  .v2-price-table__price {
    justify-self: start;
  }
}
.v2-section--compact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.v2-demo-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 9px;
  background: var(--color-warm-light);
  color: #985415;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.v2-specialist-card__photo .v2-demo-label {
  position: absolute;
  top: 12px;
  right: 12px;
}

.v2-specialist-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.v2-specialist-card--listing {
  overflow: hidden;
  padding: 0;
  gap: 0;
}

.v2-specialist-card--listing .v2-specialist-card__photo {
  overflow: hidden;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 4/3;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  color: inherit;
  text-decoration: none;
}

.v2-specialist-card--listing .v2-specialist-card__photo--plain {
  background: var(--color-bg-soft);
}

.v2-specialist-card--listing .v2-specialist-card__photo--plain img {
  width: 80%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-specialist-card--listing .v2-specialist-card__body {
  padding: 24px 26px 0;
}

.v2-specialist-card__body h3 {
  overflow-wrap: anywhere;
}

.v2-specialist-card__body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.v2-specialist-card__body h3 a:hover {
  color: var(--color-primary-hover);
}

.v2-specialist-card--listing .v2-specialist-card__body h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 3.36em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.v2-specialist-card__position {
  color: var(--color-primary-hover) !important;
  font-size: 13px;
  font-weight: 600;
}

.v2-specialist-card--listing .v2-specialist-card__position {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.9em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v2-specialist-card--listing .v2-specialist-card__description {
  display: -webkit-box;
  overflow: hidden;
  min-height: 6.6em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.v2-specialist-card__actions {
  display: flex;
  align-items: center;
  margin-top: 4px;
  justify-content: space-between;
  gap: 12px;
}

.v2-specialist-card--listing .v2-specialist-card__actions {
  padding: 20px 26px 26px;
  margin-top: 0;
}

.v2-specialist-card__actions .v2-button {
  min-height: 42px;
  padding: 9px 13px;
  font-size: 11px;
}

.v2-tag-list {
  display: flex;
  padding: 0;
  margin: auto 0 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.v2-tag-list li {
  padding: 6px 9px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 600;
}

.v2-specialists-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.v2-specialists-grid .v2-card {
  height: 100%;
}

.v2-specialist-hero {
  padding: 36px 0 76px;
}

.v2-specialist-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
}

.v2-specialist-hero__photo {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 450px;
  place-content: center;
  border: 1px solid rgba(255, 166, 82, 0.4);
  border-radius: var(--radius-large);
  background: var(--color-warm-light);
  color: #985415;
  text-align: center;
  gap: 8px;
}

.v2-specialist-hero__photo::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 166, 82, 0.18);
  content: "";
}

.v2-specialist-hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-specialist-hero__photo--plain {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.v2-specialist-hero__photo--plain::after {
  display: none;
}

.v2-specialist-hero__photo--plain img {
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-specialist-hero__photo .v2-demo-label {
  position: absolute;
  top: 20px;
  left: 20px;
  justify-self: start;
}

.v2-specialist-hero__photo-mark {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.v2-specialist-hero__photo small {
  color: #a66730;
}

.v2-specialist-hero__content h1 {
  max-width: 760px;
}

.v2-specialist-hero__age {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-primary-light);
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.3;
  gap: 6px;
}

.v2-specialist-hero__age strong {
  color: var(--color-primary-hover);
  font-size: 13px;
}

.v2-specialist-hero__position {
  margin-bottom: 24px;
  color: var(--color-primary-hover);
  font-weight: 600;
}

.v2-related-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.v2-related-directions a {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 142px;
  padding: 24px 50px 24px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.v2-related-directions a:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.v2-related-directions span {
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-related-directions strong {
  margin-top: auto;
  line-height: 1.3;
}

.v2-related-directions i {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--color-primary-hover);
  font-style: normal;
}

.v2-specialist-about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(42px, 7vw, 90px);
}

.v2-specialist-about-grid--single {
  grid-template-columns: minmax(0, 720px);
}

.v2-prose-panel > p:last-of-type {
  max-width: 720px;
  color: var(--color-text-muted);
}

.v2-specialist-rich-text {
  max-width: 720px;
  color: var(--color-text-muted);
}

.v2-specialist-rich-text > :first-child {
  margin-top: 0;
}

.v2-specialist-rich-text > :last-child {
  margin-bottom: 0;
}

.v2-specialist-rich-text h3,
.v2-specialist-rich-text h4 {
  margin: 32px 0 12px;
  color: var(--color-text);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
}

.v2-specialist-rich-text p,
.v2-specialist-rich-text ol,
.v2-specialist-rich-text ul {
  margin-bottom: 18px;
}

.v2-specialist-rich-text ol,
.v2-specialist-rich-text ul {
  padding-left: 24px;
}

.v2-specialist-rich-text li + li {
  margin-top: 7px;
}

.v2-specialist-rich-text strong {
  color: var(--color-text);
}

.v2-specialist-rich-text a {
  color: var(--color-primary-hover);
  font-weight: 600;
  text-underline-offset: 3px;
}

.v2-prose-panel blockquote {
  padding: 22px 26px;
  margin: 34px 0 0;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  background: var(--color-primary-light);
  font-weight: 600;
}

.v2-facts-panel {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-facts-panel > div {
  display: grid;
  padding: 22px 24px;
  gap: 7px;
}

.v2-facts-panel > div + div {
  border-top: 1px solid var(--color-border);
}

.v2-facts-panel span {
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-facts-panel strong {
  font-size: 14px;
  line-height: 1.5;
}

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

.v2-info-columns .v2-card {
  min-height: 300px;
}

.v2-info-columns__number {
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.v2-clean-list {
  display: grid;
  padding: 0;
  margin: 20px 0 0;
  color: var(--color-text-muted);
  gap: 12px;
  list-style: none;
}

.v2-clean-list li {
  position: relative;
  padding-left: 20px;
}

.v2-clean-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
  transform: translateY(-50%);
}

.v2-preview-notice {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  margin-bottom: 54px;
  border: 1px solid rgba(255, 166, 82, 0.4);
  border-radius: var(--radius-control);
  background: var(--color-warm-light);
  color: #815022;
  font-size: 13px;
  gap: 16px;
}

.v2-preview-notice strong {
  white-space: nowrap;
}

.v2-reviews-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.v2-reviews-grid .v2-review-card {
  min-height: 380px;
}

.v2-js .v2-review-card:not(.is-expanded) {
  height: 380px;
}

.v2-review-card.is-expanded {
  height: auto;
  min-height: 380px;
}

.v2-review-card--demo .v2-review-card__top {
  align-items: flex-start;
}

.v2-review-card--demo .v2-review-source {
  padding-top: 5px;
}

.v2-review-source-card {
  min-height: 250px;
}

.v2-review-source-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  justify-content: space-between;
  gap: 12px;
}

.v2-review-source-card__top span {
  padding: 7px 9px;
  border-radius: 9px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-review-source-card__top small {
  color: var(--color-text-light);
  font-size: 10px;
}

.v2-review-source-card h3 {
  font-size: 21px;
}

.v2-logosky-ui-preview {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}

.v2-logosky-ui-preview__bar {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  justify-content: space-between;
}

.v2-logosky-ui-preview__bar span {
  color: var(--color-primary-hover);
  font-size: 14px;
  font-weight: 700;
}

.v2-logosky-ui-preview__bar small {
  color: var(--color-text-light);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-logosky-ui-preview__body {
  display: grid;
  min-height: 350px;
  padding: clamp(28px, 5vw, 50px);
  align-content: center;
}

.v2-logosky-ui-preview__body > p {
  margin-bottom: 4px;
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-logosky-ui-preview__body > strong {
  font-size: clamp(22px, 3vw, 30px);
}

.v2-logosky-ui-preview__body > small {
  margin-top: 24px;
  color: var(--color-text-light);
  font-size: 10px;
}

.v2-logosky-ui-preview__tasks {
  display: grid;
  margin-top: 30px;
  gap: 10px;
}

.v2-logosky-ui-preview__tasks span {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  gap: 12px;
}

.v2-logosky-ui-preview__tasks i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 9px;
  font-style: normal;
}

.v2-logosky-page {
  --logosky-accent: #6b4bd6;
  --logosky-accent-light: #f2efff;
}

.v2-logosky-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 88px;
  background: var(--color-bg-soft);
  isolation: isolate;
}

.v2-logosky-hero::before,
.v2-logosky-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  z-index: -1;
}

.v2-logosky-hero::before {
  top: -180px;
  right: -120px;
  width: 430px;
  height: 430px;
  background: rgba(2, 177, 206, 0.1);
}

.v2-logosky-hero::after {
  bottom: -170px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(255, 166, 82, 0.1);
}

.v2-logosky-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(42px, 6vw, 76px);
}

.v2-logosky-hero__content h1 {
  max-width: 670px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.2vw, 3.75rem);
}

.v2-logosky-hero__content .v2-lead {
  margin-bottom: 24px;
}

.v2-logosky-hero__logo {
  display: block;
  width: 118px;
  height: auto;
  margin: -2px 0 18px;
}

.v2-logosky-hero__proofs {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.v2-logosky-hero__proofs span {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 12px;
  align-items: center;
  border: 1px solid rgba(2, 177, 206, 0.22);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
}

.v2-logosky-hero__proofs i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 7px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-style: normal;
}

.v2-logosky-hero__visual {
  position: relative;
  margin: 0;
}

.v2-logosky-hero__visual > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.38/1;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-logosky-hero__visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(23, 37, 42, 0.12);
}

.v2-logosky-hero__visual strong,
.v2-logosky-hero__visual span {
  display: block;
}

.v2-logosky-hero__visual strong {
  font-size: 13px;
}

.v2-logosky-hero__visual span {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.45;
}

.v2-logosky-innovation__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(46px, 7vw, 90px);
}

.v2-logosky-innovation__intro {
  padding-top: 12px;
}

.v2-logosky-innovation__intro h2 {
  max-width: 560px;
}

.v2-logosky-innovation__intro > p:not(.v2-eyebrow) {
  color: var(--color-text-muted);
}

.v2-logosky-innovation__intro > p:last-child {
  margin-bottom: 0;
}

.v2-logosky-innovation__facts {
  display: grid;
  padding: 10px;
  border: 1px solid rgba(2, 177, 206, 0.24);
  border-radius: var(--radius-large);
  background: var(--color-primary-light);
  gap: 8px;
}

.v2-logosky-innovation__facts article {
  display: grid;
  padding: 20px 22px;
  border: 1px solid rgba(2, 177, 206, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
}

.v2-logosky-innovation__facts article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.v2-logosky-innovation__facts h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.v2-logosky-innovation__facts p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.v2-logosky-pillar {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 28px;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-logosky-pillar__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.v2-logosky-pillar__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 19px;
  font-weight: 700;
}

.v2-logosky-pillar:nth-child(2) .v2-logosky-pillar__icon {
  background: var(--color-warm-light);
  color: #a25b19;
}

.v2-logosky-pillar:nth-child(3) .v2-logosky-pillar__icon {
  background: var(--logosky-accent-light);
  color: var(--logosky-accent);
}

.v2-logosky-pillar h3 {
  font-size: 21px;
}

.v2-logosky-pillar > p {
  color: var(--color-text-muted);
  font-size: 13px;
}

.v2-logosky-pillar ul {
  display: grid;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px solid var(--color-border);
  gap: 8px;
  list-style: none;
}

.v2-logosky-pillar li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.v2-logosky-pillar li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
}

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

.v2-logosky-game {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.v2-logosky-game:hover {
  border-color: rgba(2, 177, 206, 0.5);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.v2-logosky-game figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 500/305;
  background: var(--color-bg-secondary);
}

.v2-logosky-game figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition);
}

.v2-logosky-game:hover figure img {
  transform: scale(1.025);
}

.v2-logosky-game figure span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary-hover);
  box-shadow: 0 6px 18px rgba(23, 37, 42, 0.1);
  font-size: 9px;
  font-weight: 700;
}

.v2-logosky-game > div {
  padding: 22px 24px 24px;
}

.v2-logosky-game small {
  display: block;
  margin-bottom: 7px;
  color: var(--color-primary-hover);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-logosky-game h3 {
  font-size: 18px;
}

.v2-logosky-game p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-logosky-games__action {
  display: flex;
  margin-top: 28px;
  justify-content: center;
}

.v2-logosky-crm__feature {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 84px);
}

.v2-logosky-crm__copy > p:not(.v2-eyebrow) {
  color: var(--color-text-muted);
}

.v2-logosky-crm__copy .v2-button-link {
  margin-top: 22px;
}

.v2-logosky-crm__main-screen {
  overflow: hidden;
  padding: 16px;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}

.v2-logosky-crm__main-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
}

.v2-logosky-crm__main-screen figcaption {
  display: flex;
  padding: 14px 4px 2px;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 10px;
  justify-content: space-between;
  gap: 16px;
}

.v2-logosky-crm__main-screen strong {
  color: var(--color-text);
  font-size: 12px;
}

.v2-logosky-screens {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v2-logosky-screen {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-logosky-screen > div {
  position: relative;
  display: grid;
  height: 220px;
  padding: 12px;
  place-items: center;
  background: #f2f7f8;
}

.v2-logosky-screen img {
  position: absolute;
  inset: 12px;
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-logosky-screen figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 700;
}

.v2-logosky-screens__note {
  margin: 13px 0 0;
  color: var(--color-text-light);
  font-size: 10px;
  text-align: right;
}

.v2-logosky-practice__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(44px, 7vw, 86px);
}

.v2-logosky-practice__photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}

.v2-logosky-practice__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-logosky-practice__photo figcaption {
  padding: 13px 18px;
  color: var(--color-text-muted);
  font-size: 10px;
}

.v2-logosky-practice__content > p:not(.v2-eyebrow) {
  color: var(--color-text-muted);
}

.v2-logosky-stats {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.v2-logosky-stats > div {
  padding: 15px 10px;
  border: 1px solid rgba(2, 177, 206, 0.18);
  border-radius: var(--radius-control);
  background: var(--color-primary-light);
  text-align: center;
}

.v2-logosky-stats strong,
.v2-logosky-stats span {
  display: block;
}

.v2-logosky-stats strong {
  color: var(--color-primary-hover);
  font-size: 20px;
  line-height: 1.2;
}

.v2-logosky-stats span {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 9px;
}

.v2-logosky-roles {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v2-logosky-roles article {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-logosky-roles article > span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 700;
}

.v2-logosky-roles h3 {
  font-size: 17px;
}

.v2-logosky-roles p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

@media (max-width: 1000px) {
  .v2-logosky-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  }
  .v2-logosky-screens,
  .v2-logosky-roles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .v2-logosky-hero__grid,
  .v2-logosky-innovation__grid,
  .v2-logosky-crm__feature,
  .v2-logosky-practice__grid {
    grid-template-columns: 1fr;
  }
  .v2-logosky-hero__visual {
    width: min(100%, 680px);
  }
  .v2-logosky-pillars {
    grid-template-columns: 1fr;
  }
  .v2-logosky-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .v2-logosky-hero {
    padding: 48px 0 60px;
  }
  .v2-logosky-hero__content h1 {
    font-size: clamp(2.35rem, 10vw, 2.7rem);
  }
  .v2-logosky-hero__logo {
    width: 100px;
  }
  .v2-logosky-hero__proofs {
    align-items: stretch;
    flex-direction: column;
  }
  .v2-logosky-hero__proofs span {
    width: 100%;
  }
  .v2-logosky-hero__visual figcaption {
    position: static;
    border: 0;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    box-shadow: none;
  }
  .v2-logosky-hero__visual > img {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    box-shadow: none;
  }
  .v2-logosky-hero__visual {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-bg);
  }
  .v2-logosky-innovation__facts article {
    padding: 18px;
  }
  .v2-logosky-games__grid,
  .v2-logosky-screens,
  .v2-logosky-roles {
    grid-template-columns: 1fr;
  }
  .v2-logosky-games__action .v2-button {
    width: 100%;
  }
  .v2-logosky-crm__main-screen {
    padding: 10px;
    border-radius: var(--radius-card);
  }
  .v2-logosky-crm__main-screen figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .v2-logosky-screen > div {
    height: 260px;
  }
  .v2-logosky-screens__note {
    text-align: left;
  }
  .v2-logosky-stats {
    gap: 6px;
  }
  .v2-logosky-stats > div {
    padding: 13px 6px;
  }
  .v2-logosky-stats strong {
    font-size: 17px;
  }
}
.v2-learning-panel {
  display: grid;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg-soft);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
}

.v2-learning-panel h2 {
  max-width: 740px;
}

.v2-learning-panel p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.v2-split-panel {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 110px);
}

.v2-split-panel > div {
  min-width: 0;
}

.v2-check-grid {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.v2-check-grid li {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
}

.v2-check-grid strong,
.v2-check-grid span {
  display: block;
}

.v2-check-grid strong {
  margin-bottom: 7px;
  font-size: 14px;
}

.v2-check-grid span {
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-flow-steps {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.v2-flow-steps--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-flow-steps li {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-flow-steps li > span,
.v2-principles-grid article > span,
.v2-contact-card > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 700;
}

.v2-flow-steps h3 {
  font-size: 17px;
}

.v2-flow-steps p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.v2-logosky-showcase,
.v2-about-intro {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(48px, 8vw, 100px);
}

.v2-page-media-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  place-content: center;
  border: 1px solid rgba(2, 177, 206, 0.32);
  border-radius: var(--radius-large);
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  text-align: center;
  gap: 8px;
}

.v2-page-media-placeholder::before,
.v2-page-media-placeholder::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.v2-page-media-placeholder::before {
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(2, 177, 206, 0.1);
}

.v2-page-media-placeholder::after {
  bottom: -90px;
  left: -70px;
  width: 240px;
  height: 240px;
  background: rgba(255, 166, 82, 0.12);
}

.v2-page-media-placeholder__mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  place-items: center;
  border-radius: 17px;
  background: var(--color-bg);
  font-weight: 700;
}

.v2-page-media-placeholder strong,
.v2-page-media-placeholder small {
  position: relative;
  z-index: 1;
}

.v2-page-media-placeholder small {
  color: var(--color-text-muted);
}

.v2-page-media-placeholder--screen {
  aspect-ratio: 4/3;
  min-height: 0;
  border-color: #c7dce1;
  background: #f4f9fa;
  box-shadow: var(--shadow-soft);
}

.v2-page-media-placeholder--map {
  min-height: 430px;
}

.v2-page-media-placeholder--photo {
  min-height: 430px;
  padding: 0;
  background: #dfecee;
}

.v2-page-media-placeholder--photo::before,
.v2-page-media-placeholder--photo::after {
  display: none;
}

.v2-page-media-placeholder--photo > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-page-media-placeholder--plain-image {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.v2-page-media-placeholder--plain-image > img {
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-about-media-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 90px);
}

.v2-about-media-section .v2-lead {
  margin-bottom: 0;
}

.v2-video-preview {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: #17323a;
  box-shadow: var(--shadow-soft);
  color: #fff;
  text-decoration: none;
}

.v2-video-preview--portrait {
  aspect-ratio: 9/16;
}

.v2-video-preview > img,
.v2-video-preview > iframe,
.v2-video-preview > video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-video-preview > img {
  opacity: 0.76;
  transition: opacity var(--transition), transform var(--transition);
}

.v2-video-preview:hover > img {
  opacity: 0.62;
  transform: scale(1.02);
}

.v2-video-preview__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(16, 42, 49, 0.08), rgba(16, 42, 49, 0.54));
  text-align: center;
  gap: 6px;
}

.v2-video-preview__overlay i {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 22px;
  font-style: normal;
}

.v2-video-preview__overlay strong {
  font-size: 16px;
}

.v2-video-preview__overlay small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.v2-video-preview.is-loaded {
  background: #000;
}

.v2-video-preview.is-loaded > video {
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-speech-video-feature {
  display: grid;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  margin-top: 64px;
  border: 1px solid rgba(2, 177, 206, 0.22);
  border-radius: var(--radius-large);
  background: var(--color-primary-light);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(38px, 7vw, 88px);
}

.v2-speech-video-feature__copy > p:not(.v2-eyebrow) {
  max-width: 650px;
  color: var(--color-text-muted);
}

.v2-speech-video-feature__copy .v2-clean-list {
  margin-bottom: 0;
}

.v2-speech-video-feature__media {
  width: min(100%, 340px);
  justify-self: end;
}

@media (max-width: 900px) {
  .v2-speech-video-feature {
    grid-template-columns: 1fr;
  }
  .v2-speech-video-feature__media {
    justify-self: center;
  }
}
@media (max-width: 700px) {
  .v2-speech-video-feature {
    padding: 24px;
    margin-top: 44px;
    gap: 30px;
  }
  .v2-speech-video-feature__media {
    width: min(100%, 300px);
  }
}
.v2-media-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-media-gallery__item {
  min-width: 0;
  margin: 0;
}

.v2-media-gallery__item > a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #dfecee;
}

.v2-media-gallery--photos .v2-media-gallery__item > a {
  aspect-ratio: 4/3;
}

.v2-media-gallery--photos .v2-media-gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.v2-media-gallery--photos .v2-media-gallery__item:first-child > a {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

.v2-media-gallery--documents .v2-media-gallery__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v2-media-gallery--documents .v2-media-gallery__item > a {
  aspect-ratio: 3/4;
  padding: 10px;
  background: #f2f7f8;
}

.v2-media-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition);
}

.v2-media-gallery--documents .v2-media-gallery__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-media-gallery__item > a:hover img {
  transform: scale(1.025);
}

.v2-media-gallery__item figcaption {
  padding: 10px 4px 0;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.5;
}

.v2-media-gallery__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-hover);
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  font-weight: 700;
}

.v2-media-gallery__more {
  display: none;
  margin: 28px auto 0;
}

.v2-specialist-api-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.v2-specialist-api-media__item {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-specialist-api-media__item > a,
.v2-specialist-api-media__item > video {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-secondary);
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-specialist-api-media__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.v2-specialist-api-media__item figcaption {
  padding: 14px 16px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-js .v2-media-gallery__more {
  display: flex;
}

.v2-js [data-v2-gallery-item][data-v2-collapsed] {
  display: none;
}

.v2-document-owner {
  display: grid;
  margin-bottom: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 166, 82, 0.32);
  border-radius: var(--radius-card);
  background: var(--color-accent-warm-light);
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
}

.v2-document-owner span {
  color: #8f5118;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-document-owner strong {
  font-size: 14px;
}

.v2-document-owner p {
  margin: 0;
  grid-column: 1/-1;
  color: var(--color-text-muted);
  font-size: 12px;
}

.v2-lightbox {
  position: fixed;
  overflow: visible;
  width: min(1040px, 100vw - 48px);
  max-width: none;
  max-height: calc(100vh - 48px);
  padding: 22px;
  border: 0;
  border-radius: var(--radius-large);
  background: var(--color-bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.v2-lightbox::backdrop {
  background: rgba(16, 42, 49, 0.78);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.v2-lightbox figure {
  display: grid;
  min-height: 0;
  margin: 0;
  justify-items: center;
  gap: 14px;
}

.v2-lightbox figure > img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  -o-object-fit: contain;
     object-fit: contain;
}

.v2-lightbox figcaption {
  display: grid;
  width: 100%;
  color: var(--color-text-muted);
  font-size: 12px;
  text-align: center;
  gap: 2px;
}

.v2-lightbox figcaption strong:empty,
.v2-lightbox figcaption span:empty {
  display: none;
}

.v2-lightbox__close,
.v2-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 20px;
}

.v2-lightbox__close {
  top: -14px;
  right: -14px;
}

.v2-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.v2-lightbox__nav--prev {
  left: -21px;
}

.v2-lightbox__nav--next {
  right: -21px;
}

.v2-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-principles-grid article {
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-principles-grid h3 {
  font-size: 17px;
}

.v2-principles-grid p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.v2-contacts-section {
  background: var(--color-bg-soft);
}

.v2-contacts-heading {
  display: grid;
  align-items: end;
  margin-bottom: 38px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 40px;
}

.v2-contacts-heading h2 {
  margin-bottom: 0;
}

.v2-contacts-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.v2-contacts-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
}

.v2-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.v2-contact-card {
  display: flex;
  min-width: 0;
  padding: 24px 26px;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-contact-card--phones {
  padding: 28px;
  grid-column: 1/-1;
  border-color: rgba(2, 177, 206, 0.28);
  background: var(--color-primary-light);
}

.v2-contact-card__heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 13px;
}

.v2-contact-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.v2-contact-card--phones .v2-contact-card__icon {
  background: var(--color-primary);
  color: #fff;
}

.v2-contact-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v2-contact-card__label {
  display: block;
  margin-bottom: 3px;
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-contact-card h3 {
  margin: 0;
  font-size: 18px;
}

.v2-contact-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.v2-contact-card a {
  color: var(--color-primary-hover);
  font-weight: 600;
  text-decoration: none;
}

.v2-contact-phone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.v2-contact-phone-list > a {
  display: flex;
  min-width: 0;
  min-height: 72px;
  padding: 14px 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(2, 177, 206, 0.2);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.88);
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.v2-contact-phone-list > a:hover {
  border-color: var(--color-primary);
  background: #fff;
  transform: translateY(-2px);
}

.v2-contact-phone-list strong,
.v2-contact-phone-list small {
  display: block;
}

.v2-contact-phone-list strong {
  color: var(--color-text);
  font-size: 16px;
}

.v2-contact-phone-list small {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 400;
}

.v2-contact-phone-list__arrow {
  flex: 0 0 auto;
  color: var(--color-primary-hover);
  font-size: 20px;
}

.v2-contact-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  gap: 6px;
}

.v2-contact-card__email {
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.v2-contact-links {
  display: grid;
  margin-top: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.v2-contact-social {
  --social-color: var(--color-primary-hover);
  --social-bg: var(--color-primary-light);
  display: inline-flex;
  min-width: 0;
  min-height: 78px;
  padding: 10px;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--social-bg);
  color: var(--social-color);
  gap: 9px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.v2-contact-social--instagram {
  --social-color: #c13584;
  --social-bg: #fff1f7;
}

.v2-contact-social--vk {
  --social-color: #2787f5;
  --social-bg: #eef6ff;
}

.v2-contact-social--telegram {
  --social-color: #229ed9;
  --social-bg: #edf9ff;
}

.v2-contact-card .v2-contact-social {
  color: var(--social-color);
}

.v2-contact-social__icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
}

.v2-contact-social__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.v2-contact-social--instagram .v2-contact-social__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.v2-contact-social--instagram .v2-social-icon__dot {
  fill: currentColor;
  stroke: none;
}

.v2-contact-social__text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.v2-contact-social__text strong,
.v2-contact-social__text small {
  display: block;
}

.v2-contact-social__text strong {
  color: var(--color-text);
  font-size: 10px;
  line-height: 1.3;
}

.v2-contact-social__text small {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.35;
}

.v2-contact-card .v2-contact-social:hover {
  border-color: currentColor;
  box-shadow: 0 8px 18px rgba(23, 37, 42, 0.08);
  transform: translateY(-2px);
}

.v2-contact-location {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg);
}

.v2-contact-map {
  overflow: hidden;
  min-height: 350px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.v2-contact-map iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.v2-contact-note {
  display: grid;
  padding: 25px 26px 27px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
}

.v2-contact-note__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 14px;
  font-weight: 700;
}

.v2-contact-note h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.v2-contact-note p {
  margin-bottom: 13px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.65;
}

.v2-contact-note p:last-child {
  margin-bottom: 0;
}

.v2-contact-note .v2-button-link {
  font-size: 12px;
}

.v2-legal-details {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.v2-legal-panel {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.v2-legal-panel h3 {
  padding: 24px 26px;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  font-size: 18px;
}

.v2-legal-panel dl {
  margin: 0;
}

.v2-legal-panel dl > div {
  display: grid;
  padding: 18px 26px;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
}

.v2-legal-panel dl > div + div {
  border-top: 1px solid var(--color-border);
}

.v2-legal-panel dt {
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-legal-panel dd {
  min-width: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.v2-legal-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  margin-top: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-primary-light);
  gap: 24px;
}

.v2-legal-action p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .v2-media-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .v2-media-gallery--documents .v2-media-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .v2-specialists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-principles-grid,
  .v2-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-flow-steps--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .v2-check-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .v2-specialist-api-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-learning-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .v2-learning-panel .v2-button {
    justify-self: start;
  }
  .v2-about-media-section {
    grid-template-columns: 1fr;
  }
  .v2-specialist-hero__grid,
  .v2-specialist-about-grid,
  .v2-logosky-showcase,
  .v2-about-intro,
  .v2-contacts-heading,
  .v2-contacts-layout,
  .v2-split-panel {
    grid-template-columns: 1fr;
  }
  .v2-contacts-heading {
    align-items: start;
    gap: 14px;
  }
  .v2-specialist-hero__photo {
    width: min(100%, 520px);
    min-height: 390px;
  }
  .v2-related-directions,
  .v2-info-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-info-columns .v2-card:last-child {
    grid-column: 1/-1;
  }
  .v2-page-media-placeholder--map {
    min-height: 360px;
  }
  .v2-legal-details {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .v2-specialist-api-media {
    grid-template-columns: 1fr;
  }
  .v2-media-gallery__grid,
  .v2-media-gallery--documents .v2-media-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .v2-media-gallery--photos .v2-media-gallery__item:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
  .v2-media-gallery--photos .v2-media-gallery__item:first-child > a {
    height: auto;
    min-height: 0;
    aspect-ratio: 16/10;
  }
  .v2-media-gallery__zoom {
    right: 8px;
    bottom: 8px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .v2-media-gallery__item figcaption {
    padding-top: 7px;
    font-size: 10px;
  }
  .v2-document-owner {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .v2-document-owner p {
    grid-column: auto;
  }
  .v2-lightbox {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 12px;
  }
  .v2-lightbox figure > img {
    max-height: calc(100vh - 110px);
  }
  .v2-lightbox__close {
    top: 8px;
    right: 8px;
  }
  .v2-lightbox__nav {
    top: auto;
    bottom: 10px;
    transform: none;
  }
  .v2-lightbox__nav--prev {
    left: 10px;
  }
  .v2-lightbox__nav--next {
    right: 10px;
  }
  .v2-section--compact {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .v2-specialists-grid,
  .v2-related-directions,
  .v2-info-columns,
  .v2-reviews-grid,
  .v2-flow-steps,
  .v2-flow-steps--three,
  .v2-principles-grid,
  .v2-contact-cards {
    grid-template-columns: 1fr;
  }
  .v2-info-columns .v2-card:last-child {
    grid-column: auto;
  }
  .v2-specialist-hero {
    padding: 20px 0 58px;
  }
  .v2-specialist-hero__grid {
    gap: 34px;
  }
  .v2-specialist-hero__photo {
    min-height: 330px;
  }
  .v2-preview-notice {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
    gap: 5px;
  }
  .v2-preview-notice strong {
    white-space: normal;
  }
  .v2-specialist-card__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .v2-specialist-card__actions .v2-button {
    width: 100%;
  }
  .v2-specialist-card--listing .v2-specialist-card__body h3,
  .v2-specialist-card--listing .v2-specialist-card__position,
  .v2-specialist-card--listing .v2-specialist-card__description {
    min-height: 0;
  }
  .v2-learning-panel .v2-button {
    width: 100%;
  }
  .v2-page-media-placeholder {
    min-height: 300px;
  }
  .v2-page-media-placeholder--screen {
    min-height: 0;
  }
  .v2-contact-map {
    min-height: 300px;
  }
  .v2-contact-map iframe {
    height: 300px;
  }
  .v2-contact-card--phones {
    grid-column: auto;
  }
  .v2-contact-phone-list {
    grid-template-columns: 1fr;
  }
  .v2-contact-card,
  .v2-contact-card--phones {
    padding: 22px;
  }
  .v2-contact-note {
    padding: 22px;
  }
  .v2-legal-panel h3 {
    padding: 22px;
  }
  .v2-legal-panel dl > div {
    padding: 16px 22px;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .v2-legal-action {
    align-items: stretch;
    padding: 22px;
    flex-direction: column;
    gap: 16px;
  }
  .v2-legal-action .v2-button {
    width: 100%;
  }
}