:root {
  --v75-purple: #9D6CFF;
  --v75-deep: #230630;
  --v75-white: #FFFFFF;
  --v75-ink: #1d1222;
  --v75-muted: #6f6673;
  --v75-soft: #f7f3ff;
  --v75-border: rgba(35, 6, 48, 0.12);
  --v75-shadow: 0 24px 70px rgba(35, 6, 48, 0.14);
  --v75-radius-lg: 32px;
  --v75-radius-md: 22px;
  --v75-container: 1240px;
}

html {
  scroll-behavior: smooth;
}

body.v75-site {
  margin: 0;
  color: var(--v75-ink);
  background: var(--v75-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.v75-site,
body.v75-site button,
body.v75-site input,
body.v75-site textarea,
body.v75-site select {
  font-family: "Noto Sans", Arial, sans-serif;
}

body.v75-site h1,
body.v75-site h2,
body.v75-site h3,
body.v75-site h4,
body.v75-site h5,
body.v75-site h6 {
  color: var(--v75-deep);
  letter-spacing: -0.035em;
}

body.v75-site p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

body.v75-site a {
  color: inherit;
}

.v75-container {
  width: min(calc(100% - 40px), var(--v75-container));
  margin-inline: auto;
}

.v75-section {
  position: relative;
  padding: 110px 0;
}

.v75-section--soft {
  background: linear-gradient(180deg, #fbf9ff 0%, #f4edff 100%);
}

.v75-section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.v75-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.v75-section-heading--center p {
  text-align: center;
}

.v75-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--v75-purple);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v75-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.v75-section-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.15rem);
  line-height: 1.02;
}

.v75-section-copy {
  margin: 22px 0 0;
  color: var(--v75-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.v75-skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--v75-white);
  background: var(--v75-deep);
  transition: top 0.2s ease;
}

.v75-skip-link:focus {
  top: 16px;
}

/* Header */
.v75-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.v75-header.is-scrolled {
  padding: 10px 0;
  background: rgba(35, 6, 48, 0.94);
  box-shadow: 0 12px 35px rgba(15, 3, 22, 0.22);
  backdrop-filter: blur(16px);
}

.v75-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.v75-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 24px rgba(15,3,22,.12);
}

.v75-logo img {
  display: block;
  width: 152px;
  max-height: 62px;
  object-fit: contain;
}

.v75-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v75-menu a {
  position: relative;
  color: var(--v75-white);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.v75-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--v75-purple);
  transition: right 0.25s ease;
}

.v75-menu a:hover::after,
.v75-menu a:focus-visible::after {
  right: 0;
}

.v75-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.v75-btn:hover {
  transform: translateY(-2px);
}

.v75-btn--primary {
  color: var(--v75-white) !important;
  background: var(--v75-purple);
  box-shadow: 0 14px 30px rgba(157, 108, 255, 0.35);
}

.v75-btn--primary:hover {
  background: #aa7fff;
}

.v75-btn--ghost {
  color: var(--v75-white) !important;
  border-color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.v75-btn--ghost:hover {
  background: rgba(255,255,255,0.16);
}

.v75-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.v75-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--v75-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.v75-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.v75-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.v75-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.v75-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--v75-deep);
}

.v75-hero__background,
.v75-hero__overlay,
.v75-hero__tower {
  position: absolute;
  inset: 0;
}

.v75-hero__background {
  z-index: -4;
  background-image: url("https://vivevalanz75.com/wp-content/uploads/2026/07/Vanlanz75-Grupo-Arquero-Desarrollo-2026-1.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: v75-hero-bg 18s ease-in-out infinite alternate;
}

.v75-hero__overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(35, 6, 48, 0.94) 0%, rgba(35, 6, 48, 0.70) 34%, rgba(35, 6, 48, 0.20) 66%, rgba(35, 6, 48, 0.36) 100%),
    linear-gradient(180deg, rgba(15, 3, 22, 0.22) 0%, rgba(15, 3, 22, 0.05) 55%, rgba(15, 3, 22, 0.68) 100%);
}

.v75-hero__tower {
  z-index: -2;
  top: 7%;
  height: 93%;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.v75-hero__tower img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  filter: drop-shadow(0 30px 40px rgba(15, 3, 22, 0.22));
  transform: scale(1.085);
  animation: v75-tower-in 1.35s cubic-bezier(.2,.7,.2,1) both;
}

.v75-hero__content {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 150px 0 90px;
}

.v75-hero__copy {
  width: min(560px, 48%);
  color: var(--v75-white);
}

.v75-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #dfceff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v75-hero__kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--v75-purple);
}

.v75-hero h1 {
  max-width: 670px;
  margin: 0;
  color: var(--v75-white);
  font-size: clamp(3rem, 6.3vw, 6.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.v75-hero__lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.65vw, 1.23rem);
  line-height: 1.75;
}

.v75-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.v75-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.v75-hero__scroll::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--v75-purple), transparent);
  animation: v75-scroll-line 1.6s ease-in-out infinite;
}

@keyframes v75-hero-bg {
  from { transform: scale(1.03) translate3d(-0.5%, 0, 0); }
  to { transform: scale(1.08) translate3d(0.5%, -0.5%, 0); }
}

@keyframes v75-tower-in {
  from { opacity: 0; transform: translateY(7%) scale(1.03); }
  to { opacity: 1; transform: translateY(0) scale(1.085); }
}

@keyframes v75-scroll-line {
  0%, 100% { opacity: .35; transform: scaleY(.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Intro + facts */
.v75-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}

.v75-intro-copy p {
  margin: 0;
  color: var(--v75-muted);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.9;
}

.v75-intro-copy strong {
  color: var(--v75-deep);
}

.v75-facts--modern {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(157,108,255,.32);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 5%, rgba(157,108,255,.5), transparent 33%),
    linear-gradient(145deg, #230630 0%, #351044 62%, #4e2062 100%);
  box-shadow: 0 30px 85px rgba(35,6,48,.24);
}

.v75-facts--modern::before {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -125px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 84px rgba(255,255,255,.022);
  pointer-events: none;
}

.v75-fact--featured {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 220px;
  padding: 30px 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  color: var(--v75-white);
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  backdrop-filter: blur(12px);
}

.v75-fact__eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #dbcaff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.v75-fact--featured strong {
  display: block;
  color: var(--v75-white) !important;
  font-size: clamp(4.6rem, 8vw, 7rem);
  line-height: .78;
  letter-spacing: -.075em;
}

.v75-fact__label {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  font-weight: 800;
}

.v75-fact__building {
  display: grid;
  flex: 0 0 118px;
  width: 118px;
  height: 142px;
  place-items: center;
  color: rgba(255,255,255,.78);
  transform: translate(8px, 9px);
}

.v75-fact__building svg {
  width: 100%;
  height: 100%;
}

.v75-facts__mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v75-fact--mini {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 28px rgba(15,3,22,.13);
  transition: transform .25s ease, box-shadow .25s ease;
}

.v75-fact--mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15,3,22,.18);
}

.v75-fact__icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--v75-deep);
  background: linear-gradient(145deg, #eee5ff, #d9c8ff);
}

.v75-fact__icon svg {
  width: 23px;
  height: 23px;
}

.v75-fact--mini strong {
  display: block;
  color: var(--v75-deep) !important;
  font-size: 2rem;
  line-height: 1;
}

.v75-fact--mini span:not(.v75-fact__icon) {
  display: block;
  margin-top: 7px;
  color: var(--v75-muted);
  font-size: .82rem;
  font-weight: 800;
}

/* Benefits */
#v75-benefits-title {
  font-size: clamp(2rem, 3.35vw, 3.45rem);
}

.v75-title-accent {
  color: var(--v75-purple);
}

.v75-benefits-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 22px;
}

.v75-benefit-card {
  grid-column: span 5;
  position: relative;
  padding: 34px;
  border: 1px solid var(--v75-border);
  border-radius: var(--v75-radius-md);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 40px rgba(35, 6, 48, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.v75-benefit-card:nth-child(5) {
  grid-column: 3 / span 6;
}

.v75-benefit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(157,108,255,.5);
  box-shadow: 0 22px 55px rgba(35, 6, 48, 0.12);
}

.v75-benefit-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.v75-benefit-card__icon {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--v75-white);
  background: var(--v75-deep);
}

.v75-benefit-card__icon svg {
  width: 25px;
  height: 25px;
}

.v75-benefit-card__visual {
  display: grid;
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  padding: 5px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(157,108,255,.24);
  border-radius: 18px;
  background: linear-gradient(145deg, #f4efff, #e8dcff);
  box-shadow: 0 10px 24px rgba(35,6,48,.10);
}

.v75-benefit-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.v75-benefit-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.v75-benefit-card p {
  margin: 0;
  color: var(--v75-muted);
  line-height: 1.75;
}

/* Map */
.v75-map-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
}

.v75-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--v75-radius-lg);
  color: var(--v75-white);
  background: var(--v75-deep);
}

.v75-map-copy h2 {
  margin: 0 0 20px;
  color: var(--v75-white);
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1.05;
}

.v75-map-copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}

.v75-map-chip {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #eadfff;
  background: rgba(255,255,255,.08);
  font-size: .86rem;
  font-weight: 700;
}

.v75-map-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--v75-radius-lg);
  box-shadow: var(--v75-shadow);
  background: #ddd;
}

.v75-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(.92) sepia(.25) hue-rotate(224deg) saturate(1.65) contrast(.95);
}

.v75-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(157,108,255,.16), rgba(35,6,48,.08));
  mix-blend-mode: multiply;
}

/* Timeline */
.v75-timeline-shell {
  position: relative;
  margin-top: 70px;
}

.v75-timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--v75-purple) 8%, var(--v75-purple) 92%, transparent);
}

.v75-timeline {
  display: grid;
  grid-template-columns: repeat(9, minmax(140px, 1fr));
  gap: 18px;
  position: relative;
}

.v75-timeline-item {
  min-width: 0;
  text-align: center;
}

.v75-timeline-year {
  display: inline-grid;
  position: relative;
  z-index: 2;
  min-width: 86px;
  height: 44px;
  padding-inline: 16px;
  place-items: center;
  border: 2px solid var(--v75-purple);
  border-radius: 999px;
  color: var(--v75-deep);
  background: var(--v75-white);
  font-size: .86rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(35,6,48,.09);
}

.v75-timeline-card {
  display: grid;
  height: 150px;
  margin-top: 24px;
  padding: 22px 14px;
  place-items: center;
  border: 1px solid var(--v75-border);
  border-radius: 18px;
  background: var(--v75-white);
  box-shadow: 0 10px 34px rgba(35,6,48,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.v75-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(35,6,48,.12);
}

.v75-timeline-card img {
  width: 100%;
  max-width: 120px;
  max-height: 92px;
  object-fit: contain;
}

/* Pillars */
.v75-pillars {
  position: relative;
  overflow: hidden;
  color: var(--v75-white);
  background:
    linear-gradient(90deg, rgba(35,6,48,.94), rgba(35,6,48,.73)),
    url("https://vivevalanz75.com/wp-content/uploads/2026/07/Vanlanz75-Grupo-Arquero-El-Salvador.webp") center/cover no-repeat;
  background-attachment: fixed;
}

.v75-pillars .v75-section-title,
.v75-pillars h3 {
  color: var(--v75-white);
}

.v75-pillars .v75-section-copy {
  color: rgba(255,255,255,.76);
}

.v75-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.v75-pillar-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--v75-radius-md);
  background: rgba(255,255,255,.08);
  box-shadow: 0 22px 60px rgba(10,1,15,.25);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease;
}

.v75-pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.13);
}

.v75-pillar-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.v75-pillar-card__body {
  padding: 30px;
}

.v75-pillar-card__number {
  color: #d9c3ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.v75-pillar-card h3 {
  margin: 10px 0 14px;
  font-size: 1.75rem;
}

.v75-pillar-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}

/* Contact + footer */
.v75-contact {
  background: var(--v75-deep);
  color: var(--v75-white);
}

.v75-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.v75-contact h2,
.v75-contact h3 {
  color: var(--v75-white);
}

.v75-contact h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  line-height: 1.02;
}

.v75-contact__lead {
  margin: 24px 0 34px;
  color: rgba(255,255,255,.74);
  font-size: 1.08rem;
  line-height: 1.8;
}

.v75-contact-cards {
  display: grid;
  gap: 18px;
}

.v75-contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}

.v75-contact-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--v75-deep);
  background: var(--v75-purple);
}

.v75-contact-card__icon svg {
  width: 23px;
  height: 23px;
}

.v75-contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.v75-contact-card p,
.v75-contact-card a {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
  text-decoration: none;
}

.v75-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: var(--v75-deep);
  color: rgba(255,255,255,.62);
}

.v75-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v75-footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.v75-socials {
  display: flex;
  gap: 12px;
}

.v75-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}

.v75-socials a:hover {
  transform: translateY(-2px);
  background: var(--v75-purple);
}

.v75-socials svg {
  width: 18px;
  height: 18px;
}

.v75-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--v75-white) !important;
  background: #25D366;
  box-shadow: 0 14px 34px rgba(0,0,0,.23);
  transition: transform .2s ease;
}

.v75-whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.v75-whatsapp-float svg {
  width: 29px;
  height: 29px;
}

/* Reveal animation */
.v75-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

.v75-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v75-reveal[data-delay="1"] { transition-delay: .08s; }
.v75-reveal[data-delay="2"] { transition-delay: .16s; }
.v75-reveal[data-delay="3"] { transition-delay: .24s; }
.v75-reveal[data-delay="4"] { transition-delay: .32s; }
.v75-reveal[data-delay="5"] { transition-delay: .40s; }


/* Brand contrast and anchor behavior */
.v75-section,
.v75-hero {
  scroll-margin-top: 88px;
}

body.v75-site .v75-menu a {
  color: #ffffff !important;
}

body.v75-site .v75-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 5px 28px rgba(15,3,22,.32);
}

body.v75-site .v75-map-copy h2,
body.v75-site .v75-contact h2,
body.v75-site .v75-contact-card h3,
body.v75-site .v75-contact-card a {
  color: #ffffff !important;
}

body.v75-site .v75-pillars .v75-section-title,
body.v75-site .v75-pillars h3 {
  color: #ffffff !important;
}

@media (max-width: 1100px) {
  .v75-nav > .v75-btn { display: none; }
  .v75-menu { gap: 20px; }
  .v75-intro-grid { grid-template-columns: 1fr; }
  .v75-facts--modern { width: 100%; max-width: 760px; }
  .v75-map-layout { grid-template-columns: 1fr; }
  .v75-map-copy { min-height: 330px; }
  .v75-timeline-shell { overflow-x: auto; padding-bottom: 18px; scrollbar-width: thin; }
  .v75-timeline { min-width: 1340px; }
}

@media (max-width: 820px) {
  .v75-section { padding: 82px 0; }
  .v75-menu-toggle { display: block; }
  .v75-menu {
    position: fixed;
    inset: 82px 18px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: rgba(35,6,48,.98);
    box-shadow: 0 20px 50px rgba(15,3,22,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .v75-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .v75-menu li { width: 100%; }
  .v75-menu a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
  }
  .v75-menu a:hover { background: rgba(255,255,255,.08); }
  .v75-menu a::after { display: none; }
  .v75-logo img { width: 128px; }
  .v75-hero { min-height: 900px; }
  .v75-hero__content {
    align-items: flex-start;
    min-height: 900px;
    padding-top: 154px;
  }
  .v75-hero__copy {
    width: 100%;
    max-width: 620px;
  }
  .v75-hero__lead { max-width: 92%; }
  .v75-hero__tower {
    top: 38%;
    height: 62%;
  }
  .v75-hero__tower img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  .v75-hero__overlay {
    background:
      linear-gradient(180deg, rgba(35,6,48,.88) 0%, rgba(35,6,48,.62) 46%, rgba(35,6,48,.2) 70%, rgba(35,6,48,.65) 100%);
  }
  .v75-benefits-grid { grid-template-columns: 1fr; }
  .v75-benefit-card,
  .v75-benefit-card:nth-child(5) { grid-column: 1; }
  .v75-pillars-grid { grid-template-columns: 1fr; }
  .v75-pillars { background-attachment: scroll; }
  .v75-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .v75-container { width: min(calc(100% - 28px), var(--v75-container)); }
  .v75-header { padding: 12px 0; }
  .v75-header.is-scrolled { padding: 8px 0; }
  .v75-hero { min-height: 820px; }
  .v75-hero__content {
    min-height: 820px;
    padding: 130px 0 75px;
  }
  .v75-hero h1 { font-size: clamp(2.75rem, 14vw, 4.65rem); }
  .v75-hero__lead { max-width: 100%; font-size: 1rem; }
  .v75-hero__actions { gap: 10px; }
  .v75-btn { width: 100%; }
  .v75-hero__tower { top: 43%; height: 57%; }
  .v75-hero__tower img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
  .v75-hero__scroll { display: none; }
  .v75-facts--modern { padding: 14px; border-radius: 26px; }
  .v75-fact--featured { min-height: 190px; padding: 24px; }
  .v75-fact__building { flex-basis: 92px; width: 92px; height: 112px; }
  .v75-facts__mini-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v75-fact--mini { min-height: 102px; padding: 16px 13px; gap: 11px; }
  .v75-fact__icon { flex-basis: 40px; width: 40px; height: 40px; }
  .v75-fact--mini strong { font-size: 1.65rem; }
  .v75-fact--mini span:not(.v75-fact__icon) { font-size: .72rem; }
  .v75-benefit-card { padding: 26px; }
  .v75-map-copy { padding: 32px 26px; }
  .v75-map-frame,
  .v75-map-frame iframe { min-height: 420px; }
  .v75-pillar-card img { height: 210px; }
  .v75-footer-row { flex-direction: column; align-items: flex-start; }
  .v75-whatsapp-float { right: 16px; bottom: 16px; }
}

@media (max-width: 390px) {
  .v75-facts__mini-grid { grid-template-columns: 1fr; }
  .v75-fact--featured { min-height: 174px; }
  .v75-fact__building { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .v75-reveal { opacity: 1; transform: none; }
}


/* =========================================================
   VALANZ 75 · V3 refinements
   Space Grotesk headings, desktop layered hero and typography scale
   ========================================================= */
body.v75-site h1,
body.v75-site h2,
body.v75-site h3,
body.v75-site h4,
body.v75-site h5,
body.v75-site h6,
body.v75-site .v75-section-title {
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.04em;
}

.v75-section-title {
  font-size: clamp(1.95rem, 3.45vw, 3.35rem);
  line-height: 1.08;
}

.v75-hero h1 {
  font-size: clamp(2.8rem, 5.35vw, 5.65rem);
  line-height: .98;
}

#v75-benefits-title {
  font-size: clamp(1.85rem, 2.75vw, 2.85rem);
}

.v75-map-copy h2 {
  font-size: clamp(1.95rem, 3.1vw, 3.2rem);
}

.v75-benefit-card h3 {
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
}

.v75-pillar-card h3 {
  font-size: 1.55rem;
}

/* Requested: contact statement at approximately half its former size. */
.v75-contact h2 {
  max-width: 470px;
  font-size: clamp(1.55rem, 2.15vw, 2.2rem);
  line-height: 1.16;
}

.v75-fact__building {
  flex: 0 0 150px;
  width: 150px;
  height: 170px;
  transform: none;
}

.v75-fact__building-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 24px rgba(15, 3, 22, .28));
}

/* Desktop-only hero layers. Mobile intentionally retains the approved V2 treatment. */
@media (min-width: 821px) {
  .v75-hero__background {
    background-image: url("https://vivevalanz75.com/wp-content/uploads/2026/07/Vanlanz75-Grupo-Arquero-El-Salvador-1.webp");
    background-position: center center;
    background-size: cover;
  }

  .v75-hero__tower {
    inset: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .v75-hero__tower picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .v75-hero__tower img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.015);
  }

  .v75-hero__overlay {
    background:
      linear-gradient(90deg, rgba(35, 6, 48, .92) 0%, rgba(35, 6, 48, .69) 34%, rgba(35, 6, 48, .16) 68%, rgba(35, 6, 48, .25) 100%),
      linear-gradient(180deg, rgba(15, 3, 22, .18) 0%, rgba(15, 3, 22, .02) 52%, rgba(15, 3, 22, .50) 100%);
  }
}

@media (max-width: 820px) {
  .v75-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 4.15rem);
  }

  .v75-fact__building {
    flex-basis: 105px;
    width: 105px;
    height: 126px;
  }
}

@media (max-width: 560px) {
  .v75-section-title {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .v75-contact h2 {
    max-width: 330px;
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }
}

/* =========================================================
   VALANZ 75 · V4 refinements
   Desktop hero with more breathing room and centered artwork
   ========================================================= */
@media (min-width: 821px) {
  .v75-hero {
    min-height: clamp(820px, 100svh, 980px);
  }

  .v75-hero__background {
    background-position: center center;
    background-size: cover;
    transform: scale(1.015);
    animation: v75-hero-bg-v4 22s ease-in-out infinite alternate;
  }

  /* The artwork now behaves like a centered composition rather than
     an edge-to-edge cover image, allowing the background to breathe. */
  .v75-hero__tower {
    inset: 0;
    top: 0;
    display: grid;
    width: 100%;
    height: 100%;
    padding: clamp(118px, 12vh, 155px) clamp(54px, 6vw, 112px) clamp(58px, 7vh, 88px);
    place-items: center;
    overflow: visible;
  }

  .v75-hero__tower picture {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
  }

  .v75-hero__tower img {
    display: block;
    width: min(84vw, 1240px);
    height: auto;
    max-width: 100%;
    max-height: calc(100svh - 182px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 36px 46px rgba(15, 3, 22, .34));
    transform: none;
    animation: v75-centered-art-in 1.25s cubic-bezier(.2,.7,.2,1) both;
  }

  .v75-hero__overlay {
    background:
      linear-gradient(90deg, rgba(35, 6, 48, .88) 0%, rgba(35, 6, 48, .62) 27%, rgba(35, 6, 48, .16) 48%, rgba(35, 6, 48, .04) 70%, rgba(35, 6, 48, .12) 100%),
      linear-gradient(180deg, rgba(15, 3, 22, .18) 0%, rgba(15, 3, 22, .01) 50%, rgba(15, 3, 22, .38) 100%);
  }

  .v75-hero__content {
    position: relative;
    z-index: 2;
    align-items: center;
    min-height: clamp(820px, 100svh, 980px);
    padding-top: 158px;
    padding-bottom: 96px;
  }

  .v75-hero__copy {
    width: min(500px, 38vw);
  }

  .v75-hero h1 {
    font-size: clamp(2.8rem, 4.9vw, 5.25rem);
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  .v75-hero,
  .v75-hero__content {
    min-height: 820px;
  }

  .v75-hero__tower {
    padding-top: 112px;
    padding-bottom: 46px;
  }

  .v75-hero__tower img {
    max-height: 650px;
  }
}

@keyframes v75-centered-art-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.965);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes v75-hero-bg-v4 {
  from { transform: scale(1.015) translate3d(-.35%, 0, 0); }
  to { transform: scale(1.055) translate3d(.35%, -.35%, 0); }
}


/* =========================================================
   VALANZ 75 · V5 refinements
   Larger desktop hero artwork and compact location statement
   ========================================================= */

/* Match the location statement to the approved contact-title scale. */
#v75-location-title {
  max-width: 470px;
  font-size: clamp(1.55rem, 2.15vw, 2.2rem) !important;
  line-height: 1.16;
}

@media (min-width: 821px) {
  /* Increase the centered artwork while keeping the spacious composition. */
  .v75-hero__tower {
    padding-left: clamp(24px, 3vw, 56px);
    padding-right: clamp(24px, 3vw, 56px);
  }

  .v75-hero__tower img {
    width: min(94vw, 1480px);
    max-width: none;
    max-height: calc(100svh - 138px);
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  .v75-hero__tower img {
    max-height: 710px;
  }
}

@media (max-width: 560px) {
  #v75-location-title {
    max-width: 330px;
    font-size: clamp(1.45rem, 7vw, 1.9rem) !important;
  }
}


/* =========================================================
   VALANZ 75 · V6 refinements
   Even larger desktop hero artwork
   ========================================================= */
@media (min-width: 821px) {
  .v75-hero__tower {
    padding-top: clamp(92px, 9.5vh, 122px);
    padding-right: clamp(10px, 1.2vw, 24px);
    padding-bottom: clamp(18px, 3vh, 36px);
    padding-left: clamp(10px, 1.2vw, 24px);
  }

  .v75-hero__tower img {
    width: min(104vw, 1680px);
    max-width: none;
    max-height: calc(100svh - 72px);
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  .v75-hero__tower img {
    max-height: 760px;
  }
}


/* =========================================================
   VALANZ 75 · V7 refinements
   Fill more of the area behind the hero text
   ========================================================= */
@media (min-width: 821px) {
  .v75-hero__tower {
    padding-left: 0;
    padding-right: 0;
  }

  .v75-hero__tower img {
    width: min(118vw, 1860px);
    max-width: none;
    max-height: calc(100svh - 40px);
    animation: v75-centered-art-in-v7 1.25s cubic-bezier(.2,.7,.2,1) both;
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  .v75-hero__tower img {
    max-height: 800px;
  }
}

@keyframes v75-centered-art-in-v7 {
  from {
    opacity: 0;
    transform: translate3d(-7%, 28px, 0) scale(.965);
  }
  to {
    opacity: 1;
    transform: translate3d(-7%, 0, 0) scale(1);
  }
}


/* =========================================================
   VALANZ 75 · V8 refinements
   Full-width desktop hero artwork from left to right
   ========================================================= */
@media (min-width: 821px) {
  .v75-hero__tower {
    inset: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
  }

  .v75-hero__tower picture {
    width: 100%;
    height: 100%;
  }

  .v75-hero__tower img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center bottom;
    filter: drop-shadow(0 26px 36px rgba(15, 3, 22, .26));
    transform: scale(1.06);
    animation: v75-hero-fill-v8 1.25s cubic-bezier(.2,.7,.2,1) both;
  }
}

@keyframes v75-hero-fill-v8 {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1.06);
  }
}


/* =========================================================
   VALANZ 75 · V9 homepage restructuring
   Visual hero, editorial benefits and typologies
   ========================================================= */

/* Header stays legible over the visual-only hero. */
.v75-header {
  background: linear-gradient(180deg, rgba(35,6,48,.72), rgba(35,6,48,.16));
}

/* Full-width visual hero: background + complete tower layer. */
.v75-visual-hero {
  position: relative;
  min-height: clamp(610px, 78svh, 860px);
  overflow: hidden;
  isolation: isolate;
  background: var(--v75-deep);
}

.v75-visual-hero__background,
.v75-visual-hero__tower {
  position: absolute;
  inset: 0;
}

.v75-visual-hero__background {
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(35,6,48,.06), rgba(35,6,48,.20)),
    url("https://vivevalanz75.com/wp-content/uploads/2026/07/Vanlanz75-Grupo-Arquero-Desarrollo-2026-1.webp");
  background-position: center;
  background-size: cover;
  animation: v75-visual-bg 20s ease-in-out infinite alternate;
}

.v75-visual-hero__tower {
  z-index: -1;
  display: grid;
  place-items: end center;
  padding-top: 94px;
  pointer-events: none;
}

.v75-visual-hero__tower img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  filter: drop-shadow(0 32px 48px rgba(15,3,22,.30));
  animation: v75-visual-tower 1.25s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes v75-visual-bg {
  from { transform: scale(1.01) translateX(-.25%); }
  to { transform: scale(1.045) translateX(.25%); }
}

@keyframes v75-visual-tower {
  from { opacity: 0; transform: translateY(25px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Short continuous purple statement under the visual. */
.v75-hero-band {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 83% 20%, rgba(157,108,255,.72), transparent 32%),
    linear-gradient(104deg, #230630 0%, #3a104d 55%, #632682 100%);
}

.v75-hero-band::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255,255,255,.028), 0 0 0 120px rgba(255,255,255,.018);
}

.v75-hero-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 7vw, 90px);
}

.v75-hero-band__copy {
  max-width: 880px;
}

.v75-hero-band h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  font-weight: 400;
  line-height: 1.02;
}

.v75-hero-band p {
  max-width: 830px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.75;
}

.v75-btn--light {
  flex: 0 0 auto;
  color: var(--v75-deep) !important;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,3,22,.22);
}

.v75-btn--light:hover {
  color: #fff !important;
  background: var(--v75-purple);
}

/* Featured apartment count without the old building image. */
.v75-fact--featured {
  justify-content: center;
  text-align: center;
}

.v75-fact__featured-content {
  width: 100%;
}

.v75-fact__featured-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 48px);
}

.v75-fact__featured-row strong {
  display: inline-block;
}

.v75-fact__featured-row .v75-fact__label {
  max-width: 180px;
  margin: 0;
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid rgba(255,255,255,.30);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.15;
  text-align: left;
}

/* Open editorial benefits — no boxed cards. */
.v75-benefits-editorial .v75-section-heading {
  max-width: 690px;
}

.v75-benefits-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(38px, 6vw, 88px);
  row-gap: 70px;
}

.v75-benefit-story {
  display: grid;
  grid-template-columns: minmax(150px, .78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 3.5vw, 42px);
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(35,6,48,.16);
}

.v75-benefit-story figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 50% 50% 24px 24px;
  aspect-ratio: .86 / 1;
  background: linear-gradient(145deg, #e8dcff, #f8f4ff);
}

.v75-benefit-story figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(35,6,48,.12));
}

.v75-benefit-story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.v75-benefit-story:hover img {
  transform: scale(1.045);
}

.v75-benefit-story > div > span {
  display: block;
  margin-bottom: 13px;
  color: var(--v75-purple);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.v75-benefit-story h3 {
  margin: 0;
  color: var(--v75-deep);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.06;
  text-transform: uppercase;
}

.v75-benefit-story p {
  margin: 18px 0 0;
  color: var(--v75-muted);
  font-size: .98rem;
  line-height: 1.72;
}

/* Untinted Google map. */
.v75-map-frame iframe {
  filter: none !important;
}

.v75-map-frame::after {
  display: none !important;
}

/* Modern open typology presentation, without boxed cards. */
.v75-typologies {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(157,108,255,.18), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f6f0ff 100%);
}

.v75-typologies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
}

.v75-typology {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 clamp(24px, 3.4vw, 50px);
  color: inherit;
  text-decoration: none;
}

.v75-typology + .v75-typology::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(transparent, rgba(35,6,48,.18), transparent);
}

.v75-typology__visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.v75-typology__visual::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,108,255,.23), rgba(157,108,255,0) 67%);
  filter: blur(4px);
  transform: translateY(12%);
}

.v75-typology__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(35,6,48,.18));
  transition: transform .45s ease, filter .45s ease;
}

.v75-typology:hover .v75-typology__visual img {
  transform: translateY(-12px) scale(1.025);
  filter: drop-shadow(0 38px 44px rgba(35,6,48,.24));
}

.v75-typology__content {
  position: relative;
  z-index: 2;
  padding: 20px 0 0;
  text-align: center;
}

.v75-typology__content > span {
  display: inline-block;
  color: var(--v75-purple);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.v75-typology h3 {
  margin: 7px 0 10px;
  color: var(--v75-deep);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.v75-typology p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--v75-muted);
  line-height: 1.65;
  text-align: center !important;
}

.v75-typology em {
  display: inline-block;
  margin-top: 18px;
  color: var(--v75-deep);
  font-size: .8rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .v75-benefits-flow {
    grid-template-columns: 1fr;
  }
  .v75-benefit-story {
    grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  }
}

@media (max-width: 900px) {
  .v75-visual-hero {
    min-height: 620px;
  }
  .v75-visual-hero__tower {
    padding-top: 112px;
  }
  .v75-hero-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .v75-typologies-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .v75-typology + .v75-typology::before {
    top: -27px;
    left: 12%;
    right: 12%;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .v75-typology__visual {
    min-height: 310px;
  }
}

@media (max-width: 620px) {
  .v75-visual-hero {
    min-height: 510px;
  }
  .v75-visual-hero__tower {
    padding-top: 100px;
  }
  .v75-visual-hero__tower img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  .v75-hero-band {
    padding: 44px 0;
  }
  .v75-hero-band h1 {
    font-size: clamp(2rem, 10.5vw, 3.15rem);
  }
  .v75-hero-band .v75-btn {
    width: 100%;
  }
  .v75-fact__featured-row {
    gap: 20px;
  }
  .v75-fact__featured-row .v75-fact__label {
    padding-left: 20px;
    font-size: 1.05rem;
  }
  .v75-benefit-story {
    grid-template-columns: 1fr;
  }
  .v75-benefit-story figure {
    width: min(100%, 360px);
    aspect-ratio: 1.18 / 1;
  }
  .v75-benefit-story h3 {
    font-size: 1.65rem;
  }
  .v75-typology {
    padding-inline: 0;
  }
  .v75-typology__visual img {
    height: 285px;
  }
}


/* =========================================================
   VALANZ 75 · V10 refinements
   Hero visibility, white heading, aligned project figures, circular benefit images
   ========================================================= */
@media (min-width: 821px) {
  .v75-visual-hero {
    min-height: clamp(760px, 92svh, 980px);
  }

  .v75-visual-hero__background {
    background-position: center top;
    background-size: cover;
  }

  .v75-visual-hero__tower {
    padding-top: 120px;
    padding-inline: 0;
    align-items: end;
  }

  .v75-visual-hero__tower img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: scale(1.01);
  }
}

.v75-hero-band h1 {
  color: #ffffff !important;
}

.v75-hero-band p {
  color: rgba(255,255,255,.88) !important;
}

.v75-fact--featured strong {
  line-height: .88;
}

.v75-fact__featured-row {
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.v75-fact__featured-row .v75-fact__label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  max-width: none;
  min-height: 1.25em;
  white-space: nowrap;
  text-align: left;
}

.v75-benefit-story figure {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

@media (max-width: 620px) {
  .v75-benefit-story figure {
    width: min(100%, 280px);
    aspect-ratio: 1 / 1;
  }
}


/* =========================================================
   VALANZ 75 · V11 refinements
   Single full-width hero image, entirely visible and separate from purple band
   ========================================================= */
.v75-visual-hero.v75-visual-hero--single {
  min-height: 0 !important;
  height: auto !important;
  overflow: visible;
  background: #230630;
}

.v75-visual-hero--single .v75-visual-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.v75-visual-hero--single + .v75-hero-band {
  margin-top: 0;
}

@media (max-width: 820px) {
  .v75-visual-hero--single .v75-visual-hero__image {
    width: 100%;
    height: auto;
  }
}


/* =========================================================
   VALANZ 75 · V13 refinements
   Typology names, areas and modern light buttons
   ========================================================= */
.v75-typology__content {
  padding-top: 24px;
}

.v75-typology__title-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 18px);
}

.v75-typology__title-line h3 {
  margin: 0;
  color: #230630;
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  font-weight: 400;
  line-height: .92;
}

.v75-typology__title-line span {
  display: inline-block;
  color: #9D6CFF;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: none;
}

.v75-typology__content p {
  max-width: 320px;
  margin: 18px auto 0;
  color: #6f6675;
  font-size: clamp(1.03rem, 1.25vw, 1.18rem);
  line-height: 1.65;
  text-align: center !important;
}

.v75-typology__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 26px;
  padding: 13px 25px;
  border: 1px solid rgba(157,108,255,.34);
  border-radius: 999px;
  color: #230630;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(35,6,48,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .28s ease, color .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.v75-typology__button:hover,
.v75-typology__button:focus-visible {
  color: #ffffff;
  background: #9D6CFF;
  border-color: #9D6CFF;
  box-shadow: 0 18px 38px rgba(157,108,255,.28);
  transform: translateY(-3px);
}

@media (max-width: 620px) {
  .v75-typology__title-line {
    gap: 10px;
  }

  .v75-typology__title-line h3 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .v75-typology__title-line span {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .v75-typology__button {
    min-width: 200px;
  }
}


/* =========================================================
   VALANZ 75 · V14 refinements
   Transparent white header logo over the brand-purple menu
   ========================================================= */
.v75-header,
.v75-header.is-scrolled {
  background: #230630;
}

.v75-logo {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v75-logo img {
  width: clamp(150px, 12vw, 190px);
  max-height: 66px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .v75-logo img {
    width: 145px;
    max-height: 54px;
  }
}


/* =========================================================
   VALANZ 75 · V15 refinements
   Placeholder navigation, typology submenu and footer links
   ========================================================= */
.v75-menu > li {
  position: relative;
}

.v75-menu__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
}

.v75-menu__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--v75-purple);
  transition: right .25s ease;
}

.v75-menu__trigger:hover::after,
.v75-menu__trigger:focus-visible::after,
.v75-menu-item--has-submenu.is-submenu-open > .v75-menu__trigger::after {
  right: 0;
}

.v75-menu__trigger svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.v75-menu-item--has-submenu.is-submenu-open > .v75-menu__trigger svg,
.v75-menu-item--has-submenu:hover > .v75-menu__trigger svg,
.v75-menu-item--has-submenu:focus-within > .v75-menu__trigger svg {
  transform: rotate(180deg);
}

.v75-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 188px;
  gap: 4px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(35,6,48,.98);
  box-shadow: 0 22px 48px rgba(15,3,22,.28);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.v75-menu-item--has-submenu:hover > .v75-submenu,
.v75-menu-item--has-submenu:focus-within > .v75-submenu,
.v75-menu-item--has-submenu.is-submenu-open > .v75-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.v75-submenu a {
  display: block;
  padding: 11px 13px;
  border-radius: 11px;
  color: #ffffff !important;
  font-size: .83rem;
  letter-spacing: .08em;
}

.v75-submenu a::after {
  display: none;
}

.v75-submenu a:hover,
.v75-submenu a:focus-visible {
  background: rgba(157,108,255,.18);
}

.v75-footer__brand-link {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-decoration-color: rgba(157,108,255,.7) !important;
  text-underline-offset: 4px;
}

.v75-footer__brand-link:hover {
  color: var(--v75-purple) !important;
}

@media (max-width: 820px) {
  .v75-menu__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .v75-menu__trigger:hover,
  .v75-menu__trigger:focus-visible {
    background: rgba(255,255,255,.08);
  }

  .v75-menu__trigger::after {
    display: none;
  }

  .v75-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 5px 8px 8px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .v75-menu-item--has-submenu.is-submenu-open > .v75-submenu {
    display: grid;
  }

  .v75-submenu a {
    padding: 11px 14px;
    border-left: 2px solid rgba(157,108,255,.55);
    border-radius: 0 10px 10px 0;
    color: rgba(255,255,255,.84) !important;
  }
}


/* =========================================================
   VALANZ 75 · V17 refinements
   Full hero image on mobile and expanded Grupo Arquero timeline
   ========================================================= */
@media (max-width: 820px) {
  .v75-visual-hero.v75-visual-hero--single {
    padding-top: 78px;
  }

  .v75-visual-hero--single .v75-visual-hero__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 560px) {
  .v75-visual-hero.v75-visual-hero--single {
    padding-top: 72px;
  }
}


/* =========================================================
   VALANZ 75 · V19 homepage refinements
   Typography, figures, typologies, interactive benefits and legal footer
   ========================================================= */

/* Never insert automatic hyphens into visible text. */
.v75-site,
.v75-site * {
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: normal;
}

.v75-hero-band__copy {
  max-width: 980px;
}

.v75-hero-band p {
  max-width: 960px;
  text-wrap: pretty;
}

.v75-hero-band .v75-btn--light {
  min-width: 190px;
  min-height: 58px;
  padding: 17px 38px;
  margin-left: clamp(18px, 4vw, 64px);
  font-size: .96rem;
}

/* Soft project figures without icons. */
.v75-facts--modern {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(157,108,255,.24);
  border-radius: 34px;
  color: #230630;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.82), transparent 30%),
    linear-gradient(145deg, #e7d9ff 0%, #c9a9ff 48%, #a979f6 100%);
  box-shadow: 0 28px 70px rgba(35,6,48,.16);
}

.v75-facts--modern::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 30%;
  height: 75%;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  filter: blur(4px);
}

.v75-facts__eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  color: rgba(35,6,48,.68);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.v75-fact--featured {
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding: 0 0 28px;
  border: 0;
  border-bottom: 1px solid rgba(35,6,48,.17);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v75-fact__featured-row {
  gap: clamp(18px, 3vw, 40px);
}

.v75-fact--featured strong,
.v75-fact--mini strong {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 5%, rgba(255,255,255,.38) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255,255,255,.94);
  filter: drop-shadow(0 7px 12px rgba(35,6,48,.14));
}

.v75-fact--featured strong {
  font-size: clamp(5.4rem, 9vw, 8.2rem);
  line-height: .82;
}

.v75-fact__featured-row .v75-fact__label {
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 1px solid rgba(35,6,48,.22);
  color: #230630;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
}

.v75-facts__mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.v75-fact--mini {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 118px;
  padding: 10px 6px;
  border: 0;
  border-right: 1px solid rgba(35,6,48,.15);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.v75-fact--mini:last-child { border-right: 0; }

.v75-fact--mini strong {
  display: block;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: .88;
}

.v75-fact--mini span {
  color: rgba(35,6,48,.74);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}

/* Typologies. */
.v75-typologies .v75-section-heading {
  margin-bottom: 16px;
}

.v75-typology__visual img {
  height: 360px;
}

.v75-typology__button {
  color: #ffffff;
  border-color: #9D6CFF;
  background: #9D6CFF;
  box-shadow: 0 16px 36px rgba(157,108,255,.30);
}

.v75-typology__button:hover,
.v75-typology__button:focus-visible {
  color: #ffffff;
  border-color: #230630;
  background: #230630;
}

/* Interactive mouse controlled benefit rail. */
.v75-benefits-slider {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(157,108,255,.14), transparent 34%),
    linear-gradient(180deg, #f8f5ff 0%, #eef4ff 100%);
}

.v75-benefits-stage {
  --benefit-parallax-x: 0px;
  --benefit-parallax-y: 0px;
  width: min(100%, 1680px);
  margin: 46px auto 0;
  padding-inline: max(22px, calc((100vw - 1240px) / 2));
}

.v75-benefits-track {
  display: flex;
  gap: clamp(22px, 3vw, 42px);
  overflow-x: auto;
  padding: 22px max(8vw, 90px) 38px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.v75-benefits-track::-webkit-scrollbar { display: none; }
.v75-benefits-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.v75-benefit-slide {
  position: relative;
  flex: 0 0 clamp(360px, 34vw, 500px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(35,6,48,.12);
  border-radius: 34px;
  scroll-snap-align: center;
  background: #230630;
  box-shadow: 0 24px 68px rgba(35,6,48,.18);
  opacity: .42;
  transform: scale(.92);
  transition: opacity .42s ease, transform .42s ease, box-shadow .42s ease;
}

.v75-benefit-slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 34px 80px rgba(35,6,48,.28);
}

.v75-benefit-slide img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  transform: translate(var(--benefit-parallax-x), var(--benefit-parallax-y)) scale(1.03);
  transition: transform .18s ease-out, filter .42s ease;
  pointer-events: none;
}

.v75-benefit-slide:not(.is-active) img {
  filter: saturate(.55) blur(.8px);
}

.v75-benefit-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,6,48,.04) 16%, rgba(35,6,48,.24) 45%, rgba(10,2,18,.96) 100%);
}

.v75-benefit-slide__content {
  position: absolute;
  z-index: 2;
  left: clamp(26px, 3vw, 38px);
  right: clamp(26px, 3vw, 38px);
  bottom: 34px;
  color: #ffffff;
}

.v75-benefit-slide__content > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #d9c8ff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.v75-benefit-slide__content > span::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #9D6CFF;
}

.v75-benefit-slide h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.v75-benefit-slide p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.68;
  text-align: left;
}

.v75-benefit-slide > b {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  display: grid;
  width: 58px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(35,6,48,.42);
  backdrop-filter: blur(12px);
  font-size: .84rem;
  letter-spacing: .08em;
}

.v75-benefits-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(35,6,48,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 48px rgba(35,6,48,.09);
  backdrop-filter: blur(14px);
}

.v75-benefits-nav button {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 0;
  border-radius: 15px;
  color: #6c6178;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.v75-benefits-nav button:hover { transform: translateY(-2px); }
.v75-benefits-nav button.is-active {
  color: #230630;
  background: linear-gradient(135deg, rgba(157,108,255,.22), rgba(157,108,255,.08));
}
.v75-benefits-nav span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #6e3ff1;
  background: #efe8ff;
  font-size: .76rem;
  font-weight: 900;
}
.v75-benefits-nav button.is-active span {
  color: #ffffff;
  background: #9D6CFF;
  box-shadow: 0 8px 18px rgba(157,108,255,.32);
}
.v75-benefits-nav em {
  overflow: hidden;
  font-size: .78rem;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Location copy. */
.v75-map-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  line-height: 1.14;
}

/* Timeline reaches the first and final year and every logo is centered. */
.v75-timeline-line {
  left: calc(100% / 18);
  right: calc(100% / 18);
  top: 22px;
  background: linear-gradient(90deg, #9D6CFF 0%, #7b49e9 100%);
}
.v75-timeline-card {
  align-items: center;
  justify-items: center;
}
.v75-timeline-card img {
  display: block;
  margin: auto;
  object-position: center;
}

/* Contact and footer legal copy. */
.v75-footer-row {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.v75-footer-disclaimer {
  max-width: 1180px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 1040px) {
  .v75-facts__mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v75-fact--mini:nth-child(2) { border-right: 0; }
  .v75-fact--mini:nth-child(-n+2) { border-bottom: 1px solid rgba(35,6,48,.15); }
  .v75-benefits-nav em { display: none; }
  .v75-benefits-nav button { justify-content: center; }
}

@media (max-width: 820px) {
  .v75-hero-band .v75-btn--light {
    margin-left: 0;
  }
  .v75-benefits-stage { padding-inline: 18px; }
  .v75-benefits-track { padding-inline: 12vw; }
  .v75-benefit-slide { flex-basis: min(82vw, 460px); }
}

@media (max-width: 620px) {
  .v75-fact__featured-row { flex-direction: column; }
  .v75-fact__featured-row .v75-fact__label {
    padding: 14px 0 0;
    border-top: 1px solid rgba(35,6,48,.2);
    border-left: 0;
  }
  .v75-facts__mini-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .v75-fact--mini { min-height: 100px; }
  .v75-benefits-track { gap: 18px; padding-inline: 6vw; }
  .v75-benefit-slide { flex-basis: 88vw; min-height: 540px; }
  .v75-benefit-slide h3 { font-size: 2rem; }
  .v75-benefit-slide p { font-size: .9rem; line-height: 1.58; }
  .v75-benefits-nav { grid-template-columns: repeat(5, 1fr); gap: 3px; padding: 7px; }
  .v75-benefits-nav button { padding: 8px 4px; }
  .v75-benefits-nav span { width: 32px; height: 32px; flex-basis: 32px; }
  .v75-footer-disclaimer { font-size: .61rem; text-align: justify; }
}

@media (prefers-reduced-motion: reduce) {
  .v75-benefits-track { scroll-behavior: auto; }
  .v75-benefit-slide,
  .v75-benefit-slide img { transition: none; }
}


/* =========================================================
   VALANZ 75 · V20 refinements
   Modern white project figures, readable benefit slider and balanced timeline
   ========================================================= */

/* Project figures: modern glass treatment with fully white type. */
.v75-facts--modern {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 4%, rgba(255,255,255,.20), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(157,108,255,.32), transparent 36%),
    linear-gradient(145deg, #3b1550 0%, #603087 52%, #8754d7 100%);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 30px 78px rgba(35,6,48,.24);
}

.v75-facts--modern::before {
  background: rgba(255,255,255,.10);
}

.v75-facts__eyebrow {
  color: rgba(255,255,255,.76);
}

.v75-fact--featured {
  border-bottom-color: rgba(255,255,255,.24);
}

.v75-fact--featured strong,
.v75-fact--mini strong {
  color: #ffffff !important;
  background: linear-gradient(180deg, #ffffff 0%, #eadfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  filter: drop-shadow(0 9px 20px rgba(35,6,48,.22));
}

.v75-fact__featured-row .v75-fact__label {
  color: #ffffff;
  border-left-color: rgba(255,255,255,.34);
}

.v75-fact--mini {
  position: relative;
  min-height: 126px;
  padding: 16px 8px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.22);
  background: transparent;
  transition: transform .28s ease, background .28s ease;
}

.v75-fact--mini:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  box-shadow: none;
}

.v75-fact--mini strong {
  font-size: clamp(3.35rem, 5.4vw, 5.15rem);
  font-weight: 500;
  letter-spacing: -.055em;
}

.v75-fact--mini span,
.v75-fact--mini span:not(.v75-fact__icon) {
  margin-top: 5px;
  color: rgba(255,255,255,.92) !important;
  font-size: clamp(.78rem, 1vw, .9rem);
  font-weight: 700;
  letter-spacing: .045em;
}

/* Typology buttons must remain white in every interaction state. */
.v75-typology__button,
.v75-typology__button:link,
.v75-typology__button:visited,
.v75-typology__button:hover,
.v75-typology__button:focus-visible,
.v75-typology__button:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Benefit slider: stronger readability, smaller headings and cleaner focus. */
.v75-benefits-slider {
  background:
    radial-gradient(circle at 12% 4%, rgba(157,108,255,.18), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(35,6,48,.08), transparent 30%),
    linear-gradient(180deg, #faf8ff 0%, #edf3ff 100%);
}

.v75-benefits-stage {
  margin-top: 38px;
}

.v75-benefits-track {
  gap: clamp(24px, 3vw, 40px);
  padding-top: 26px;
  padding-bottom: 44px;
}

.v75-benefit-slide {
  flex-basis: clamp(350px, 31vw, 455px);
  min-height: 535px;
  border-color: rgba(255,255,255,.54);
  border-radius: 30px;
  opacity: .58;
  transform: scale(.94);
  box-shadow: 0 22px 58px rgba(35,6,48,.16);
}

.v75-benefit-slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 32px 78px rgba(35,6,48,.27);
}

.v75-benefit-slide:not(.is-active) img {
  filter: saturate(.72) brightness(.76) blur(.45px);
}

.v75-benefit-slide__shade {
  background:
    linear-gradient(180deg, rgba(35,6,48,.03) 0%, rgba(35,6,48,.13) 34%, rgba(13,3,22,.86) 70%, rgba(8,2,15,.98) 100%);
}

.v75-benefit-slide__content {
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: clamp(21px, 2.2vw, 30px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(35,6,48,.88), rgba(17,4,28,.78));
  box-shadow: 0 18px 44px rgba(6,1,12,.28);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.v75-benefit-slide__content > span {
  margin-bottom: 10px;
  color: #dcccff;
  font-size: .7rem;
}

.v75-benefit-slide h3 {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.v75-benefit-slide p {
  margin-top: 13px;
  color: rgba(255,255,255,.90);
  font-size: clamp(.88rem, .95vw, .98rem);
  line-height: 1.55;
  text-align: left;
}

.v75-benefit-slide > b {
  top: 18px;
  right: 18px;
  width: 54px;
  height: 38px;
  background: rgba(35,6,48,.68);
}

.v75-benefits-nav {
  max-width: 1080px;
  border-color: rgba(157,108,255,.16);
  background: rgba(255,255,255,.90);
}

/* Timeline: exact line from the first year center to the 2026 center. */
.v75-timeline-shell {
  width: 100%;
}

.v75-timeline-line {
  display: none;
}

.v75-timeline {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: start;
  width: 100%;
}

.v75-timeline::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 21px;
  left: calc((100% - 144px) / 18);
  right: calc((100% - 144px) / 18);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9D6CFF 0%, #7b49e9 65%, #230630 100%);
  box-shadow: 0 4px 14px rgba(157,108,255,.22);
}

.v75-timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.v75-timeline-card {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
}

.v75-timeline-card img {
  display: block;
  width: auto;
  max-width: min(100%, 112px);
  height: auto;
  max-height: 88px;
  margin: auto;
  object-fit: contain;
  object-position: 50% 50%;
}

@media (max-width: 1085px) {
  .v75-timeline {
    width: 1340px;
    min-width: 1340px;
  }
  .v75-timeline::before {
    left: calc((100% - 144px) / 18);
    right: calc((100% - 144px) / 18);
  }
}

@media (max-width: 620px) {
  .v75-fact__featured-row .v75-fact__label {
    border-top-color: rgba(255,255,255,.30);
  }
  .v75-fact--mini:nth-child(-n+2) {
    border-bottom-color: rgba(255,255,255,.20);
  }
  .v75-benefit-slide {
    min-height: 560px;
  }
  .v75-benefit-slide__content {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
  .v75-benefit-slide h3 {
    font-size: clamp(1.45rem, 7.3vw, 1.9rem);
  }
  .v75-benefit-slide p {
    font-size: .86rem;
    line-height: 1.5;
  }
}


/* =========================================================
   VALANZ 75 · V21 benefit slider centering fix
   Keeps the active card fully visible at both ends of the rail.
   ========================================================= */
.v75-benefits-stage {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  overflow: hidden;
}

.v75-benefits-track {
  width: 100%;
  padding-left: var(--benefit-edge, 24px);
  padding-right: var(--benefit-edge, 24px);
  scroll-padding-left: var(--benefit-edge, 24px);
  scroll-padding-right: var(--benefit-edge, 24px);
}

.v75-benefits-nav {
  width: min(calc(100% - 48px), 1080px);
}

@media (max-width: 820px) {
  .v75-benefits-stage {
    padding-inline: 0;
  }
  .v75-benefits-track {
    padding-left: var(--benefit-edge, 18px);
    padding-right: var(--benefit-edge, 18px);
  }
}

@media (max-width: 620px) {
  .v75-benefit-slide {
    flex-basis: min(86vw, 390px);
  }
  .v75-benefits-nav {
    width: calc(100% - 24px);
  }
}


/* =========================================================
   VALANZ 75 · V22 benefit slider autoplay + title readability
   ========================================================= */
.v75-benefit-slide__content h3,
.v75-benefit-slide__content h3 a {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.v75-benefit-slide:not(.is-active) .v75-benefit-slide__content h3,
.v75-benefit-slide:not(.is-active) .v75-benefit-slide__content h3 a {
  color: rgba(255,255,255,.92) !important;
  -webkit-text-fill-color: rgba(255,255,255,.92) !important;
}

.v75-benefits-track {
  scroll-behavior: smooth;
}


/* =========================================================
   VALANZ 75 · V23 visible slider controls and reliable dragging
   ========================================================= */
.v75-benefits-controls {
  display: flex;
  width: min(calc(100% - 48px), 1080px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 14px;
}

.v75-benefits-controls p {
  margin: 0;
  color: #6c6178;
  font-size: .88rem;
  line-height: 1.5;
}

.v75-benefits-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.v75-benefits-arrows button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(157,108,255,.30);
  border-radius: 50%;
  color: #ffffff;
  background: #9D6CFF;
  box-shadow: 0 12px 28px rgba(157,108,255,.25);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.v75-benefits-arrows button:hover,
.v75-benefits-arrows button:focus-visible {
  background: #230630;
  box-shadow: 0 14px 32px rgba(35,6,48,.25);
  transform: translateY(-2px);
}

.v75-benefits-track {
  cursor: grab;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.v75-benefits-track.is-dragging {
  cursor: grabbing;
}

@media (max-width: 620px) {
  .v75-benefits-controls {
    width: calc(100% - 24px);
    align-items: flex-start;
  }

  .v75-benefits-controls p {
    max-width: 220px;
    font-size: .8rem;
  }

  .v75-benefits-arrows button {
    width: 42px;
    height: 42px;
  }
}


/* =========================================================
   VALANZ 75 · V24 layout refinements
   Project count, side slider controls, typology scale and location typography
   ========================================================= */

/* Keep the featured apartment count readable at every width. */
.v75-fact__featured-row {
  display: grid;
  grid-template-columns: minmax(0, auto) 1px minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: clamp(18px, 2.4vw, 32px);
}

.v75-fact__featured-row::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: clamp(44px, 5vw, 66px);
  background: rgba(255,255,255,.34);
}

.v75-fact__featured-row strong {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  font-size: clamp(4.8rem, 7.8vw, 7rem);
  white-space: nowrap;
}

.v75-fact__featured-row .v75-fact__label {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
  max-width: none;
  padding: 0;
  border: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  line-height: 1.1;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

/* Slightly smaller typology names and areas. */
.v75-typology__title-line h3 {
  font-size: clamp(2.35rem, 3.45vw, 3.8rem);
}

.v75-typology__title-line span {
  font-size: clamp(1.7rem, 2.45vw, 2.75rem);
}

/* Benefit rail with elegant arrows beside the cards. */
.v75-benefits-stage {
  position: relative;
  padding-inline: clamp(58px, 6vw, 92px);
  overflow: hidden;
}

.v75-benefits-track {
  padding-bottom: 54px;
}

.v75-benefits-controls,
.v75-benefits-nav {
  display: none !important;
}

.v75-benefits-side-arrow {
  position: absolute;
  z-index: 12;
  top: 50%;
  display: grid;
  width: clamp(48px, 4vw, 62px);
  height: clamp(48px, 4vw, 62px);
  place-items: center;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, #9D6CFF, #7440d5);
  box-shadow: 0 18px 42px rgba(35,6,48,.24);
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.v75-benefits-side-arrow:hover,
.v75-benefits-side-arrow:focus-visible {
  background: linear-gradient(145deg, #ae83ff, #8752e8);
  box-shadow: 0 24px 52px rgba(35,6,48,.32);
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.v75-benefits-side-arrow--prev { left: clamp(12px, 2.1vw, 34px); }
.v75-benefits-side-arrow--next { right: clamp(12px, 2.1vw, 34px); }

/* Location copy uses normal body scale. */
.v75-map-copy h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem) !important;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0;
  text-wrap: pretty;
}

.v75-map-copy p {
  margin-top: 18px;
  font-size: clamp(.96rem, 1.1vw, 1.05rem) !important;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 820px) {
  .v75-benefits-stage {
    padding-inline: 52px;
  }
  .v75-benefits-side-arrow {
    width: 46px;
    height: 46px;
  }
  .v75-benefits-side-arrow--prev { left: 6px; }
  .v75-benefits-side-arrow--next { right: 6px; }
}

@media (max-width: 620px) {
  .v75-fact__featured-row {
    grid-template-columns: minmax(0, auto) 1px minmax(0, 1fr);
    gap: 14px;
  }
  .v75-fact__featured-row strong {
    font-size: clamp(4rem, 20vw, 5.6rem);
  }
  .v75-fact__featured-row .v75-fact__label {
    font-size: clamp(.9rem, 4.2vw, 1.05rem);
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }
  .v75-benefits-stage {
    padding-inline: 42px;
  }
  .v75-benefits-side-arrow {
    top: 47%;
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
  .v75-benefits-side-arrow--prev { left: 3px; }
  .v75-benefits-side-arrow--next { right: 3px; }
  .v75-typology__title-line h3 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .v75-typology__title-line span {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }
}


/* =========================================================
   VALANZ 75 · V25 refinements
   Smaller typology labels and body-font location copy
   ========================================================= */
.v75-typology__title-line h3 {
  font-size: clamp(1.95rem, 2.7vw, 3rem) !important;
  line-height: 1 !important;
}

.v75-typology__title-line span {
  font-size: clamp(1.25rem, 1.75vw, 1.95rem) !important;
  line-height: 1.05 !important;
}

.v75-map-copy h2,
.v75-map-copy p {
  font-family: "Noto Sans", Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.v75-map-copy h2 {
  font-size: clamp(1rem, 1.15vw, 1.08rem) !important;
  font-weight: 700 !important;
  line-height: 1.72 !important;
}

.v75-map-copy p {
  font-size: clamp(1rem, 1.15vw, 1.08rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}


/* =========================================================
   VALANZ 75 · V26 location text refinement
   Body-sized copy with a bold lead paragraph and no oversized heading.
   ========================================================= */
.v75-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.v75-site #ubicacion .v75-map-copy .v75-location-lead,
body.v75-site #ubicacion .v75-map-copy .v75-location-body {
  margin: 0;
  color: #ffffff !important;
  font-family: "Noto Sans", Arial, sans-serif !important;
  font-size: clamp(.98rem, 1.05vw, 1.08rem) !important;
  line-height: 1.72 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-wrap: pretty;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

body.v75-site #ubicacion .v75-map-copy .v75-location-lead {
  font-weight: 700 !important;
}

body.v75-site #ubicacion .v75-map-copy .v75-location-body {
  margin-top: 18px;
  color: rgba(255,255,255,.84) !important;
  font-weight: 400 !important;
}

body.v75-site #ubicacion .v75-map-copy .v75-location-lead strong {
  color: inherit;
  font: inherit;
  font-weight: 700 !important;
}


/* =========================================================
   VALANZ 75 · V27 refinements
   Fix project figures crop, benefit title update and intro background
   ========================================================= */

#proyecto {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.86) 38%, rgba(255,255,255,.95) 100%),
    url("https://vivevalanz75.com/wp-content/uploads/2026/07/Fondo-valanz-blanco-grupo-arquero.jpg") center/cover no-repeat;
}

#proyecto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.70) 0%, rgba(255,255,255,.34) 30%, rgba(255,255,255,.78) 100%);
  pointer-events: none;
}

#proyecto .v75-container {
  position: relative;
  z-index: 1;
}

#proyecto .v75-intro-grid {
  align-items: center;
}

.v75-facts--modern {
  padding: clamp(34px, 4vw, 52px) clamp(34px, 4vw, 54px) clamp(36px, 4vw, 44px);
}

.v75-fact__featured-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.v75-fact__featured-row strong {
  width: 100%;
  padding-left: 10px;
  text-align: right;
  font-size: clamp(4.8rem, 7vw, 7rem);
  line-height: .88;
  letter-spacing: -.05em;
}

.v75-fact__featured-row .v75-fact__label {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(18px, 2.3vw, 30px);
  font-size: clamp(1.12rem, 1.8vw, 1.58rem);
  line-height: 1.16;
}

.v75-facts__mini-grid {
  gap: 0;
  margin-top: 22px;
}

.v75-fact--mini {
  min-height: 124px;
  padding: 18px 10px 16px;
}

.v75-fact--mini strong {
  width: 100%;
  text-align: center;
  font-size: clamp(3rem, 4.4vw, 4.55rem);
  line-height: .92;
  letter-spacing: -.035em;
}

.v75-fact--mini span,
.v75-fact--mini span:not(.v75-fact__icon) {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .v75-fact__featured-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v75-fact__featured-row strong {
    padding-left: 0;
    text-align: center;
  }

  .v75-fact__featured-row .v75-fact__label {
    padding-left: 0;
    padding-top: 14px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.24);
    text-align: center;
  }
}

@media (max-width: 620px) {
  .v75-facts--modern {
    padding-inline: 24px;
  }

  .v75-fact__featured-row strong {
    font-size: clamp(4rem, 20vw, 5.8rem);
  }

  .v75-facts__mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v75-fact--mini {
    min-height: 108px;
    padding: 16px 10px 14px;
  }

  .v75-fact--mini strong {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}


/* =========================================================
   VALANZ 75 · V28 corrections
   Full 153 visibility and clearly visible project background
   ========================================================= */

#proyecto {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.54) 50%, rgba(255,255,255,.68) 100%),
    url("https://vivevalanz75.com/wp-content/uploads/2026/07/Fondo-valanz-blanco-grupo-arquero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#proyecto::before {
  display: none !important;
}

#proyecto .v75-container {
  position: relative;
  z-index: 1;
}

.v75-facts--modern {
  padding: clamp(34px, 4vw, 50px) clamp(28px, 3.4vw, 46px) clamp(34px, 3.6vw, 44px);
}

.v75-fact__featured-row {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 30px);
  width: 100%;
}

.v75-fact__featured-row strong {
  display: block;
  flex: 0 0 auto;
  width: auto;
  min-width: 180px;
  padding: 0;
  overflow: visible;
  font-size: clamp(4.5rem, 6.2vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.055em;
  text-align: center;
  white-space: nowrap;
}

.v75-fact__featured-row .v75-fact__label {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 78px;
  align-items: center;
  max-width: none;
  margin: 0;
  padding-left: clamp(18px, 2.1vw, 28px);
  color: #ffffff;
  border-left: 1px solid rgba(255,255,255,.32);
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  line-height: 1.16;
  white-space: normal;
}

.v75-fact--mini strong {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 1120px) and (min-width: 901px) {
  .v75-fact__featured-row strong {
    min-width: 160px;
    font-size: 4.7rem;
  }

  .v75-fact__featured-row .v75-fact__label {
    font-size: 1.08rem;
  }
}

@media (max-width: 900px) {
  .v75-fact__featured-row {
    flex-direction: column;
    gap: 16px;
  }

  .v75-fact__featured-row strong {
    min-width: 0;
    width: 100%;
    font-size: clamp(4.4rem, 16vw, 6rem);
    text-align: center;
  }

  .v75-fact__featured-row .v75-fact__label {
    justify-content: center;
    min-height: 0;
    width: 100%;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,.28);
    border-left: 0;
    text-align: center;
  }
}

@media (max-width: 620px) {
  #proyecto {
    background-position: 48% center;
  }

  .v75-facts--modern {
    padding-inline: 22px;
  }
}


/* =========================================================
   VALANZ 75 · V29 project background visibility
   Uses the requested WebP with a consistent 20% white overlay.
   ========================================================= */
#proyecto {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.20)),
    url("https://vivevalanz75.com/wp-content/uploads/2026/07/Fondo-valanz-blanco-grupo-arquero.webp") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

#proyecto::before {
  display: none !important;
}


/* =========================================================
   VALANZ 75 · V31 navigation, map marker and location copy
   ========================================================= */
.v75-hero-band__copy {
  max-width: 1040px;
}

body.v75-site #ubicacion .v75-map-copy .v75-location-lead,
body.v75-site #ubicacion .v75-map-copy .v75-location-body {
  text-align: justify !important;
  text-align-last: left !important;
}

.v75-map-logo {
  position: absolute;
  z-index: 4;
  top: 43%;
  left: 49%;
  width: clamp(82px, 8vw, 112px);
  height: auto;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(35,6,48,.24);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (max-width: 820px) {
  .v75-map-logo {
    top: 45%;
    left: 50%;
    width: 82px;
    padding: 8px;
    border-radius: 15px;
  }
}

@media (max-width: 620px) {
  body.v75-site #ubicacion .v75-map-copy .v75-location-lead,
  body.v75-site #ubicacion .v75-map-copy .v75-location-body {
    text-align: left !important;
  }

  .v75-map-logo {
    width: 72px;
  }
}


/* =========================================================
   VALANZ 75 · V32 Grupo Arquero backing signature
   ========================================================= */
.v75-backing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  margin-bottom: 58px;
}

.v75-backing-heading__copy {
  max-width: 780px;
}

.v75-backing-heading__copy .v75-section-copy {
  max-width: 720px;
  margin-bottom: 0;
}

.v75-backing-heading__brand {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 238px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px 30px 28px;
  border: 1px solid rgba(157,108,255,.22);
  border-radius: 32px;
  color: #230630;
  background:
    radial-gradient(circle at 100% 0%, rgba(157,108,255,.20), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,241,255,.90));
  box-shadow: 0 24px 60px rgba(35,6,48,.13);
  text-align: center;
  text-decoration: none;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.v75-backing-heading__brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 170px;
  height: 170px;
  right: -64px;
  bottom: -78px;
  border: 1px solid rgba(157,108,255,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(157,108,255,.07), 0 0 0 64px rgba(157,108,255,.04);
}

.v75-backing-heading__brand:hover,
.v75-backing-heading__brand:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(157,108,255,.48);
  box-shadow: 0 34px 74px rgba(35,6,48,.19);
}

.v75-backing-heading__brand-label {
  margin-bottom: 20px;
  color: #7b6485;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.v75-backing-heading__brand img {
  display: block;
  width: min(100%, 260px);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  transition: transform .4s ease;
}

.v75-backing-heading__brand:hover img,
.v75-backing-heading__brand:focus-visible img {
  transform: scale(1.035);
}

.v75-backing-heading__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #6e3ff1;
  font-size: .78rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .v75-backing-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .v75-backing-heading__copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .v75-backing-heading__copy .v75-section-copy {
    margin-inline: auto;
    text-align: center;
  }

  .v75-backing-heading__brand {
    width: min(100%, 560px);
    min-height: 210px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .v75-backing-heading {
    margin-bottom: 44px;
  }

  .v75-backing-heading__brand {
    min-height: 190px;
    padding: 28px 22px 24px;
    border-radius: 26px;
  }

  .v75-backing-heading__brand img {
    width: min(100%, 220px);
  }
}


/* =========================================================
   VALANZ 75 · V33 simple Grupo Arquero logo at the left
   ========================================================= */
.v75-backing-heading {
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1.58fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.v75-backing-heading__brand {
  display: grid;
  width: min(100%, 260px);
  min-height: 196px;
  place-items: center;
  padding: 30px;
  justify-self: start;
  overflow: hidden;
  border: 1px solid rgba(35,6,48,.10);
  border-radius: 26px;
  color: inherit;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 50px rgba(35,6,48,.10);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.v75-backing-heading__brand::before,
.v75-backing-heading__brand-label,
.v75-backing-heading__brand-link {
  display: none !important;
}

.v75-backing-heading__brand img {
  display: block;
  width: min(100%, 190px);
  height: auto;
  max-height: 116px;
  object-fit: contain;
  transition: transform .3s ease;
}

.v75-backing-heading__brand:hover,
.v75-backing-heading__brand:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(157,108,255,.34);
  box-shadow: 0 28px 62px rgba(35,6,48,.15);
}

.v75-backing-heading__brand:hover img,
.v75-backing-heading__brand:focus-visible img {
  transform: scale(1.025);
}

.v75-backing-heading__copy {
  max-width: 860px;
}

@media (max-width: 900px) {
  .v75-backing-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v75-backing-heading__brand {
    width: min(100%, 250px);
    min-height: 180px;
    justify-self: center;
    order: 1;
  }

  .v75-backing-heading__copy {
    order: 2;
  }
}

@media (max-width: 560px) {
  .v75-backing-heading__brand {
    width: min(100%, 220px);
    min-height: 160px;
    padding: 24px;
    border-radius: 22px;
  }

  .v75-backing-heading__brand img {
    width: min(100%, 170px);
  }
}


/* =========================================================
   VALANZ 75 · V34 centered Grupo Arquero logo
   ========================================================= */
#trayectoria .v75-backing-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 26px !important;
  margin-bottom: 58px;
  text-align: center !important;
}

#trayectoria .v75-backing-heading__brand {
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

#trayectoria .v75-backing-heading__brand::before {
  display: none !important;
}

#trayectoria .v75-backing-heading__brand img {
  display: block !important;
  width: clamp(180px, 16vw, 235px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform: none !important;
}

#trayectoria .v75-backing-heading__brand:hover,
#trayectoria .v75-backing-heading__brand:focus-visible,
#trayectoria .v75-backing-heading__brand:hover img,
#trayectoria .v75-backing-heading__brand:focus-visible img {
  transform: none !important;
  box-shadow: none !important;
}

#trayectoria .v75-backing-heading__copy {
  width: 100%;
  max-width: 980px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

#trayectoria .v75-backing-heading__copy .v75-eyebrow {
  justify-content: center;
}

#trayectoria .v75-backing-heading__copy .v75-section-copy {
  max-width: 900px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

@media (max-width: 560px) {
  #trayectoria .v75-backing-heading {
    gap: 22px !important;
    margin-bottom: 44px;
  }

  #trayectoria .v75-backing-heading__brand img {
    width: min(100%, 190px) !important;
  }
}


/* =========================================================
   VALANZ 75 · V35 timeline spacing
   More breathing room between Grupo Arquero project logos
   ========================================================= */
#trayectoria .v75-timeline {
  gap: clamp(12px, 1.45vw, 22px);
}

#trayectoria .v75-timeline-item {
  padding-inline: clamp(7px, .7vw, 11px);
}

#trayectoria .v75-timeline-card {
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  border-radius: 20px;
}

@media (max-width: 1085px) {
  #trayectoria .v75-timeline {
    gap: 16px;
  }

  #trayectoria .v75-timeline-item {
    padding-inline: 8px;
  }
}


/* =========================================================
   VALANZ 75 · V36 Tour Virtual 360 modal
   ========================================================= */
.v75-hero-band__tour {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v75-tour-launch {
  position: relative;
  isolation: isolate;
  min-width: 176px;
  min-height: 58px;
  padding: 16px 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  color: #6f35c8;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18,3,27,.24);
  font: 700 .98rem/1 "Noto Sans", sans-serif;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, color .3s ease;
}

.v75-tour-launch::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0 70%,
    rgba(255,255,255,0) 74%,
    #d8bdff 80%,
    #ffffff 84%,
    #9d6cff 89%,
    transparent 94% 100%
  );
  opacity: 0;
  animation: v75-tour-stroke 6s cubic-bezier(.2,.7,.2,1) infinite;
}

.v75-tour-launch::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: inherit;
  background: #fff;
}

.v75-tour-launch:hover,
.v75-tour-launch:focus-visible {
  transform: translateY(-3px);
  color: #51208f;
  box-shadow: 0 24px 55px rgba(18,3,27,.30), 0 0 0 5px rgba(255,255,255,.10);
}

@keyframes v75-tour-stroke {
  0%, 72% {
    opacity: 0;
    transform: rotate(0deg);
  }
  76% {
    opacity: 1;
  }
  94% {
    opacity: 1;
    transform: rotate(360deg);
  }
  100% {
    opacity: 0;
    transform: rotate(380deg);
  }
}

.v75-tour-modal[hidden] {
  display: none !important;
}

.v75-tour-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 30px);
}

.v75-tour-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18,3,27,.78);
  backdrop-filter: blur(14px);
  cursor: default;
}

.v75-tour-modal__window {
  position: relative;
  z-index: 1;
  width: min(1480px, 96vw);
  height: min(880px, 92vh);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 28px;
  background: #16031f;
  box-shadow: 0 45px 120px rgba(0,0,0,.48);
  animation: v75-tour-window-in .42s cubic-bezier(.2,.75,.2,1) both;
}

.v75-tour-modal__header {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px 14px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 0%, rgba(157,108,255,.34), transparent 34%),
    linear-gradient(105deg, #230630 0%, #3b0d50 100%);
}

.v75-tour-modal__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.v75-tour-modal__brand img {
  width: 88px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.v75-tour-modal__brand span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.v75-tour-modal__brand h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1;
}

.v75-tour-modal__close {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.v75-tour-modal__close:hover,
.v75-tour-modal__close:focus-visible {
  transform: rotate(90deg);
  background: rgba(157,108,255,.36);
}

.v75-tour-modal__close svg {
  width: 23px;
  height: 23px;
}

.v75-tour-modal__body {
  position: relative;
  height: calc(100% - 82px);
  background: #2a2530;
}

.v75-tour-modal__body iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #2a2530;
}

.v75-tour-modal__loader {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: rgba(255,255,255,.78);
  background: #2a2530;
}

.v75-tour-modal__loader span {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: #9d6cff;
  border-radius: 50%;
  animation: v75-tour-loader .85s linear infinite;
}

.v75-tour-modal__loader p {
  margin: 0;
  font-size: .9rem;
}

.v75-tour-modal.is-loaded .v75-tour-modal__loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

@keyframes v75-tour-window-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes v75-tour-loader {
  to { transform: rotate(360deg); }
}

body.v75-tour-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .v75-hero-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .v75-hero-band__tour {
    width: 100%;
    justify-content: flex-start;
  }

  .v75-tour-launch {
    width: min(100%, 240px);
  }

  .v75-tour-modal {
    padding: 0;
  }

  .v75-tour-modal__window {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .v75-tour-modal__header {
    min-height: 76px;
    padding: 12px 14px 12px 18px;
  }

  .v75-tour-modal__brand img {
    width: 74px;
  }

  .v75-tour-modal__body {
    height: calc(100% - 76px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v75-tour-launch::before,
  .v75-tour-modal__window,
  .v75-tour-modal__loader span {
    animation: none !important;
  }
}


/* =========================================================
   VALANZ 75 · V37 responsive welcome Tour 360
   ========================================================= */
.v75-home-tour-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #16031f;
}

.v75-home-tour-hero__viewer {
  position: relative;
  width: 100%;
  height: calc(100svh - 92px);
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(157,108,255,.22), transparent 34%),
    #16031f;
}

.v75-home-tour-hero__viewer iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #16031f;
}

.v75-home-tour-hero__loader {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: rgba(255,255,255,.82);
  transition: opacity .35s ease, visibility .35s ease;
}

.v75-home-tour-hero.is-loaded .v75-home-tour-hero__loader {
  opacity: 0;
  visibility: hidden;
}

.v75-home-tour-hero__loader span {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255,255,255,.17);
  border-top-color: #b995ff;
  border-radius: 50%;
  animation: v75-home-tour-spin .9s linear infinite;
}

.v75-home-tour-hero__loader p {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
}

@keyframes v75-home-tour-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .v75-home-tour-hero__viewer {
    height: calc(100svh - 78px);
    min-height: 620px;
  }
}

@media (max-width: 480px) {
  .v75-home-tour-hero__viewer {
    height: calc(100svh - 72px);
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v75-home-tour-hero__loader span {
    animation: none;
  }
}
