:root {
  color-scheme: light;
  --ink: #1f252b;
  --muted: #657180;
  --paper: #fbf8f4;
  --panel: rgba(255, 255, 255, 0.97);
  --line: rgba(60, 78, 94, 0.14);
  --accent: #47627a;
  --accent-2: #d5946d;
  --barrio-color: #47627a;
  --barrio-glow: rgba(71, 98, 122, 0.32);
  --barrio-contrast: #d5946d;
  --barrio-neutral: #98a2ae;
  --soft: rgba(71, 98, 122, 0.09);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --hero-url: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=86");
  --display-font: "Marcellus", Georgia, serif;
  --body-font: "Outfit", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

body[data-barrio="palermo"] {
  --accent: #b5544a;
  --accent-2: #e4a56f;
  --barrio-color: #b5544a;
  --barrio-glow: rgba(181, 84, 74, 0.38);
  --barrio-contrast: #e4a56f;
  --barrio-neutral: #c39a8d;
  --soft: rgba(228, 165, 111, 0.16);
  --hero-url: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=86");
}

body[data-barrio="recoleta"] {
  --accent: #3f5f7f;
  --accent-2: #d5a66d;
  --barrio-color: #3f5f7f;
  --barrio-glow: rgba(63, 95, 127, 0.32);
  --barrio-contrast: #d5a66d;
  --barrio-neutral: #97a8b7;
  --soft: rgba(63, 95, 127, 0.1);
  --hero-url: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=86");
}

body[data-barrio="belgrano"] {
  --accent: #4e6b5a;
  --accent-2: #c8a26a;
  --barrio-color: #4e6b5a;
  --barrio-glow: rgba(78, 107, 90, 0.29);
  --barrio-contrast: #c8a26a;
  --barrio-neutral: #97a294;
  --soft: rgba(78, 107, 90, 0.1);
  --hero-url: url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1800&q=86");
}

body[data-barrio="villa-crespo"] {
  --accent: #5d4e67;
  --accent-2: #d09076;
  --barrio-color: #5d4e67;
  --barrio-glow: rgba(93, 78, 103, 0.3);
  --barrio-contrast: #d09076;
  --barrio-neutral: #9d93a2;
  --soft: rgba(93, 78, 103, 0.1);
  --hero-url: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=86");
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 84px;
}

.hero {
  order: 1;
  position: relative;
  min-height: 86vh;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.hero-media,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: #000000;
}

.hero-image {
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  opacity: 0;
  transition:
    opacity 1200ms ease,
    filter 220ms ease;
  animation: heroDrift 13s ease-in-out infinite alternate;
  filter: saturate(1.18) contrast(1.08) brightness(1.03);
}

.hero-image.is-active {
  opacity: 1;
}

.hero-image-a {
  background-image: var(--hero-url);
}

.hero-image-b {
  animation-delay: -8s;
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.4%, -0.8%, 0);
  }
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(96, 99, 103, 0.42) 46%, rgba(0, 45, 111, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.02) 44%);
}

.topbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  z-index: 2;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.topbar-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.office-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 190px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-weight: 800;
  letter-spacing: 0;
  padding: 4px 10px;
  backdrop-filter: blur(12px);
}

.office-mark {
  width: 176px;
  height: 82px;
  padding: 8px 22px;
}

.brand-divider {
  display: none;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.55), transparent);
}

.brand-mark img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.brand-lockup small {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 2px;
}

.top-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 0;
}

.icon-link,
.primary-link,
.cta-main,
.cta-secondary,
.segment,
.chip,
.submit-button {
  min-height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.icon-link {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.12);
}

.icon-link svg {
  width: 23px;
  height: 23px;
  color: rgba(255, 255, 255, 0.88);
  stroke-width: 2.05;
}

.primary-link {
  padding: 0 16px;
  background: #fff;
  color: #000000;
  font-weight: 750;
}

.primary-link svg {
  color: #002d6f;
}

.hero-content {
  width: min(1180px, 100%);
  margin: auto;
  padding: 30px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: 42px;
  align-items: start;
  color: #fff;
  z-index: 2;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--barrio-contrast);
  text-shadow: 0 8px 24px var(--barrio-glow);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-family: var(--display-font);
  font-size: clamp(3.2rem, 6.8vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
  font-style: italic;
}

h1 span {
  display: inline-block;
  padding: 0 0.12em 0.03em;
  color: var(--barrio-color);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 240, 0.92));
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  text-shadow: 0 12px 28px var(--barrio-glow);
  border: 1px solid color-mix(in srgb, var(--barrio-color) 18%, rgba(255, 255, 255, 0.8));
}

body[data-barrio="recoleta"] h1 span {
  color: #274765;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,245,250,0.95));
  border-color: rgba(63, 95, 127, 0.24);
}

body[data-barrio="belgrano"] h1 span {
  color: #355644;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,246,242,0.95));
  border-color: rgba(78, 107, 90, 0.24);
}

body[data-barrio="palermo"] h1 span {
  color: #b5544a;
  background: linear-gradient(180deg, rgba(255,250,245,0.99), rgba(250,240,231,0.96));
  border-color: rgba(181, 84, 74, 0.3);
}

body[data-barrio="villa-crespo"] h1 span {
  color: #503f5d;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,240,246,0.95));
  border-color: rgba(93, 78, 103, 0.24);
}

@media (max-width: 680px) {
  h1 span {
    padding: 0 0.1em 0.02em;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.selector-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.segmented,
.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segment,
.chip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0 16px;
  backdrop-filter: blur(14px);
}

.segment.is-active,
.chip.is-active {
  background: #fff;
  color: var(--accent);
  border-color: color-mix(in srgb, var(--barrio-color) 55%, #fff);
}

.neighborhoods::before {
  content: "Tambien podemos asesorarte en:";
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 760;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cta-main,
.cta-secondary {
  padding: 0 20px;
  font-weight: 800;
}

.cta-main {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 42px color-mix(in srgb, var(--accent) 42%, rgba(0, 0, 0, 0.22));
}

.cta-secondary {
  border: 1px solid color-mix(in srgb, var(--barrio-contrast) 58%, rgba(255, 255, 255, 0.26));
  color: #fff;
  background: color-mix(in srgb, var(--barrio-contrast) 28%, rgba(255, 255, 255, 0.08));
}

.lead-panel {
  padding: 30px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  min-height: 560px;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.lead-panel-form {
  display: flex;
  min-height: auto;
  position: relative;
  top: 0;
}

.hero-mini-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.hero-submit {
  margin-top: 4px;
}

.quick-metrics-hero {
  margin-top: 14px;
}

@media (max-width: 1120px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 900px;
  }

  .lead-panel-form {
    display: none;
  }
}

.advisor-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 172px;
  gap: 30px;
  align-items: stretch;
  min-height: 204px;
  margin-bottom: 18px;
  padding: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(98, 99, 102, 0.2);
  border-radius: 8px;
}

.advisor-card span,
.advisor-card small,
.panel-zone span,
.panel-zone small {
  display: block;
}

.advisor-card span {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.advisor-card strong {
  display: block;
  margin-top: 10px;
  max-width: 188px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1.86rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.advisor-card small {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 720;
}

.advisor-photo {
  justify-self: end;
  width: 172px;
  border-radius: 8px;
  background-image: url("./assets/alejandro-portrait.png");
  background-repeat: no-repeat;
  background-size: 105% auto;
  background-position: center 8%;
  background-color: #fff;
  filter: saturate(0.98) contrast(1.04);
  box-shadow: 0 14px 30px rgba(18, 15, 12, 0.16);
}

.panel-zone {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding: 18px;
  background: linear-gradient(135deg, var(--soft), #ffffff 76%);
  border: 1px solid var(--line);
  border-left: 5px solid var(--barrio-contrast);
  border-radius: 8px;
}

.panel-zone span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-zone strong {
  font-family: var(--display-font);
  font-size: 2.1rem;
  line-height: 0.92;
}

.panel-zone small {
  color: var(--muted);
  line-height: 1.45;
}

.clean-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.clean-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.clean-banner::after {
  content: "";
  position: absolute;
  left: 43.5%;
  top: 17%;
  width: 29.5%;
  height: 22%;
  background: #fff;
  pointer-events: none;
}

.profile-banner {
  margin-bottom: 20px;
  box-shadow: 0 12px 28px rgba(18, 15, 12, 0.12);
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--barrio-contrast);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--barrio-contrast) 20%, transparent);
}

.lead-panel h2 {
  margin: 22px 0 12px;
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 600;
}

.lead-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.quick-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: auto 0 0;
}

.quick-metrics div {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-top: 4px solid var(--barrio-color);
}

.quick-metrics div:nth-child(2) {
  border-top-color: var(--barrio-contrast);
}

.quick-metrics dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-metrics dd {
  margin: 6px 0 0;
  font-size: 1.1rem;
  font-weight: 850;
}

.proof-strip,
.advisor-banner,
.value-section,
.selected-section,
.forms-section,
.authority-section,
.footer {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.proof-strip {
  order: 2;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -42px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.advisor-banner {
  order: 6;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.86fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px 0 28px;
  border-bottom: 1px solid var(--line);
}

.advisor-banner__copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.advisor-banner__copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  font-family: var(--display-font);
  font-weight: 650;
}

.advisor-banner__copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
  max-width: 760px;
}

.advisor-banner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.advisor-banner__meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #000000;
  background: color-mix(in srgb, var(--barrio-color) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--barrio-color) 22%, var(--line));
  font-size: 0.78rem;
  font-weight: 760;
}

.advisor-banner__card {
  display: grid;
  align-items: center;
}

.advisor-card-inline {
  min-height: 226px;
  margin-bottom: 0;
}

.proof-strip div {
  min-height: 108px;
  padding: 20px 22px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-left: 1px solid var(--line);
}

.proof-strip div:first-child {
  border-left: 0;
  border-top: 5px solid var(--barrio-color);
}

.proof-strip div:nth-child(2) {
  border-top: 5px solid var(--barrio-contrast);
}

.proof-strip div:nth-child(3) {
  border-top: 5px solid var(--barrio-neutral);
}

.proof-strip div:nth-child(4) {
  border-top: 5px solid #000000;
}

.proof-strip strong {
  color: #000000;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 580;
}

.credential-section {
  display: none;
}

.credential-card {
  display: grid;
  grid-template-columns: 170px 190px minmax(0, 1fr) 170px;
  gap: 26px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border-top: 12px solid #000000;
  border-bottom: 44px solid #626366;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18, 15, 12, 0.16);
  position: relative;
}

.credential-card::after {
  content: "PERSONAS REALES. VALORES REALES.";
  position: absolute;
  left: 24px;
  bottom: -33px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.credential-left {
  display: grid;
  gap: 18px;
  align-content: center;
}

.credential-left img {
  width: 138px;
  height: auto;
}

.credential-left span {
  max-width: 120px;
  padding-top: 14px;
  border-top: 1px solid #000000;
  color: #626366;
  font-size: 0.86rem;
  font-weight: 820;
  text-transform: lowercase;
}

.credential-person {
  align-self: stretch;
  min-height: 236px;
  background-image: url("./assets/alejandro-portrait.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.credential-contact {
  display: grid;
  gap: 6px;
  align-content: center;
  min-width: 0;
}

.credential-contact strong {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credential-contact span {
  color: #626366;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.credential-contact a {
  margin-top: 12px;
  color: #000000;
  font-size: 1.48rem;
  font-weight: 900;
  text-decoration: none;
}

.credential-contact small {
  color: #626366;
  font-size: 0.95rem;
}

.credential-anniversary {
  width: 150px;
  justify-self: end;
}

.value-section {
  order: 4;
  padding: 42px 0 58px;
}

.section-heading,
.form-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading::before,
.form-intro::before,
.authority-section > div:first-child::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--barrio-color), var(--barrio-contrast));
}

.section-heading h2,
.form-intro h2,
.authority-section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.92;
  font-family: var(--display-font);
  font-weight: 600;
}

.section-heading p,
.form-intro p,
.authority-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.value-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-card::after {
  content: none;
}

.value-card > * {
  position: relative;
  z-index: 1;
}

.value-card svg {
  color: #fff;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  padding: 9px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 18%, transparent);
  stroke-width: 2.05;
}

.value-card:nth-child(1) svg {
  background: var(--barrio-color);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--barrio-color) 18%, transparent);
}

.value-card:nth-child(2) svg {
  background: var(--barrio-contrast);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--barrio-contrast) 18%, transparent);
}

.value-card:nth-child(3) svg {
  background: var(--barrio-neutral);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--barrio-neutral) 18%, transparent);
}

.value-card:nth-child(4) svg {
  background: #000000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.value-card h3 {
  font-size: 1.1rem;
}

.value-card p {
  color: var(--muted);
  line-height: 1.6;
}

.value-visual {
  position: relative;
  margin-top: auto;
  min-height: 118px;
  height: 118px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--barrio-color) 14%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--barrio-color) 4%, #fff), #fcfbf7 72%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.value-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.42));
  z-index: 1;
  pointer-events: none;
}

.value-visual::after {
  content: "";
  position: absolute;
  inset: auto -16% -42% 24%;
  height: 72%;
  background: radial-gradient(circle, color-mix(in srgb, var(--barrio-color) 10%, transparent), transparent 62%);
  z-index: 0;
  pointer-events: none;
}

.value-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
  transform-origin: center;
  animation: valueVisualFloat 12s ease-in-out infinite;
}

.value-card:hover .value-visual img {
  animation-duration: 7.5s;
}

.value-card--map .value-visual img {
  object-position: 62% 58%;
  transform: scale(1.02);
}

.value-card--pyramid .value-visual img {
  object-position: center 62%;
  transform: scale(1.05);
  animation-delay: -1.8s;
}

.value-card--timeline .value-visual img {
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.06);
  animation-delay: -4.2s;
}

.value-card--quote .value-visual img {
  object-position: right center;
  transform: scale(1.04);
  animation-delay: -2.6s;
}

@keyframes valueVisualFloat {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.06) translate3d(-1.2%, 1.2%, 0);
  }

  100% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
}

.value-button {
  min-height: 38px;
  margin-top: auto;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.value-button.is-secondary {
  color: var(--barrio-contrast);
  background: color-mix(in srgb, var(--barrio-contrast) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--barrio-contrast) 34%, var(--line));
}

.selected-section {
  order: 5;
  padding: 8px 0 56px;
}

.forms-section {
  order: 3;
  position: relative;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--barrio-color) 7%, #fff), #ffffff 48%);
  overflow: hidden;
}

.forms-section > * {
  position: relative;
  z-index: 1;
}

.forms-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.forms-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.7) 20%, rgba(255,255,255,0.76) 100%),
    linear-gradient(90deg, rgba(9, 12, 16, 0.2), rgba(9, 12, 16, 0.04) 32%, rgba(255,255,255,0.1) 100%);
}

.forms-backdrop-track {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 18px;
  width: max-content;
  height: 100%;
  animation: formsBackdropDrift 52s linear infinite;
}

.forms-backdrop-slide {
  flex: 0 0 clamp(260px, 34vw, 460px);
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.03);
}

@keyframes formsBackdropDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

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

.selected-card {
  display: grid;
  gap: 12px;
  min-height: 316px;
  padding: 0 22px 22px;
  background: linear-gradient(135deg, #ffffff, color-mix(in srgb, var(--barrio-color) 7%, #fff));
  border: 1px solid var(--line);
  border-radius: 8px;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.selected-card > * {
  position: relative;
  z-index: 1;
}

.selected-media {
  position: relative;
  margin: 0 -22px 4px;
  min-height: 154px;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--barrio-color) 14%, var(--line));
}

.selected-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08) 22%, rgba(255,255,255,0.84) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.14), transparent 34%, transparent 66%, rgba(0,0,0,0.1));
  z-index: 2;
}

.selected-media-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: max-content;
  height: 100%;
}

.selected-media-slide {
  flex: 0 0 clamp(150px, 40vw, 220px);
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.selected-tag {
  justify-self: start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--barrio-color);
  background: color-mix(in srgb, var(--barrio-color) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--barrio-color) 22%, var(--line));
  font-size: 0.72rem;
  font-weight: 850;
}

.selected-card:nth-child(2) .selected-tag {
  color: var(--barrio-contrast);
  background: color-mix(in srgb, var(--barrio-contrast) 10%, #fff);
  border-color: color-mix(in srgb, var(--barrio-contrast) 22%, var(--line));
}

.selected-card:nth-child(3) .selected-tag {
  color: #000000;
  background: color-mix(in srgb, #000000 8%, #fff);
  border-color: color-mix(in srgb, #000000 16%, var(--line));
}

.selected-card svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: #ffffff;
  background: var(--barrio-color);
  border-radius: 8px;
  stroke-width: 2.05;
  margin-top: -22px;
  box-shadow: 0 14px 24px rgba(12, 12, 12, 0.12);
}

.selected-card:nth-child(2) svg {
  background: var(--barrio-contrast);
}

.selected-card:nth-child(3) svg {
  background: #000000;
}

.selected-card h3 {
  margin-bottom: 0;
  font-size: 1.14rem;
}

.selected-card p {
  color: var(--muted);
  line-height: 1.55;
}

.selected-card a {
  min-height: 38px;
  margin-top: auto;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  color: #ffffff;
  background: var(--barrio-color);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.selected-card:nth-child(2) a {
  background: var(--barrio-contrast);
}

.selected-card:nth-child(3) a {
  background: #000000;
}

.forms-grid {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}

.contact-form {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent-2);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(18, 15, 12, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.intent-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.intent-option {
  position: relative;
  min-height: 68px;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.intent-option input {
  position: absolute;
  left: 14px;
  top: 17px;
  width: auto;
  accent-color: var(--barrio-color);
}

.intent-option strong,
.intent-option small {
  display: block;
}

.intent-option strong {
  color: #000000;
  font-size: 0.92rem;
  font-weight: 850;
}

.intent-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.intent-option.is-active {
  border-color: var(--barrio-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--barrio-color) 10%, #fff), #fff 72%);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--barrio-color) 12%, transparent);
}

.form-panel {
  display: none;
  gap: 9px;
}

.form-panel.is-active {
  display: grid;
}

.phone-field {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.phone-field span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--accent);
  font-weight: 850;
}

.phone-field input {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.feature-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.feature-checks legend {
  flex-basis: 100%;
  margin-bottom: 2px;
  color: #000000;
  font-size: 0.92rem;
  font-weight: 750;
}

.feature-checks label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.82rem;
}

.feature-checks input {
  width: auto;
  accent-color: var(--accent);
}

.contact-form.is-featured {
  border-top-color: var(--barrio-color);
}

body[data-lead="comprador"] .contact-form.is-unified {
  border-top-color: var(--barrio-contrast);
}

.contact-form:not(.is-featured) {
  border-top-color: var(--barrio-contrast);
}

.form-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 2px;
}

.form-title svg {
  flex: 0 0 auto;
  color: var(--barrio-contrast);
  width: 24px;
  height: 24px;
  margin-top: 3px;
  stroke-width: 2;
}

.form-title h3 {
  margin-bottom: 4px;
  font-family: var(--display-font);
  font-size: 1.46rem;
  line-height: 1;
  font-weight: 600;
}

.form-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

label {
  display: grid;
  gap: 6px;
  color: #000000;
  font-size: 0.86rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 11px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

.submit-button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 0 18px;
  font-weight: 850;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 24%, transparent);
  margin-top: auto;
}

.contact-form:not(.is-featured) .submit-button {
  background: var(--barrio-contrast);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--barrio-contrast) 24%, transparent);
}

body[data-lead="comprador"] .contact-form.is-unified .submit-button {
  background: var(--barrio-contrast);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--barrio-contrast) 24%, transparent);
}

.authority-section {
  order: 7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
  gap: 24px;
  align-items: start;
  padding: 40px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.authority-section .eyebrow {
  margin-bottom: 6px;
}

.authority-section h2 {
  margin-bottom: 8px;
}

.authority-section p {
  margin-bottom: 0;
}

.authority-contact {
  display: grid;
  gap: 7px;
  max-width: 460px;
  margin-top: 10px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}

.authority-contact strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.authority-contact a,
.authority-contact span {
  color: #626366;
  text-decoration: none;
  line-height: 1.34;
  font-family: var(--body-font);
  font-weight: 520;
}

.authority-contact > a,
.authority-contact > span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.authority-contact svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  padding: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--barrio-color) 18%, #fff);
  stroke-width: 2.25;
}

.authority-contact a:hover {
  color: var(--accent);
}

.authority-box {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #000000;
  color: #fff;
  border-radius: 8px;
  align-content: start;
  max-width: 300px;
  justify-self: end;
}

.authority-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-items: center;
  margin-bottom: 4px;
}

.authority-logos img {
  width: 100%;
  max-height: 104px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 0;
  padding: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 20;
  display: inline-flex;
  width: 52px;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding: 6px 7px;
  color: #fff;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 18px 42px rgba(22, 122, 70, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition:
    transform 160ms ease,
    width 180ms ease,
    box-shadow 160ms ease;
}

.whatsapp-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.floating-whatsapp img {
  width: 26px;
  height: 26px;
}

.floating-whatsapp > span:last-child {
  width: 0;
  opacity: 0;
  white-space: nowrap;
  transition:
    opacity 140ms ease,
    width 180ms ease;
}

.floating-whatsapp:hover {
  width: 150px;
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(22, 122, 70, 0.42);
}

.floating-whatsapp:hover > span:last-child {
  width: 82px;
  opacity: 1;
}

.resource-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.resource-modal[hidden] {
  display: none;
}

.resource-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.resource-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  display: grid;
  gap: 12px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--barrio-color);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.resource-modal__dialog h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 0.96;
  font-family: var(--display-font);
  font-weight: 650;
}

.resource-modal__dialog p:not(.eyebrow) {
  margin-bottom: 2px;
  color: var(--muted);
  line-height: 1.5;
}

.resource-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
}

.resource-modal__close svg {
  width: 20px;
  height: 20px;
}

.authority-box strong {
  font-size: 1.05rem;
}

.office-rank {
  margin: -1px 0 0;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.authority-box span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.36;
}

.footer {
  display: none;
  padding: 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong,
.footer span {
  display: block;
}

.footer-data strong,
.footer-data span,
.footer-data address {
  display: none;
}

.footer strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.footer address {
  margin-top: 10px;
  font-style: normal;
  line-height: 1.55;
}

.footer p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.footer-logos {
  display: none;
}

.footer-logos img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon-link:hover,
.primary-link:hover,
.cta-main:hover,
.cta-secondary:hover,
.submit-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
  }

  .hero-content,
  .advisor-banner,
  .forms-grid,
  .authority-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 54px;
    gap: 28px;
  }

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

  .proof-strip div:nth-child(odd) {
    border-left: 0;
  }

  .lead-panel {
    min-height: auto;
  }

  .credential-card {
    grid-template-columns: 150px minmax(0, 1fr) 130px;
    gap: 18px;
  }

  .credential-person {
    display: none;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-logos {
    max-width: 360px;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 14px 16px 16px;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 8px 12px;
    min-height: 72px;
  }

  .topbar-main {
    display: contents;
    gap: 8px;
  }

  .brand-mark {
    width: 136px;
    height: 66px;
  }

  .personal-lockup {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .office-lockup {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .office-mark {
    width: 136px;
    height: 66px;
    padding: 7px 14px;
  }

  .brand-divider {
    height: 38px;
  }

  .top-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    margin-left: 4px;
    margin-top: 4px;
    gap: 8px;
    justify-self: start;
  }

  .icon-link {
    width: 36px;
    height: 36px;
  }

  .icon-link svg {
    width: 19px;
    height: 19px;
  }

  .primary-link {
    flex: 1;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(2.16rem, 10.6vw, 3.35rem);
  }

  .hero-content {
    padding-top: 4px;
    padding-bottom: 66px;
    gap: 16px;
  }

  .hero-lede {
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .selector-grid {
    margin-top: 18px;
    gap: 12px;
  }

  .segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .segment {
    min-height: 66px;
    width: 100%;
    padding: 0 10px;
    font-size: 1rem;
    font-weight: 900;
  }

  .segment svg {
    width: 20px;
    height: 20px;
  }

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

  .neighborhoods::before {
    grid-column: 1 / -1;
    flex-basis: auto;
  }

  .chip {
    min-height: 38px;
    width: 100%;
    padding: 0 8px;
    font-size: 0.74rem;
    font-weight: 850;
    text-align: center;
    white-space: normal;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .cta-main,
  .cta-secondary {
    min-height: 48px;
    width: 100%;
    padding: 0 10px;
    font-size: 0.82rem;
    line-height: 1.1;
    text-align: center;
  }

  .value-section,
  .proof-strip,
  .selected-section,
  .credential-section,
  .forms-section,
  .authority-section,
  .footer {
    width: min(100% - 32px, 1180px);
  }

  .value-section {
    padding: 34px 0 44px;
  }

  .proof-strip {
    margin-top: -28px;
  }

  .proof-strip div {
    min-height: 86px;
    padding: 14px 13px;
  }

  .proof-strip strong {
    font-size: 0.82rem;
  }

  .proof-strip span {
    font-size: 0.72rem;
  }

  .forms-section {
    padding: 44px 0;
  }

  .selected-section {
    padding: 0 0 44px;
  }

  .selected-grid {
    grid-template-columns: 1fr;
  }

  .selected-card {
    min-height: auto;
    padding: 0 18px 18px;
  }

  .selected-media {
    margin: 0 -18px 4px;
    min-height: 132px;
  }

  .selected-media-slide {
    flex-basis: 168px;
  }

  .authority-section {
    padding: 38px 0 30px;
  }

  .section-heading,
  .form-intro {
    margin-bottom: 20px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .lead-panel {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-form.is-unified {
    padding: 16px;
  }

  .forms-backdrop-slide {
    flex-basis: 280px;
  }

  .intent-option {
    min-height: 58px;
    padding: 10px 8px 10px 30px;
  }

  .intent-option input {
    left: 9px;
    top: 15px;
  }

  .intent-option strong {
    font-size: 0.82rem;
  }

  .intent-option small {
    font-size: 0.72rem;
  }

  .feature-checks {
    gap: 6px;
  }

  .feature-checks label {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .advisor-card {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 20px;
    min-height: 154px;
    padding: 16px;
  }

  .advisor-card strong {
    font-size: 1.34rem;
  }

  .advisor-photo {
    width: 132px;
    background-size: 110% auto;
    background-position: center 9%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 22px;
    width: 50px;
    min-height: 48px;
    padding: 6px 7px;
    font-size: 0.84rem;
  }

  .authority-box {
    justify-self: center;
    width: min(100%, 300px);
    max-width: 300px;
  }

  .authority-logos img {
    margin-inline: auto;
  }

  .whatsapp-mark {
    width: 36px;
    height: 36px;
  }

  .floating-whatsapp img {
    width: 23px;
    height: 23px;
  }

  .resource-modal {
    padding: 14px;
  }

  .resource-modal__dialog {
    padding: 22px 16px 16px;
  }

  .panel-zone strong {
    font-size: 1.55rem;
  }

  .credential-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-bottom-width: 36px;
  }

  .credential-card::after {
    left: 18px;
    bottom: -28px;
    max-width: 210px;
    font-size: 0.72rem;
  }

  .credential-left {
    grid-template-columns: 118px 1fr;
    gap: 16px;
    align-items: center;
  }

  .credential-left img {
    width: 112px;
  }

  .credential-left span {
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid #000000;
    padding-left: 14px;
  }

  .credential-contact strong {
    font-size: 1.6rem;
  }

  .credential-contact span,
  .credential-contact a {
    font-size: 1rem;
  }

  .credential-anniversary {
    width: 112px;
    justify-self: start;
  }
}
