/* Site index v2 — design tokens + reusable components (Bootstrap-first) */
:root {
  --siv2-accent: #cbfa0a;
  --siv2-accent-text: #a2d100;
  --siv2-text: #111;
  --siv2-text-secondary: #434343;
  --siv2-bg: #f2f2f2;
  --siv2-panel: #e4e4e4;
  --siv2-panel-light: #e9e9e9;
  --siv2-live-bg: #63714f;
  --siv2-live-text: #c8f52b;
  --siv2-radius: 15px;
  --siv2-radius-lg: 20px;
  --siv2-font: 'Lato', sans-serif;
  --siv2-text-base: 0.875rem;
  --siv2-card-padding-y: 0.75rem;
  --siv2-card-padding-x: 1rem;
  --siv2-card-padding: var(--siv2-card-padding-y) var(--siv2-card-padding-x);
}

body.site-index-home {
  background-color: var(--siv2-bg);
  font-family: var(--siv2-font);
  color: var(--siv2-text);
}

.site-index-v2 {
  font-family: var(--siv2-font);
  font-size: var(--siv2-text-base);
  color: var(--siv2-text);
}

/* site.css: * { font-size: 16px } — не ломает наследование внутри лендинга */
.site-index-v2 p {
  font-size: inherit;
  font-weight: inherit;
}

.site-index-v2 .siv2-br-mobile {
  display: none;
}

.site-index-v2 .siv2-br-desktop {
  display: none;
}

/* Typography */
.site-index-v2 .siv2-title-xl {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-index-v2 .siv2-title-lg {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-index-v2 .siv2-title-md {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.site-index-v2 .siv2-title-sm {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.site-index-v2 .siv2-text-lg {
  font-size: var(--siv2-text-base);
  font-weight: 500;
  line-height: 1.4;
}

.site-index-v2 .siv2-text-md {
  font-size: var(--siv2-text-base);
  font-weight: 500;
  line-height: 1.45;
}

.site-index-v2 .siv2-text-sm {
  font-size: var(--siv2-text-base);
  font-weight: 500;
  line-height: 1.4;
}

.site-index-v2 .siv2-text-muted {
  opacity: 0.75;
}

.site-index-v2 .siv2-text-accent {
  color: var(--siv2-accent-text);
}

.site-index-v2 [class*='siv2-title-'] .siv2-text-accent {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.site-index-v2 .siv2-text-secondary {
  color: var(--siv2-text-secondary);
}

/* Primary CTA button */
.site-index-v2 .siv2-btn {
  --bs-btn-bg: var(--siv2-accent);
  --bs-btn-border-color: var(--siv2-accent);
  --bs-btn-color: var(--siv2-text);
  --bs-btn-hover-bg: #b8e009;
  --bs-btn-hover-border-color: #b8e009;
  --bs-btn-hover-color: var(--siv2-text);
  --bs-btn-active-bg: #a5c908;
  --bs-btn-active-border-color: #a5c908;
  --bs-btn-active-color: var(--siv2-text);
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-font-weight: 500;
  --bs-btn-border-radius: var(--siv2-radius);
  min-height: 64px;
  border-width: 2px;
}

.site-index-v2 .siv2-btn--block {
  width: 100%;
  max-width: 355px;
  box-sizing: border-box;
}

/* Badge pill */
.site-index-v2 .siv2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--siv2-accent-text);
  border-radius: 55px;
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  font-weight: 500;
  opacity: 0.75;
}

.site-index-v2 .siv2-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--siv2-accent-text);
  flex-shrink: 0;
}

/* Live indicator */
.site-index-v2 .siv2-live {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--siv2-live-bg);
  color: var(--siv2-live-text);
  font-size: 0.9375rem;
  font-weight: 800;
  border-radius: 5px;
}

/* Panels & cards */
.site-index-v2 .siv2-live-intro {
  width: 100%;
}

.site-index-v2 .siv2-panel--info {
  width: 80%;
  max-width: 965px;
  padding: var(--siv2-card-padding) !important;
}

.site-index-v2 .siv2-panel {
  background: var(--siv2-panel);
  border-radius: var(--siv2-radius-lg);
}

.site-index-v2 .siv2-panel--light {
  background: var(--siv2-panel-light);
  border-radius: var(--siv2-radius);
}

.site-index-v2 .siv2-card {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
}

.site-index-v2 .siv2-pill {
  background: #fff;
  border-radius: 9px;
  padding: var(--siv2-card-padding);
  font-size: var(--siv2-text-base);
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-index-v2 .siv2-pill--sm {
  padding: var(--siv2-card-padding);
}

.site-index-v2 .siv2-pill--lg {
  min-height: auto;
  width: 100%;
  padding: var(--siv2-card-padding);
}

/* Earn section */
.site-index-v2 .siv2-earn-section {
  --siv2-earn-width: 72.5rem;
}

.site-index-v2 .siv2-earn__title {
  max-width: 40.8125rem;
  margin: 0 auto 2.8125rem 0;
}

.site-index-v2 .siv2-earn__lead {
  max-width: var(--siv2-earn-width);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-earn-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: var(--siv2-earn-width);
  margin: 0 auto 2.5rem;
}

.site-index-v2 .siv2-earn-grid__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1rem, 7.75vw, 5.625rem);
  align-items: start;
}

.site-index-v2 .siv2-earn-grid__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-index-v2 .siv2-earn-grid__item {
  width: 100%;
}

.site-index-v2 .siv2-earn-grid__item--top {
  width: min(100%, 40.6875rem);
  align-self: center;
}

@media (min-width: 768px) {
  .site-index-v2 .siv2-earn__lead {
    margin: 0 0 1.875rem;
  }

  .site-index-v2 .siv2-br-desktop {
    display: block;
  }
}

.site-index-v2 .siv2-earn__footer {
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-highlight {
  background: var(--siv2-accent);
  border-radius: 12px;
  padding: var(--siv2-card-padding);
}

.site-index-v2 .siv2-highlight--steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: auto;
  padding: var(--siv2-card-padding-y) var(--siv2-card-padding-x);
}

.site-index-v2 .siv2-highlight__label {
  flex: 0 0 auto;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-index-v2 .siv2-highlight__text {
  flex: 0 0 auto;
  max-width: 40.9375rem;
  font-size: var(--siv2-text-base);
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.site-index-v2 .siv2-highlight__text p {
  margin: 0;
  font-size: inherit;
}

.site-index-v2 .siv2-highlight__text p + p {
  margin-top: 0.1875rem;
}

@media (max-width: 991.98px) {
  .site-index-v2 .siv2-highlight--steps {
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .site-index-v2 .siv2-highlight--steps {
    padding: var(--siv2-card-padding-y) var(--siv2-card-padding-x);
  }
}

/* Step card */
.site-index-v2 .siv2-step {
  display: flex;
  flex-direction: column;
  min-height: 344px;
}

.site-index-v2 .siv2-step__content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.625rem;
}

.site-index-v2 .siv2-step--text-top .siv2-step__content {
  flex: 0 0 auto;
}

.site-index-v2 .siv2-step--img-top .siv2-step__content {
  flex: 1 1 auto;
  padding-bottom: 0;
}

.site-index-v2 .siv2-step__num {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--siv2-text-secondary);
  text-transform: uppercase;
}

.site-index-v2 .siv2-step--text-top .siv2-step__num {
  min-height: 17px;
  margin-bottom: 11px;
}

.site-index-v2 .siv2-step--img-top .siv2-step__num {
  margin-top: auto;
  padding-top: 10px;
  min-height: 39px;
}

.site-index-v2 .siv2-step__title {
  margin: 0 0 0.375rem;
  font-size: var(--siv2-text-base) !important;
  font-weight: 800 !important;
  line-height: 1.25;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-step__text {
  margin: 0;
  max-width: 16.875rem;
  font-size: var(--siv2-text-base);
  font-weight: 500;
  line-height: 1.35;
  color: var(--siv2-text-secondary);
}

.site-index-v2 .siv2-step__img {
  flex: 0 0 auto;
  height: 192px;
  object-fit: cover;
  width: 100%;
}

.site-index-v2 .siv2-step--text-top .siv2-step__img {
  margin-top: auto;
}

/* Benefits section — Figma 418:476 */
.site-index-v2 .siv2-benefits-section__title {
  max-width: 52.6875rem;
  margin: 0 0 2.8125rem;
}

.site-index-v2 .siv2-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3.4vw, 2.5625rem);
  row-gap: 1.875rem;
  max-width: 75.125rem;
  margin: 0 auto 1.875rem;
  align-items: stretch;
}

.site-index-v2 .siv2-benefit-card {
  --siv2-benefit-visual-h: 192px;
  --siv2-benefit-foot-overlap: 15px;
  --siv2-benefit-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--siv2-benefit-radius);
}

.site-index-v2 .siv2-benefit-card--solo {
  max-width: 36.25rem;
  margin: 0 auto;
  border-radius: var(--siv2-benefit-radius);
}

.site-index-v2 .siv2-benefit-card__visual {
  flex-shrink: 0;
  height: var(--siv2-benefit-visual-h);
  overflow: hidden;
  background: #111;
  border-radius: var(--siv2-benefit-radius) var(--siv2-benefit-radius) 0 0;
}

.site-index-v2 .siv2-benefit-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.site-index-v2 .siv2-benefit-card__foot {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(var(--siv2-benefit-foot-overlap) * -1);
  min-height: auto;
  padding: var(--siv2-card-padding);
  text-align: center;
  border-radius: 0 0 var(--siv2-benefit-radius) var(--siv2-benefit-radius);
}

.site-index-v2 .siv2-benefit-card__foot--accent {
  background: var(--siv2-accent);
}

.site-index-v2 .siv2-benefit-card__foot--white {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.site-index-v2 .siv2-benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 0.625rem;
  line-height: 0;
}

.site-index-v2 .siv2-benefit-card__icon img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-index-v2 .siv2-benefit-card__icon--accent img {
  width: 31px;
  max-height: 31px;
  filter: brightness(0);
}

.site-index-v2 .siv2-benefit-card__icon--white img {
  width: 24px;
  max-height: 24px;
}

.site-index-v2 .siv2-benefit-card__content {
  max-width: 26.625rem;
  margin: 0 auto;
}

.site-index-v2 .siv2-benefit-card__title {
  margin: 0 0 0.375rem;
  font-size: var(--siv2-text-base);
  font-weight: 700;
  line-height: 1.2;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-benefit-card__text {
  margin: 0;
  font-size: var(--siv2-text-base);
  font-weight: 500;
  line-height: 1.35;
  color: var(--siv2-text);
}

/* Source cards (two columns) — Figma 414:272 */
.site-index-v2 .siv2-source-row {
  align-items: stretch;
}

.site-index-v2 .siv2-source-card {
  background: var(--siv2-panel);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.site-index-v2 .siv2-source-card__visual {
  position: relative;
  flex-shrink: 0;
  height: 290px;
  overflow: hidden;
  background: #111;
  line-height: 0;
}

.site-index-v2 .siv2-source-card__img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center center;
}

.site-index-v2 .siv2-source-card__num {
  position: absolute;
  top: 1.9375rem;
  left: 1.4375rem;
  z-index: 1;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.site-index-v2 .siv2-source-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: var(--siv2-card-padding);
}

.site-index-v2 .siv2-source-card__title {
  margin: 0 0 0.5rem;
  font-size: var(--siv2-text-base);
  font-weight: 700;
  line-height: 1.35;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-source-card__list {
  flex: 1 1 auto;
  margin: 0 0 0.5rem;
  padding-left: 1.25rem;
  font-size: var(--siv2-text-base);
  font-weight: 500;
  line-height: 1.45;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-source-card__note {
  margin: auto 0 0;
  font-size: var(--siv2-text-base);
  font-weight: 500;
  line-height: 1.45;
  color: var(--siv2-text);
}

/* City stats carousel */
.site-index-v2 .siv2-cities-carousel__viewport {
  overflow: hidden;
}

.site-index-v2 .siv2-cities-carousel__track {
  gap: 16px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.site-index-v2 .siv2-cities-carousel__slide {
  flex: 0 0 calc((100% - 8px) / 1.5);
  min-width: calc((100% - 8px) / 1.5);
}

.site-index-v2 .siv2-cities-carousel__btn {
  width: 51px;
  height: 51px;
  padding: 0;
  border: none;
  background: transparent;
  opacity: 1;
}

.site-index-v2 .siv2-cities-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.site-index-v2 .siv2-cities-carousel__btn-icon {
  display: block;
  width: 51px;
  height: 51px;
  background: url('../img/site-index-v2/arrow-left.svg') center/contain no-repeat;
}

.site-index-v2 .siv2-cities-carousel__btn--next .siv2-cities-carousel__btn-icon {
  transform: scaleX(-1);
}

/* City stats card */
.site-index-v2 .siv2-city {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 367px;
  background: #040a14 center/cover no-repeat;
}

.site-index-v2 .siv2-city__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 20, 0.55) 0%, rgba(4, 10, 20, 0.15) 60%, transparent 100%);
}

.site-index-v2 .siv2-city__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1.25rem 1rem;
}

.site-index-v2 .siv2-city__title {
  font-size: clamp(1.125rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.site-index-v2 .siv2-city__updated {
  margin: 0;
}

.site-index-v2 .siv2-city__stat-label {
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  font-size: clamp(0.625rem, 1.8vw, var(--siv2-text-base));
}

.site-index-v2 .siv2-city__icon {
  width: 83px;
  height: 83px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent;
}

.site-index-v2 .siv2-city--purple .siv2-city__icon {
  border-color: #be7bff;
  background: linear-gradient(136deg, #b061ff 3.6%, #5900b2 96%);
}

.site-index-v2 .siv2-city--purple .siv2-city__time-accent {
  color: #b971ff;
}

.site-index-v2 .siv2-city--blue .siv2-city__icon {
  border-color: #5eb3ff;
  background: linear-gradient(136deg, #4da3ff 3.6%, #0056b3 96%);
}

.site-index-v2 .siv2-city--blue .siv2-city__time-accent {
  color: #5eb3ff;
}

.site-index-v2 .siv2-city--green .siv2-city__icon {
  border-color: #7ddf7d;
  background: linear-gradient(136deg, #5ec95e 3.6%, #1a7a1a 96%);
}

.site-index-v2 .siv2-city--green .siv2-city__time-accent {
  color: #7ddf7d;
}

.site-index-v2 .siv2-city--yellow .siv2-city__icon {
  border-color: #e6c84a;
  background: linear-gradient(136deg, #d4b030 3.6%, #9a7b00 96%);
}

.site-index-v2 .siv2-city--yellow .siv2-city__time-accent {
  color: #e6c84a;
}

.site-index-v2 .siv2-city__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-index-v2 .siv2-city__stat-num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.site-index-v2 .siv2-city__time-accent {
  font-weight: 700;
}

/* Video section — Figma frame 476:267 (1068×959) */
.site-index-v2 .siv2-video-section__title {
  max-width: 794px;
}

.site-index-v2 .siv2-video-section__text {
  max-width: 775px;
}

.site-index-v2 .siv2-video {
  position: relative;
  width: min(925px, 100%);
  max-width: 925px;
  aspect-ratio: 925 / 533;
  border: 2px solid var(--siv2-live-text);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e9e9;
  overflow: hidden;
}

.site-index-v2 .siv2-play {
  width: 68px;
  height: 68px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.site-index-v2 .siv2-play img {
  width: 100%;
  height: 100%;
}

/* Calculator — Figma frame 422:625 */
.site-index-v2 .siv2-calc-section__subtitle {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
}

.site-index-v2 .siv2-calc-shell {
  background: var(--siv2-panel-light);
  border-radius: var(--siv2-radius);
  padding: 0.375rem 0.5rem;
}

.site-index-v2 .siv2-calc-panel {
  background: #fff;
  border-radius: var(--siv2-radius);
  padding: var(--siv2-card-padding);
}

.site-index-v2 .siv2-calc__label {
  font-size: var(--siv2-text-base);
  font-weight: 600;
  color: var(--siv2-text-secondary);
}

.site-index-v2 .siv2-calc__box {
  background: #f2f2f2;
  border-radius: 10px;
  min-height: auto;
  padding: 0.625rem 0.875rem;
}

.site-index-v2 .siv2-calc__value {
  font-weight: 700;
  line-height: 1.2;
}

.site-index-v2 .siv2-calc__value[data-siv2-clients-out],
.site-index-v2 .siv2-calc__value .siv2-calc__amount {
  font-size: 1.5rem;
}

.site-index-v2 .siv2-calc__currency {
  font-size: var(--siv2-text-base);
  font-weight: 700;
}

.site-index-v2 .siv2-calc__scale {
  font-size: var(--siv2-text-base);
  font-weight: 500;
  color: var(--siv2-text-secondary);
}

.site-index-v2 .siv2-calc__range {
  --siv2-range-fill: 20%;
  --siv2-range-track: #d9d9d9;
  --siv2-range-active: #f90042;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 16px;
  margin: 0.25rem 0 0.5rem;
  background: transparent;
  cursor: pointer;
}

.site-index-v2 .siv2-calc__range:focus {
  outline: none;
}

.site-index-v2 .siv2-calc__range:focus-visible::-webkit-slider-thumb,
.site-index-v2 .siv2-calc__range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(249, 0, 66, 0.25);
}

.site-index-v2 .siv2-calc__range::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--siv2-range-active) 0%,
    var(--siv2-range-active) var(--siv2-range-fill),
    var(--siv2-range-track) var(--siv2-range-fill),
    var(--siv2-range-track) 100%
  );
}

.site-index-v2 .siv2-calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -6.5px;
  border: none;
  border-radius: 50%;
  background: var(--siv2-range-active);
  box-shadow: none;
}

.site-index-v2 .siv2-calc__range::-moz-range-track {
  height: 3px;
  border: none;
  border-radius: 2px;
  background: var(--siv2-range-track);
}

.site-index-v2 .siv2-calc__range::-moz-range-progress {
  height: 3px;
  border-radius: 2px 0 0 2px;
  background: var(--siv2-range-active);
}

.site-index-v2 .siv2-calc__range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: var(--siv2-range-active);
  box-shadow: none;
}

.site-index-v2 .siv2-calc__offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.site-index-v2 .siv2-calc__result {
  background: #f2f2f2;
  border-radius: 10px;
  min-height: auto;
  padding: var(--siv2-card-padding);
}

.site-index-v2 .siv2-calc__result-label {
  font-size: var(--siv2-text-base);
  font-weight: 500;
  color: var(--siv2-text-secondary);
  margin-bottom: 0;
}

.site-index-v2 .siv2-calc__result-value {
  font-weight: 700;
  line-height: 1.2;
}

.site-index-v2 .siv2-calc__result-value .siv2-calc__amount {
  font-size: 2rem;
}

.site-index-v2 .siv2-calc__cta {
  --bs-btn-border-radius: 10px;
  min-height: 78px;
  max-width: none;
  width: 100%;
  border-width: 0;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

/* After DTP — Figma node 418:477 */
.site-index-v2 .siv2-after-dtp-section {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}

.site-index-v2 .siv2-after-dtp__title {
  margin: 0 0 1.5rem;
  text-align: left;
}

.site-index-v2 .siv2-after-dtp__text,
.site-index-v2 .siv2-after-dtp__intro {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-after-dtp__intro {
  margin-bottom: 1rem;
  text-align: center;
}

.site-index-v2 .siv2-after-dtp__list {
  width: 100%;
  margin: 0 0 2.5rem;
}

.site-index-v2 .siv2-service {
  background: #d9d9d9;
  border-radius: 12px;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  line-height: 1.35;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-index-v2 .siv2-after-dtp__footer {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: var(--siv2-text);
}

.site-index-v2 .siv2-after-dtp__footer-line {
  display: block;
}

@media (min-width: 992px) {
  .site-index-v2 .siv2-after-dtp__title {
    margin-bottom: 1.875rem;
  }

  .site-index-v2 .siv2-after-dtp__text,
  .site-index-v2 .siv2-after-dtp__intro,
  .site-index-v2 .siv2-service {
    font-size: 1.25rem;
  }

  .site-index-v2 .siv2-after-dtp__list {
    margin-bottom: 2.8125rem;
  }

  .site-index-v2 .siv2-after-dtp__footer {
    font-size: 2rem;
  }
}

/* Testimonial / video card */
.site-index-v2 .siv2-testimonials-section__lead {
  max-width: 820px;
}

.site-index-v2 .siv2-testimonial-wrap {
  width: min(360px, 100%);
  max-width: 360px;
}

.site-index-v2 .siv2-testimonial {
  position: relative;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: var(--siv2-radius);
  min-height: 491px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.site-index-v2 .siv2-testimonial--vertical {
  width: 100%;
  min-height: 0;
  aspect-ratio: 9 / 16;
  border: 2px solid var(--siv2-live-text);
  border-radius: 24px;
  background: #e9e9e9;
}

.site-index-v2 .siv2-testimonial__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* White full-width section */
.site-index-v2 .siv2-section-white {
  background: #fff;
  border-radius: 45px;
  padding: 2rem 0 3rem;
}

/* Carousel nav arrows */
.site-index-v2 .siv2-carousel-nav .carousel-control-prev,
.site-index-v2 .siv2-carousel-nav .carousel-control-next {
  position: static;
  width: 51px;
  height: 51px;
  opacity: 1;
}

.site-index-v2 .siv2-carousel-nav .carousel-control-prev-icon,
.site-index-v2 .siv2-carousel-nav .carousel-control-next-icon {
  background-image: url('../img/site-index-v2/arrow-left.svg');
  width: 51px;
  height: 51px;
}

.site-index-v2 .siv2-carousel-nav .carousel-control-next-icon {
  transform: scaleX(-1);
}

.site-index-v2 .siv2-hero__img {
  max-width: 955px;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .site-index-v2 .siv2-br-mobile {
    display: block;
  }

  .site-index-v2 .siv2-badge {
    white-space: nowrap;
    font-size: clamp(0.6875rem, 3.1vw, 0.875rem);
    padding: 0.5rem 0.875rem;
    gap: 0.5rem;
    max-width: calc(100vw - 2 * var(--site-index-shell-gutter));
    box-sizing: border-box;
  }

  .site-index-v2 .siv2-badge__dot {
    width: 8px;
    height: 8px;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn__title {
    margin-bottom: 1rem;
    max-width: none;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn__lead {
    margin: 0 0 1rem;
    max-width: none;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.35;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid__columns,
  .site-index-v2 .siv2-earn-section .siv2-earn-grid__col {
    display: contents;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid__item--top {
    order: 5;
    width: 100%;
    align-self: stretch;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid__item--a {
    order: 1;
    grid-column: 1 / -1;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid__item--b {
    order: 2;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid__item--c {
    order: 3;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid__item--d {
    order: 4;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn-grid .siv2-pill {
    min-height: 4.75rem;
    padding: 0.625rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .site-index-v2 .siv2-earn-section .siv2-earn__footer {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    text-align: center;
  }

  .site-index-v2 .siv2-steps-section .row.g-3 {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
  }

  .site-index-v2 .siv2-steps-section .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .site-index-v2 .siv2-steps-section .siv2-step {
    min-height: 0;
    height: 100%;
  }

  .site-index-v2 .siv2-steps-section .siv2-step__content {
    padding: 0.5rem 0.5rem 0;
    flex: 1 1 auto;
  }

  .site-index-v2 .siv2-steps-section .siv2-step__num {
    font-size: 0.75rem;
    line-height: 1.2;
    margin: 0 0 0.25rem !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .site-index-v2 .siv2-steps-section .siv2-step__title {
    font-size: 0.75rem !important;
    line-height: 1.25;
    margin-bottom: 0.25rem;
  }

  .site-index-v2 .siv2-steps-section .siv2-step__text {
    font-size: 0.75rem;
    line-height: 1.35;
    max-width: none;
    margin-bottom: 0.625rem;
  }

  .site-index-v2 .siv2-steps-section .siv2-step__img {
    height: 4.75rem;
    width: 100%;
    margin-top: 0 !important;
    object-fit: cover;
  }

  .site-index-v2 .siv2-steps-section .siv2-step--text-top .siv2-step__content {
    flex: 1 1 auto;
  }

  .site-index-v2 .siv2-steps-section .siv2-step--img-top {
    display: flex;
    flex-direction: column;
  }

  .site-index-v2 .siv2-steps-section .siv2-step--img-top .siv2-step__content {
    order: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.5rem 0;
  }

  .site-index-v2 .siv2-steps-section .siv2-step--img-top .siv2-step__num {
    order: 1;
  }

  .site-index-v2 .siv2-steps-section .siv2-step--img-top .siv2-step__title {
    order: 2;
  }

  .site-index-v2 .siv2-steps-section .siv2-step--img-top .siv2-step__text {
    order: 3;
  }

  .site-index-v2 .siv2-steps-section .siv2-step--img-top .siv2-step__img {
    order: 2;
  }

  .site-index-v2 .siv2-steps-section .siv2-highlight--steps {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
  }

  .site-index-v2 .siv2-steps-section .siv2-highlight__label {
    font-size: 1.5rem;
    line-height: 1.1;
    flex: 0 0 auto;
  }

  .site-index-v2 .siv2-steps-section .siv2-highlight__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
  }

  .site-index-v2 .siv2-steps-section .siv2-highlight__text p {
    font-size: 0.75rem;
  }

  .site-index-v2 .siv2-steps-section .siv2-highlight__text p + p {
    margin-top: 0.125rem;
  }

  .site-index-v2 .siv2-benefits-grid {
    grid-template-columns: 1fr;
  }

  .site-index-v2 .siv2-benefit-card,
  .site-index-v2 .siv2-benefit-card--solo {
    max-width: none;
  }

  .site-index-v2 .siv2-benefit-card__foot {
    padding: var(--siv2-card-padding);
  }

  .site-index-v2 .siv2-source-card__visual {
    height: auto;
    aspect-ratio: 590 / 289;
  }

  .site-index-v2 .siv2-source-card__img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .site-index-v2 .siv2-live-intro {
    text-align: center;
  }

  .site-index-v2 .siv2-live-intro .row {
    --bs-gutter-y: 1rem;
  }

  .site-index-v2 .siv2-live-intro__lead,
  .site-index-v2 .siv2-live-intro__note {
    max-width: 22rem;
    margin-inline: auto;
  }

  .site-index-v2 .siv2-city__content {
    padding: 1rem 0.875rem 1.125rem;
  }

  .site-index-v2 .siv2-city {
    min-height: auto;
    border-radius: 24px;
  }

  .site-index-v2 .siv2-city__header {
    gap: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }

  .site-index-v2 .siv2-city__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .site-index-v2 .siv2-city__icon img {
    width: 28px;
    height: 28px;
  }

  .site-index-v2 .siv2-city__title {
    font-size: 1.125rem;
  }

  .site-index-v2 .siv2-city__updated {
    margin-bottom: 1rem !important;
    font-size: var(--siv2-text-base);
  }

  .site-index-v2 .siv2-city__stats {
    --bs-gutter-x: 0.5rem;
  }

  .site-index-v2 .siv2-city__stat-num {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.375rem;
  }

  .site-index-v2 .siv2-city__stat-label {
    font-size: clamp(0.5625rem, 2.35vw, 0.8125rem);
    letter-spacing: -0.02em;
  }

  .site-index-v2 .siv2-section-white {
    border-radius: 24px;
  }

  .site-index-v2 .siv2-panel--info {
    width: 100%;
  }

  .site-index-v2 .siv2-cities-carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .site-index-v2 .siv2-cities-carousel__track {
    gap: 0.75rem;
  }

  .site-index-v2 .siv2-btn {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-font-size: var(--siv2-text-base);
    min-height: 44px;
    border-width: 1px;
  }

  .site-index-v2 .siv2-btn--block {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-inline: 0 !important;
    box-sizing: border-box;
  }

  .site-index-v2 .siv2-video-section .siv2-btn--block,
  .site-index-v2 .siv2-video.mb-5 {
    width: 100%;
    max-width: 100%;
  }

  .site-index-v2 .siv2-calc__cta {
    min-height: 44px;
    font-size: var(--siv2-text-base);
    padding: 0.625rem 1rem;
  }

  .site-index-v2 .siv2-testimonial-wrap {
    width: min(320px, 100%);
    max-width: 320px;
  }
}

/* Partner signup modal on landing — same card/form styles as .site-signup */
.siv2-signup-modal .modal-dialog {
  max-width: 36rem;
}

.siv2-signup-modal .modal-content {
  position: relative;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

.siv2-signup-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  margin: 0;
}

.siv2-signup-modal__body.site-signup {
  padding: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

.siv2-signup-modal__body.site-signup .card-body {
  padding-bottom: 3rem !important;
}

@media (max-width: 767.98px) {
  .siv2-signup-modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .siv2-signup-modal__body.site-signup .card-body {
    padding: 1rem 0.75rem 1.5rem !important;
  }
}
