/**
 * Vetrineshop Page Composer
 * Stili frontend base
 * Data creazione: 2026-05-14
 *
 * V6:
 * - editor visuale backend per testi/CTA;
 * - non ridefinisce la tipografia pubblica del tema;
 * - usa le classi ufficiali Vetrineshop: .vs-page-title e .titolo-sezione;
 * - evita doppio container e restringimenti.
 */

.vspc-page-composer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vspc-breadcrumb {
  margin: 0 0 24px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.vspc-breadcrumb a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.vspc-breadcrumb span[aria-current="page"] {
  color: inherit;
  font-weight: inherit;
  opacity: .75;
}

.vspc-breadcrumb__sep {
  display: inline-block;
  margin: 0 8px;
  opacity: .6;
}

.vspc-page-header {
  margin: 0 0 32px;
}

.vspc-page-title {
  margin: 0;
}

.vspc-page-sections {
  width: 100%;
  max-width: none;
}

.vspc-section {
  width: 100%;
  max-width: none;
  margin: 0 0 36px;
  box-sizing: border-box;
}

.vspc-section--title h2 {
  margin: 0 0 18px;
}

.vspc-section--text {
  font-size: inherit;
  line-height: 1.6;
  color: inherit;
}

.vspc-section--text p {
  margin: 0 0 18px;
}

.vspc-section--text p:last-child {
  margin-bottom: 0;
}

.vspc-section--cta {
  margin-top: 40px;
  margin-bottom: 40px;
}

.vspc-cta-box {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid #e7e0d6;
  border-radius: 24px;
  background: #f7f4ef;
  font-size: inherit;
  line-height: 1.55;
  color: inherit;
}

.vspc-cta-box h2,
.vspc-cta-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.vspc-cta-box .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 220px;
  white-space: nowrap;
  text-align: center;
}

.vspc-divider {
  border: 0;
  border-top: 1px solid #e6e0d8;
  margin: 40px 0;
}

.vspc-section--editorial-block {
  margin-top: 40px;
  margin-bottom: 40px;
}

.vspc-section--editorial-block .vseb-slot,
.vspc-section--editorial-block .vs-editorial-block {
  width: 100%;
  max-width: none;
}

@media (max-width: 768px) {
  .vspc-breadcrumb {
    margin-bottom: 20px;
  }

  .vspc-page-header {
    margin-bottom: 26px;
  }

  .vspc-section {
    margin-bottom: 30px;
  }

  .vspc-section--cta,
  .vspc-section--editorial-block {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
/* =========================================================
   HERO IMAGE MODULE — V2
========================================================= */

.vspc-hero {
  background: var(--vspc-hero-bg, transparent);
  color: var(--vspc-hero-text, inherit);
}

.vspc-hero__figure {
  position: relative;
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.vspc-hero__image {
  display: block;
  width: 100%;
}

.vspc-hero--height-medium .vspc-hero__image {
  height: clamp(340px, 54vw, 680px);
}

.vspc-hero--height-large .vspc-hero__image {
  height: clamp(480px, 62vw, 780px);
}

.vspc-hero--height-screen .vspc-hero__image {
  height: 88vh;
}

.vspc-hero--height-natural .vspc-hero__image {
  height: auto;
}

.vspc-hero--fit-cover .vspc-hero__image {
  object-fit: cover;
}

.vspc-hero--fit-contain .vspc-hero__image {
  object-fit: contain;
  background: #000;
}

.vspc-hero--width-full_bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.vspc-hero--width-full_bleed .vspc-hero__figure {
  border-radius: 0;
}

.vspc-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--vspc-hero-overlay-opacity, 1);
}

.vspc-hero--overlay-dark .vspc-hero__overlay {
  background: rgba(0,0,0,.38);
}

.vspc-hero--overlay-light .vspc-hero__overlay {
  background: rgba(255,255,255,.32);
}

.vspc-hero--overlay-gradient .vspc-hero__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.42) 46%,
    rgba(0,0,0,.08) 100%
  );
}

.vspc-hero__content {
  position: absolute;
  z-index: 2;
  color: var(--vspc-hero-text, #fff);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 700px;
  padding: clamp(30px, 4vw, 56px);
  box-sizing: border-box;
}

.vspc-hero--inside-center .vspc-hero__content {
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}

.vspc-hero--inside-top-left .vspc-hero__content {
  left: 0;
  top: 0;
  bottom: auto;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.vspc-hero--inside-bottom-left .vspc-hero__content {
  left: 0;
  bottom: 0;
  top: auto;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.vspc-hero--inside-center .vspc-hero__actions {
  justify-content: center;
}

.vspc-hero--inside-center .vspc-hero__subtitle,
.vspc-hero--inside-center .vspc-hero__h1,
.vspc-hero--inside-center .titolo-sezione {
  text-align: center;
}

.vspc-hero__text {
  margin-top: 22px;
}

.vspc-hero--outside-top .vspc-hero__text {
  margin-top: 0;
  margin-bottom: 22px;
}

.vspc-hero .vspc-hero__h1.titolo-sezione {
  font-size: clamp(2.35rem, 3.55vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 660px;
  margin: 0;
  text-align: left;
}

.vspc-hero:not(:has(.vspc-hero__h1)) .vspc-hero__content .titolo-sezione {
  font-size: clamp(2.1rem, 3.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 640px;
  margin: 0;
}

.vspc-hero .vspc-hero__subtitle,
.vspc-hero .vspc-hero__subtitle p,
.vspc-hero__content .vspc-hero__subtitle,
.vspc-hero__content .vspc-hero__subtitle p {
  max-width: 620px;
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: 0;
  margin: 0;
  color: var(--vspc-hero-text, inherit);
}
.vspc-hero__actions,
.vspc-hero__content .vspc-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-bottom: 25px;
}

.vspc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: .25s ease;
  font-weight: 650;
  line-height: 1;
  font-size: .96rem;
  white-space: nowrap;
}

.vspc-btn--primary {
  background: var(--vspc-hero-cta-primary-bg, #111);
  color: var(--vspc-hero-cta-primary-text, #fff);
}

.vspc-btn--primary:hover {
  background: var(--vspc-hero-cta-primary-bg, #000);
  color: var(--vspc-hero-cta-primary-text, #fff);
  filter: brightness(.92);
}

.vspc-btn--secondary {
  border: 1px solid var(--vspc-hero-cta-secondary-color, currentColor);
  color: var(--vspc-hero-cta-secondary-color, inherit);
  background: transparent;
}

.vspc-btn--secondary:hover {
  background: color-mix(
    in srgb,
    var(--vspc-hero-cta-secondary-hover-bg, #ffffff) 16%,
    transparent
  );
}

.vspc-hero__caption {
  margin-top: 10px;
  font-size: .92em;
  opacity: .72;
  color: var(--vspc-hero-text, inherit);
}

.vspc-hero .titolo-sezione,
.vspc-hero__subtitle {
  color: var(--vspc-hero-text, inherit);
}

/* Tablet: riduce il blocco testo prima che le CTA vadano fuori */
@media (max-width: 1200px) {
  .vspc-hero--height-large .vspc-hero__image {
    height: 540px;
  }

  .vspc-hero .vspc-hero__h1.titolo-sezione {
    font-size: clamp(2.1rem, 3.8vw, 3.4rem);
    max-width: 560px;
  }

  .vspc-hero__subtitle,
  .vspc-hero__content .vspc-hero__subtitle {
    max-width: 500px;
    font-size: 1.02rem;
    line-height: 1.52;
  }

  .vspc-hero__content {
    max-width: 620px;
    gap: 10px;
    padding: 32px;
  }

  .vspc-btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: .92rem;
  }
}

/* Mobile: contenuto sotto l'immagine, sempre visibile */
@media (max-width: 768px) {
  .vspc-hero__figure {
    overflow: visible;
    border-radius: 20px;
  }

  .vspc-hero--width-full_bleed .vspc-hero__figure {
    border-radius: 0;
  }

  .vspc-hero--height-medium .vspc-hero__image,
  .vspc-hero--height-large .vspc-hero__image,
  .vspc-hero--height-screen .vspc-hero__image {
    height: auto;
    aspect-ratio: 16 / 7;
    object-fit: cover;
  }

  .vspc-hero--height-natural .vspc-hero__image {
    height: auto;
  }

  .vspc-hero__overlay {
    display: none;
  }

  .vspc-hero__content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    padding: 24px 22px 28px;
    gap: 12px;
    background: var(--vspc-hero-bg, #111);
    color: var(--vspc-hero-text, #fff);
  }

  .vspc-hero .vspc-hero__h1.titolo-sezione {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0;
  }

  .vspc-hero:not(:has(.vspc-hero__h1)) .vspc-hero__content .titolo-sezione {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0;
  }

  .vspc-hero__subtitle,
  .vspc-hero__content .vspc-hero__subtitle {
    width: 100%;
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.45;
  }

  .vspc-hero__actions,
  .vspc-hero__content .vspc-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 8px;
  }

  .vspc-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: .95rem;
    white-space: normal;
  }
}
/* =========================================================
   FAQ ACCORDION MODULE
========================================================= */

.vspc-faq {
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  background: var(--vspc-faq-bg, transparent);
  color: var(--vspc-faq-text, inherit);
}

.vspc-faq,
.vspc-faq .titolo-sezione,
.vspc-faq__question,
.vspc-faq__answer {
  color: var(--vspc-faq-text, inherit);
}

.vspc-faq__title {
  margin-bottom: 24px;
}

.vspc-faq__items {
  border-top: 1px solid currentColor;
}

.vspc-faq__item {
  border-bottom: 1px solid currentColor;
}

.vspc-faq__question {
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
}

.vspc-faq__icon {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
}

.vspc-faq__question[aria-expanded="true"] .vspc-faq__icon {
  transform: rotate(45deg);
}

.vspc-faq__answer {
  padding: 0 0 22px;
  line-height: 1.65;
}

.vspc-faq__answer p {
  margin: 0 0 14px;
}

.vspc-faq__answer p:last-child {
  margin-bottom: 0;
}
/* =========================================================
   IMAGE DUO MODULE
========================================================= */

.vspc-image-duo {
  background: var(--vspc-duo-bg, transparent);
  color: var(--vspc-duo-text, inherit);
}

.vspc-image-duo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
}

.vspc-image-duo__figure {
  margin: 0;
}

.vspc-image-duo__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.vspc-image-duo__caption {
  margin-top: 12px;
  color: var(--vspc-duo-caption, inherit);
  line-height: 1.5;
}

.vspc-image-duo__caption p {
  margin: 0 0 10px;
}

.vspc-image-duo__caption p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .vspc-image-duo__grid {
    grid-template-columns: 1fr;
  }

  .vspc-image-duo__image {
    border-radius: 20px;
  }
}
/* =========================================================
   IMAGE TRIO MODULE
========================================================= */

.vspc-image-trio {
  background: var(--vspc-trio-bg, transparent);
  color: var(--vspc-trio-text, inherit);
}

.vspc-image-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
}

.vspc-image-trio__figure {
  margin: 0;
}

.vspc-image-trio__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.vspc-image-trio__caption {
  margin-top: 12px;
  color: var(--vspc-trio-caption, inherit);
  line-height: 1.5;
}

.vspc-image-trio__caption p {
  margin: 0 0 10px;
}

.vspc-image-trio__caption p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .vspc-image-trio__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vspc-image-trio__image {
    border-radius: 20px;
  }
}
/* =========================================================
   IMAGE QUAD MODULE
========================================================= */

.vspc-image-quad {
  background: var(--vspc-quad-bg, transparent);
  color: var(--vspc-quad-text, inherit);
}

.vspc-image-quad__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
}

.vspc-image-quad__figure {
  margin: 0;
}

.vspc-image-quad__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
}

.vspc-image-quad__caption {
  margin-top: 10px;
  color: var(--vspc-quad-caption, inherit);
  line-height: 1.45;
}

.vspc-image-quad__caption p {
  margin: 0 0 10px;
}

.vspc-image-quad__caption p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .vspc-image-quad__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vspc-image-quad__grid {
    grid-template-columns: 1fr;
  }

  .vspc-image-quad__image {
    border-radius: 20px;
  }
}

.vspc-cta-box .vspc-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 28px;
  margin-top: 20px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}
/* =========================================================
   IMAGE CARD ICONS — shared duo/trio/quad
========================================================= */

.vspc-image-card__caption {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.vspc-image-card__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #17130f;
  color: #fff;
  line-height: 1;
}

.vspc-image-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .vspc-image-card__icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .vspc-image-card__icon svg {
    width: 21px;
    height: 21px;
  }
}
/* =========================================================
   IMAGE CARD ICONS + TITLES — shared duo/trio/quad
========================================================= */

.vspc-image-card__caption {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vspc-image-card__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #17130f;
  color: #fff;
  line-height: 1;
}

.vspc-image-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vspc-image-card__body {
  min-width: 0;
}

.vspc-image-card__title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111;
}

.vspc-image-card__body p {
  margin: 0;
}

@media (max-width: 640px) {
  .vspc-image-card__caption {
    gap: 14px;
  }

  .vspc-image-card__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .vspc-image-card__icon svg {
    width: 19px;
    height: 19px;
  }
}
/* =========================================================
   FEATURE GRID MODULE
========================================================= */

.vspc-feature-grid {
  margin: 72px 0;
}

.vspc-feature-grid__header {
  margin-bottom: 44px;
  max-width: none;
}

.vspc-feature-grid__subtitle {
  margin-top: 16px;
  max-width: 1100px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #5f5a55;
}

.vspc-feature-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.vspc-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 26px;
  background: var(--vspc-feature-card-bg, #fff);
  border: 1px solid rgba(0,0,0,.06);
  min-height: 100%;
  box-sizing: border-box;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}
.vspc-feature:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 34px rgba(0,0,0,.06);

  border-color:
    rgba(0,0,0,.08);
}
.vspc-feature__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vspc-feature-icon-bg, #17130f) !important;
  color: var(--vspc-feature-icon-color, #fff) !important;
  line-height: 1;
}

.vspc-feature__icon svg {
  width: 20px;
  height: 20px;
  fill: none !important;
  stroke: currentColor !important;
  color: inherit;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vspc-feature__content {
  min-width: 0;
  padding-top: 2px;
}

.vspc-feature__title {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111;
}

.vspc-feature__text {
  margin: 0;
  line-height: 1.65;
  color: #5f5a55;
}

.vspc-feature--icon-small .vspc-feature__icon {
  flex-basis: 38px;
  width: 38px;
  height: 38px;
}

.vspc-feature--icon-small .vspc-feature__icon svg {
  width: 16px;
  height: 16px;
}

.vspc-feature--icon-medium .vspc-feature__icon {
  flex-basis: 48px;
  width: 48px;
  height: 48px;
}

.vspc-feature--icon-medium .vspc-feature__icon svg {
  width: 20px;
  height: 20px;
}

.vspc-feature--icon-large .vspc-feature__icon {
  flex-basis: 62px;
  width: 62px;
  height: 62px;
}

.vspc-feature--icon-large .vspc-feature__icon svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .vspc-feature-grid__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vspc-feature-grid {
    margin: 54px 0;
  }

  .vspc-feature-grid__grid {
    gap: 22px;
  }

  .vspc-feature {
    padding: 22px;
  }

  .vspc-feature__title {
    font-size: 1.2rem;
  }

  .vspc-feature-grid__subtitle {
    font-size: 1rem;
  }
}
/* =========================================================
   CTA PREMIUM MODULE
========================================================= */

.vspc-cta {
  margin: 80px 0;
}

.vspc-cta__inner {
  padding: 48px;

  border-radius: 34px;

  position: relative;

  overflow: hidden;
}

.vspc-cta__inner {
  background: var(--vspc-cta-bg, #f6f3ee);

  color: var(--vspc-cta-text, #111);

  border: 1px solid rgba(0,0,0,.06);
}

.vspc-cta--dark .vspc-cta__inner {
  color: #fff;
}

.vspc-cta--accent .vspc-cta__inner {
  background: linear-gradient(
    135deg,
    #efe6da 0%,
    #f8f5f0 100%
  );
}

.vspc-cta__title {
  margin: 0 0 18px;

  font-size: clamp(2rem, 3vw, 3.4rem);

  line-height: .98;

  letter-spacing: -0.04em;
}

.vspc-cta__text {
  max-width: 1100px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.vspc-cta__text p {
  margin: 0;
}

.vspc-cta__actions {
  display: flex;

  align-items: center;

  gap: 14px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.vspc-cta .vspc-btn--primary {
  background: var(--vspc-cta-primary-bg, #111);

  color: var(--vspc-cta-primary-text, #fff);
}

.vspc-cta .vspc-btn--primary:hover {
  filter: brightness(.94);
}

.vspc-cta .vspc-btn--secondary {
  color: var(--vspc-cta-secondary-color, currentColor);

  border-color: var(--vspc-cta-secondary-color, currentColor);
}

.vspc-cta .vspc-btn--secondary:hover {
  background: color-mix(
    in srgb,
    var(--vspc-cta-secondary-hover-bg, #111) 12%,
    transparent
  );
}

@media (max-width: 768px) {

  .vspc-cta {
    margin: 60px 0;
  }

  .vspc-cta__inner {
    padding: 30px 24px;
  }

  .vspc-cta__actions {
    flex-direction: column;

    align-items: stretch;
  }

  .vspc-cta__actions .vspc-btn {
    width: 100%;
  }

  .vspc-cta__text {
    font-size: 1rem;
  }
}
/* =========================================================
   STATS GRID MODULE
========================================================= */

.vspc-stats-grid {
  margin: 76px 0;
}

.vspc-stats-grid__header {
  margin-bottom: 34px;
}

.vspc-stats-grid__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.vspc-stat {
  padding: 30px 28px;

  border-radius: 28px;

  background: var(--vspc-stat-card-bg, #f8f5f0);

  border: 1px solid rgba(0,0,0,.06);

  box-sizing: border-box;
}

.vspc-stat__value {
  margin-bottom: 14px;

  font-size: clamp(3rem, 5vw, 5.8rem);

  line-height: .88;

  letter-spacing: -0.06em;

  font-weight: 720;

  define('VSPC_VERSION', '0.6.71');
}

.vspc-stat__suffix {
  display: inline-block;

  margin-left: 4px;

  font-size: .46em;

  line-height: 1;

  vertical-align: super;

  letter-spacing: -0.02em;
}

.vspc-stat__label {
  margin: 0 0 10px;

  font-size: 1.25rem;

  line-height: 1.15;

  letter-spacing: -0.02em;

  color: #111;
}

.vspc-stat__subtext {
  color: #5f5a55;

  line-height: 1.6;
}

.vspc-stat__subtext p {
  margin: 0;
}

@media (max-width: 900px) {
  .vspc-stats-grid__grid {
    grid-template-columns: 1fr;
  }

  .vspc-stat {
    padding: 26px 24px;
  }
}
/* =========================================================
   TESTIMONIAL GRID MODULE
========================================================= */

.vspc-testimonial-grid {
  margin: 76px 0;
}

.vspc-testimonial-grid__header {
  margin-bottom: 34px;
}

.vspc-testimonial-grid__grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.vspc-testimonial {
  position: relative;

  padding: 34px 32px;

  border-radius: 30px;

  background: var(--vspc-testimonial-card-bg, #f8f5f0);

  color: var(--vspc-testimonial-text-color, #111);

  border: 1px solid rgba(0,0,0,.06);

  box-sizing: border-box;

  overflow: hidden;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.vspc-testimonial:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 34px rgba(0,0,0,.06);

  border-color: rgba(0,0,0,.08);
}

.vspc-testimonial__mark {
  position: absolute;

  top: 18px;
  right: 28px;

  font-size: 5.8rem;

  line-height: 1;

  font-family: Georgia, serif;

  color: var(--vspc-testimonial-quote-color, #c8a46a);

  opacity: .32;

  pointer-events: none;
}

.vspc-testimonial__quote {
  position: relative;

  margin: 0;

  max-width: 92%;

  font-size: clamp(1.25rem, 1.8vw, 1.7rem);

  line-height: 1.42;

  letter-spacing: -0.025em;

  color: inherit;
}

.vspc-testimonial__quote p {
  margin: 0;
}

.vspc-testimonial__footer {
  margin-top: 28px;

  display: flex;

  flex-direction: column;

  gap: 4px;
}

.vspc-testimonial__name {
  color: var(--vspc-testimonial-name-color, #111);

  font-size: 1rem;

  line-height: 1.2;
}

.vspc-testimonial__role {
  color: currentColor;

  opacity: .68;

  font-size: .94rem;

  line-height: 1.35;
}

@media (max-width: 900px) {
  .vspc-testimonial-grid__grid {
    grid-template-columns: 1fr;
  }

  .vspc-testimonial {
    padding: 28px 24px;
  }

  .vspc-testimonial__quote {
    max-width: 100%;
  }
}
.vspc-testimonial__layout {
  display: flex;
  align-items: center;
  gap: 34px;
}

.vspc-testimonial__avatar {
  flex: 0 0 180px;
}

.vspc-testimonial__avatar-image {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.vspc-testimonial__content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 900px) {

  .vspc-testimonial__layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .vspc-testimonial__avatar {
    flex-basis: auto;
  }

  .vspc-testimonial__avatar-image {
    width: 120px;
    height: 120px;
  }
}
/* =========================================================
   STEPS GRID MODULE
========================================================= */

.vspc-steps-grid {
  margin: 76px 0;
}

.vspc-steps-grid__header {
  margin-bottom: 34px;
}

.vspc-steps-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vspc-step {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: var(--vspc-step-card-bg, #f8f5f0);
  color: var(--vspc-step-text-color, #111);
  border: 1px solid rgba(0,0,0,.06);
  box-sizing: border-box;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.vspc-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.08);
}

.vspc-step__number {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vspc-step-circle-bg, #17130f);
  color: var(--vspc-step-number-color, #fff);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.vspc-step__head {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 26px;
}

.vspc-step__title {
  margin: 0;

  font-size: 1.35rem;

  line-height: 1.1;

  letter-spacing: -0.025em;

  color: inherit;
}

.vspc-step__text {
  line-height: 1.65;
  color: inherit;
  opacity: .74;
}

.vspc-step__text p {
  margin: 0;
}

@media (max-width: 980px) {
  .vspc-steps-grid__grid {
    grid-template-columns: 1fr;
  }

  .vspc-step {
    padding: 24px;
  }
}
/* =========================================================
   LOGO STRIP MODULE
========================================================= */

.vspc-logo-strip {
  margin: 76px 0;
  padding: 34px;
  border-radius: 32px;
  background: var(--vspc-logo-strip-bg, #fff);
  color: var(--vspc-logo-strip-text, #111);
  border: 1px solid rgba(0,0,0,.06);
  box-sizing: border-box;
}

.vspc-logo-strip__header {
  margin-bottom: 30px;
}

.vspc-logo-strip__subtitle {
  max-width: 1100px;
  margin-top: 14px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: inherit;
  opacity: .72;
}

.vspc-logo-strip__subtitle p {
  margin: 0;
}

.vspc-logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.vspc-logo-strip__item {
  min-height: 96px;
  padding: 20px;
  border-radius: 22px;
  background: var(--vspc-logo-strip-item-bg, #f8f5f0);
  border: 1px solid rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    opacity .22s ease;
}

.vspc-logo-strip__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.08);
}

.vspc-logo-strip__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.vspc-logo-strip__image {
  display: block;
  max-width: 100%;
  max-height: 95px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .vspc-logo-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vspc-logo-strip {
    margin: 60px 0;
    padding: 24px;
    border-radius: 26px;
  }

  .vspc-logo-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vspc-logo-strip__item {
    min-height: 86px;
    padding: 16px;
  }

  .vspc-logo-strip__image {
    max-height: 46px;
  }
}
/* =========================================================
   OVERRIDE PICCOLI FIX
========================================================= */

.vspc-hero--outside-top .vspc-hero__text,
.vspc-hero--outside-bottom .vspc-hero__text,
.vspc-hero--outside-top .vspc-hero__actions,
.vspc-hero--outside-bottom .vspc-hero__actions {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.vspc-section--text a {
  color: #8a5a2b;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.vspc-section--text a:hover {
  color: #111;
}
.vspc-image-duo + .vspc-image-duo,
.vspc-image-duo + .vspc-image-trio,
.vspc-image-duo + .vspc-image-quad,
.vspc-image-trio + .vspc-image-duo,
.vspc-image-trio + .vspc-image-trio,
.vspc-image-trio + .vspc-image-quad,
.vspc-image-quad + .vspc-image-duo,
.vspc-image-quad + .vspc-image-trio,
.vspc-image-quad + .vspc-image-quad {
  margin-top: 28px;
}
.vspc-step__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.vspc-step__number {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin-bottom: 0;
  line-height: 1;
	font-size: 1.7rem;

font-weight: 700;
}

.vspc-step__title {
  margin: 0;
  line-height: 1;
  transform: translateY(-1px);
}