/* Related-services cards */
.svb-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.svb-related-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .875rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border-top: 4px solid #339190;
  text-decoration: none;
  color: #151516;
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease;
}

/* override main.css a[href^="tel:"]{white-space:nowrap} without touching colors */
a.svb-related-card,
a.svb-related-card[href^="tel:"],
a.svb-related-card[href^="mailto:"] {
  white-space: normal;
}

.svb-related-card[data-highlighted="1"] {
  background: #339190;
  color: #fff;
  border-top-color: transparent;
}

.svb-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .1);
}

.svb-related-card p,
.svb-related-card div,
.svb-related-card span,
.svb-related-text {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
}

.svb-related-text {
  width: 100%;
  display: block;
}

.svb-related-desc {
  margin: .25rem 0 0;
  font-size: .875rem;
  line-height: 1.4;
  display: block;
}

.svb-related-price {
  margin-top: .375rem;
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
}

.svb-related-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9375rem;
  margin-top: auto;
  white-space: nowrap;
}

/* Quiz card — центрированный, без бренд-плашки */
.svb-quiz-card {
  max-width: 56rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.5625rem;
  padding: 3rem 2.5rem;
  border: 2px solid #e1ebf2;
  position: relative;
}
.svb-quiz-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 6px;
  background: linear-gradient(90deg, #3d9b9c, #51bcb2);
  border-radius: 0 0 999px 999px;
}
.svb-quiz-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.svb-quiz-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  background: #339190;
  color: #fff;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.svb-quiz-dots {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}
.svb-quiz-dot {
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  background: #e1ebf2;
  transition: background .2s ease, transform .2s ease;
}
.svb-quiz-dot.is-done { background: #51bcb2; }
.svb-quiz-dot.is-current { background: #339190; transform: scale(1.4); }
.svb-quiz {
  width: 100%;
  min-width: 0;
  max-width: 40rem;
  margin: 0 auto;
}
.svb-quiz-step {
  font-size: .8125rem;
  font-weight: 600;
  color: #339190;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  margin-bottom: .75rem;
}
.svb-quiz-q {
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  color: #151516;
  margin-bottom: 1.5rem;
  text-align: center;
}
.svb-quiz-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.svb-quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  background: #fff;
  border: 2px solid #e1ebf2;
  border-radius: 1rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 1.0625rem;
  color: #151516;
  transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.svb-quiz-option:hover {
  border-color: #339190;
  background: #f2f6f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(51, 145, 144, .12);
}
.svb-quiz-option-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f2f6f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  color: #339190;
  transition: background .15s ease, color .15s ease;
}
.svb-quiz-option:hover .svb-quiz-option-num {
  background: #339190;
  color: #fff;
}
.svb-quiz-option-label {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.svb-quiz-option-arrow {
  flex-shrink: 0;
  color: #b9c3cc;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color .15s ease, transform .15s ease;
}
.svb-quiz-option:hover .svb-quiz-option-arrow {
  color: #339190;
  transform: translateX(4px);
}
.svb-quiz-back {
  margin: 1rem auto 0;
  display: block;
  background: none;
  border: none;
  color: #5a6776;
  font-size: .875rem;
  cursor: pointer;
  padding: .25rem .75rem;
}
.svb-quiz-back:hover { color: #339190; }

.svb-quiz-result {
  text-align: center;
}
.svb-quiz-result-eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 600;
  color: #339190;
  margin-bottom: .5rem;
}
.svb-quiz-result-title {
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #151516;
  margin-bottom: .75rem;
}
.svb-quiz-result-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #5a6776;
  margin-bottom: 1.5rem;
}
.svb-quiz-result-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  justify-content: center;
}
@media (max-width: 540px) {
  .svb-quiz-result-actions { flex-direction: column; }
}
.svb-quiz-result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 1.5rem;
  background: #339190;
  color: #fff;
  border-radius: .75rem;
  text-decoration: none;
  font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.svb-quiz-result-cta:hover { background: #2a8586; transform: translateY(-1px); }
.svb-quiz-result-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  background: #fff;
  color: #339190;
  border: 2px solid #339190;
  border-radius: .75rem;
  text-decoration: none;
  font-weight: 600;
}
.svb-quiz-result-restart, .svb-quiz-restart {
  margin-top: .25rem;
  background: none;
  border: none;
  color: #5a6776;
  font-size: .875rem;
  cursor: pointer;
  padding: 0;
}
.svb-quiz-restart:hover { color: #339190; }

@media (max-width: 1023px) {
  .svb-quiz-wrap { grid-template-columns: 1fr; }
}

/* ────────────── Reviews ────────────── */
.svb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.svb-review-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid #e1ebf2;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  overflow: hidden;
}
.svb-review-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c49e90 0%, #d2c0b4 50%, #b78b7b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  filter: blur(0);
}
.svb-review-meta {
  font-size: .8125rem;
  color: #5a6776;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
.svb-review-quote {
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  color: #151516;
  border-left: 3px solid #339190;
  padding-left: .875rem;
}
.svb-review-section {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.svb-review-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aa897c;
  margin: 0;
}
.svb-review-label--green {
  color: #339190;
}
.svb-review-text {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.5;
  color: #1f2937;
  overflow-wrap: anywhere;
}

/* ────────────── Safety ────────────── */
.svb-safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.svb-safety-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  border: 1px solid #e1ebf2;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  overflow: hidden;
}
.svb-safety-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3d9b9c, #51bcb2);
}
.svb-safety-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #339190;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}

/* ────────────── FAQ ────────────── */
.svb-faq-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  max-width: 56rem;
}
.svb-faq-item {
  background: #fff;
  border: 1px solid #e1ebf2;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .2s ease;
}
.svb-faq-item[open] {
  border-color: #339190;
}
.svb-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: #151516;
}
.svb-faq-q::-webkit-details-marker { display: none; }
.svb-faq-q-text { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.svb-faq-q-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #f2f6f9;
  color: #339190;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}
.svb-faq-item[open] .svb-faq-q-icon {
  transform: rotate(45deg);
  background: #339190;
  color: #fff;
}
.svb-faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #5a6776;
  overflow-wrap: anywhere;
}

/* ────────────── Final CTA ────────────── */
.svb-final-cta {
  background: linear-gradient(135deg, #3d9b9c 0%, #51bcb2 50%, #2a8586 100%);
  border-radius: 1.5625rem;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.svb-final-cta-decor {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.svb-final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.svb-final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: .375rem 1rem;
  background: rgba(255,255,255,.18);
  color: #fff;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}
.svb-final-cta-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: .5rem;
}
.svb-final-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.75rem;
  background: #fff;
  color: #339190;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svb-final-cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.svb-final-cta-phone-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: #5a6776;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.svb-final-cta-phone-num {
  display: block;
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #151516;
}
.svb-final-cta-messengers {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  color: rgba(255,255,255,.85);
}
.svb-final-cta-messengers-label {
  font-size: .9375rem;
}
.svb-final-cta-mes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.svb-final-cta-mes:hover {
  background: #fff;
  color: #339190;
  transform: translateY(-2px);
}
.svb-final-cta-note {
  margin: .25rem 0 0;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
}
