/* Landing SEO — Precio del metro cuadrado en Mendoza */

.price-page {
  --price-navy: #1f3575;
  --price-steel: #19507a;
  --price-mint: #2fa486;
  --price-green-success: #2e9f7e;
  --price-text: #334155;
  --price-muted: #64748b;
  --price-border: #e2e8f0;
  --price-soft: #f8fafc;
  --price-surface: #ffffff;
  color: var(--price-text);
  font-family: Inter, -apple-system, sans-serif;
  background: #fff;
}

.price-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.price-page #mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

.price-page #mobile-menu.open {
  transform: translateX(0);
}

.price-page main {
  padding-top: 0;
}

.price-container {
  width: min(calc(100% - 2rem), 74rem);
  margin-inline: auto;
}

@media (min-width: 1440px) {
  .price-container {
    width: min(calc(100% - 3rem), 80rem);
  }
}

.price-page .faq-section__inner.price-container {
  width: min(calc(100% - 2rem), 74rem);
}

@media (min-width: 1440px) {
  .price-page .faq-section__inner.price-container {
    width: min(calc(100% - 3rem), 80rem);
  }
}

/* ——— Breadcrumbs ——— */
.price-breadcrumbs {
  padding: 0 0 0.5rem;
}

.price-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: var(--price-muted);
}

.price-breadcrumbs__list a {
  color: var(--price-steel);
  text-decoration: none;
  font-weight: 600;
}

.price-breadcrumbs__list a:hover,
.price-breadcrumbs__list a:focus-visible {
  color: var(--price-navy);
  text-decoration: underline;
}

.price-breadcrumbs__sep {
  color: #94a3b8;
}

.price-breadcrumbs__current {
  color: var(--price-text);
}

/* ——— Hero ——— */
.price-hero {
  padding: 1.35rem 0 2.75rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 164, 134, 0.07), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(31, 53, 117, 0.07), transparent 40%),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

@media (min-width: 1024px) {
  .price-hero {
    padding-top: 1rem;
  }
}

.price-hero__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  width: 100%;
}

.price-hero__copy {
  min-width: 0;
  max-width: 42rem;
}

.price-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--price-steel);
}

.price-hero__title {
  margin: 0 0 0.85rem;
  max-width: 18ch;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--price-navy);
  text-transform: none;
}

.price-hero__lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--price-muted);
}

.price-hero__sublead {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #7a8aa0;
}

.price-hero__badge {
  display: inline-flex;
  align-items: center;
  margin: 1rem 0 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--price-steel);
  background: rgba(25, 80, 122, 0.07);
  border: 1px solid rgba(25, 80, 122, 0.12);
  border-radius: 999px;
}

.price-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.price-btn:focus-visible {
  outline: 2px solid #69d1b7;
  outline-offset: 3px;
}

.price-btn--primary {
  color: #fff;
  background: var(--price-navy);
  box-shadow: 0 6px 18px rgba(31, 53, 117, 0.16);
}

.price-btn--primary:hover {
  background: var(--price-steel);
}

.price-hero .price-btn--primary {
  background: #eb7300;
  box-shadow: 0 8px 20px rgba(235, 115, 0, 0.18);
}

.price-hero .price-btn--primary:hover {
  background: #d96800;
}

.price-btn--secondary {
  color: var(--price-navy);
  background: #fff;
  border: 1px solid var(--price-border);
}

.price-btn--secondary:hover {
  border-color: rgba(31, 53, 117, 0.28);
  background: var(--price-soft);
}

.price-hero__note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--price-muted);
}

/* ——— Hero market summary ——— */
.price-market-summary {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  max-width: 34rem;
  justify-self: end;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 53, 117, 0.14);
  border-radius: 1rem;
  box-shadow: 0 22px 60px rgba(31, 53, 117, 0.11);
}

.price-market-summary__header,
.price-market-summary__footer {
  padding: 1rem 1.15rem;
  background: rgba(31, 53, 117, 0.035);
}

.price-market-summary__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--price-border);
}

.price-market-summary__header > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-market-summary__header span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--price-muted);
}

.price-market-summary__header strong {
  font-size: 0.95rem;
  color: var(--price-navy);
}

.price-market-summary__status {
  color: var(--price-steel) !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap;
}

.price-market-summary__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem 1rem;
  padding: 1.15rem;
}

.price-market-summary__row + .price-market-summary__row {
  border-top: 1px solid var(--price-border);
}

.price-market-summary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--price-steel);
  background: rgba(25, 80, 122, 0.07);
  border-radius: 0.7rem;
}

.price-market-summary__content {
  min-width: 0;
}

.price-market-summary__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--price-muted);
}

.price-market-summary__value {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.price-market-summary__value strong {
  font-family: Merriweather, Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--price-navy);
}

.price-market-summary__value span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--price-steel);
}

.price-market-summary__visual {
  width: 190px;
  min-height: 54px;
}

.price-mini-chart {
  display: block;
  width: 100%;
  height: 54px;
}

.price-mini-chart__line {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: price-spark-draw 0.9s ease forwards;
}

.price-market-summary__trend {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0.25rem 0 0;
  min-height: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.price-market-summary__trend--up {
  color: #2e7d32;
}

.price-market-summary__trend--down {
  color: #b91c1c;
}

.price-market-summary__trend svg {
  flex-shrink: 0;
}

.price-market-summary__footer {
  border-top: 1px solid var(--price-border);
  font-size: 0.7rem;
  color: var(--price-muted);
}

@keyframes price-spark-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ——— Reveal ——— */
.price-motion .price-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

/* ——— Intentions strip ——— */
.price-intents {
  padding: 2rem 0 2.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.price-intents .price-section__title {
  max-width: 18ch;
}

.price-section__body--tight {
  margin-top: 0.7rem;
  max-width: 68ch;
  font-size: 0.92rem;
}

.price-intents__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: 1.5rem;
  border-top: 1px solid var(--price-border);
  border-bottom: 1px solid var(--price-border);
}

.price-intent {
  min-width: 0;
  padding: 1.35rem 1.25rem;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.price-intent + .price-intent {
  border-left: 1px solid var(--price-border);
}

.price-intent__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.price-intent__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--price-steel);
  background: rgba(25, 80, 122, 0.06);
  border-radius: 0.65rem;
}

.price-intent__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--price-navy);
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.price-intent__description {
  margin: 0.75rem 0 0;
  max-width: 28ch;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--price-muted);
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

@media (min-width: 1100px) {
  .price-intents__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .price-intents__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-intent:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--price-border);
  }

  .price-intent:nth-child(4) {
    border-top: 1px solid var(--price-border);
  }
}

@media (max-width: 620px) {
  .price-intents__grid {
    grid-template-columns: 1fr;
  }

  .price-intent {
    padding: 1.1rem 0.95rem;
  }

  .price-intent + .price-intent,
  .price-intent:nth-child(3),
  .price-intent:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--price-border);
  }

  .price-intent__description {
    max-width: none;
  }
}

/* ——— Sections generic ——— */
.price-section {
  padding: 3.1rem 0;
}

.price-section--soft {
  background: var(--price-soft);
}

.price-section--navy {
  background: var(--price-navy);
  color: #fff;
}

.price-section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--price-steel);
}

.price-section--navy .price-section__eyebrow {
  color: #69d1b7;
}

.price-section__title {
  margin: 0;
  max-width: 22ch;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--price-navy);
  text-transform: none;
}

.price-section--navy .price-section__title {
  color: #fff;
}

.price-section__body {
  margin: 1rem 0 0;
  max-width: 68ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--price-muted);
}

.price-section--navy .price-section__body {
  color: rgba(255, 255, 255, 0.78);
}

.price-section__body + .price-section__body {
  margin-top: 0.85rem;
}

.price-section__body a {
  color: var(--price-steel);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.price-section__body a:hover,
.price-section__body a:focus-visible {
  color: var(--price-navy);
}

.price-answer__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: 100%;
}

.price-answer__content {
  min-width: 0;
}

.price-answer__lead {
  margin: 1.15rem 0 0;
  max-width: 28ch;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--price-navy);
}

.price-callout {
  margin: 0;
  max-width: none;
  padding: 1.15rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--price-navy);
  background: rgba(47, 164, 134, 0.1);
  border: 1px solid rgba(47, 164, 134, 0.22);
  border-radius: 0.85rem;
}

@media (max-width: 800px) {
  .price-answer__layout {
    grid-template-columns: 1fr;
  }

  .price-callout {
    margin-top: 0.25rem;
  }
}

/* ——— Steps ——— */
.price-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: price-step;
}

@media (max-width: 760px) {
  .price-steps {
    grid-template-columns: 1fr;
  }
}

.price-step {
  counter-increment: price-step;
  min-width: 0;
  padding: 0.35rem 0 0.5rem;
  border-top: 2px solid rgba(31, 53, 117, 0.18);
}

.price-step::before {
  content: counter(price-step, decimal-leading-zero);
  display: block;
  margin: 0.85rem 0 0.55rem;
  font-family: Merriweather, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(31, 53, 117, 0.35);
}

.price-step__title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--price-navy);
}

.price-step__text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--price-muted);
}

.price-example {
  margin: 1.75rem 0 0;
  padding: 1.35rem 1.25rem;
  max-width: 40rem;
  width: 100%;
  background: #fff;
  border-left: 3px solid var(--price-mint);
  border-radius: 0 0.75rem 0.75rem 0;
  box-shadow: 0 1px 0 rgba(31, 53, 117, 0.04);
}

.price-example__label {
  margin: 0 0 0.85rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--price-steel);
}

.price-example__facts {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.price-example__facts div {
  display: grid;
  gap: 0.15rem;
}

.price-example__facts dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--price-muted);
}

.price-example__facts dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--price-navy);
}

.price-example__adjust {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--price-text);
}

.price-example__note {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--price-border);
  font-size: 0.75rem;
  color: var(--price-muted);
}

/* ——— Factors ——— */
.price-factors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 1.75rem 0 0;
  border-top: 1px solid var(--price-border);
}

.price-factor {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.05rem 0.85rem 1.05rem 0;
  background: transparent;
  border-bottom: 1px solid var(--price-border);
}

@media (min-width: 640px) {
  .price-factors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-factor:nth-child(odd) {
    padding-right: 1rem;
  }

  .price-factor:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--price-border);
  }
}

@media (min-width: 1024px) {
  .price-factors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-factor:nth-child(odd),
  .price-factor:nth-child(even) {
    padding-left: 0;
    padding-right: 1rem;
    border-left: none;
  }

  .price-factor:nth-child(3n + 2),
  .price-factor:nth-child(3n) {
    padding-left: 1rem;
    border-left: 1px solid var(--price-border);
  }
}

@media (max-width: 639px) {
  .price-factor {
    padding: 0.95rem 0.85rem;
    margin-bottom: 0.55rem;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid var(--price-border);
    border-radius: 0.75rem;
  }

  .price-factors {
    border-top: none;
    gap: 0.55rem;
  }
}

.price-factor__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--price-navy);
  background: rgba(31, 53, 117, 0.06);
  border-radius: 0.55rem;
}

.price-factor__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.price-factor__title {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--price-navy);
}

.price-factor__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--price-muted);
}

/* ——— Compare ——— */
.price-compare {
  display: grid;
  gap: 0;
  margin: 1.75rem 0 0;
  border-top: 1px solid var(--price-border);
}

@media (min-width: 768px) {
  .price-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.price-compare__col {
  padding: 1.25rem 0;
  background: transparent;
  border: none;
}

@media (min-width: 768px) {
  .price-compare__col:first-child {
    padding-right: 1.75rem;
    border-right: 1px solid var(--price-border);
  }

  .price-compare__col:last-child {
    padding-left: 1.75rem;
  }
}

@media (max-width: 767px) {
  .price-compare__col + .price-compare__col {
    border-top: 1px solid var(--price-border);
  }
}

.price-compare__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--price-navy);
}

.price-compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--price-steel);
  background: rgba(25, 80, 122, 0.07);
  border-radius: 0.5rem;
}

.price-compare__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--price-muted);
}

.price-compare__list li + li {
  margin-top: 0.35rem;
}

.price-compare__close {
  margin: 1.35rem 0 0;
  max-width: 44rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--price-text);
  font-weight: 500;
}

/* ——— Warning ——— */
.price-warning {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  background: rgba(25, 80, 122, 0.06);
  border: 1px solid rgba(25, 80, 122, 0.14);
  border-radius: 0.9rem;
}

.price-warning__icon {
  flex-shrink: 0;
  color: var(--price-steel);
}

.price-warning__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.price-warning p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--price-text);
}

/* ——— Investment ——— */
.price-invest {
  display: grid;
  gap: 1.5rem;
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--price-border);
}

@media (min-width: 768px) {
  .price-invest {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .price-invest__col:first-child {
    padding-right: 1.75rem;
    border-right: 1px solid var(--price-border);
  }

  .price-invest__col:last-child {
    padding-left: 1.75rem;
  }
}

.price-invest__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--price-navy);
}

.price-invest__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 0.5rem;
}

.price-invest__icon--muted {
  color: var(--price-steel);
  background: rgba(25, 80, 122, 0.07);
}

.price-invest__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--price-muted);
}

.price-invest__list li + li {
  margin-top: 0.4rem;
}

/* ——— Method ——— */
.price-method-steps {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: method-step;
}

@media (min-width: 768px) {
  .price-method-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.price-method-step {
  counter-increment: method-step;
  padding: 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
}

.price-method-step::before {
  content: counter(method-step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.45rem;
  font-family: Merriweather, Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(105, 209, 183, 0.7);
}

.price-method-step span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.price-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #69d1b7;
  text-decoration: none;
}

.price-link:hover,
.price-link:focus-visible {
  color: #fff;
  text-decoration: underline;
}

/* ——— Coverage / typologies ——— */
.price-types {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--price-border);
}

.price-types__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--price-navy);
}

.price-types__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.price-types__list li {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--price-steel);
  background: rgba(25, 80, 122, 0.06);
  border: 1px solid rgba(25, 80, 122, 0.1);
  border-radius: 999px;
}

.price-types__note {
  margin: 1rem 0 0;
  max-width: 44rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--price-muted);
}

/* ——— CTA commercial ——— */
.price-cta {
  padding: 3.25rem 0;
  background: var(--price-soft);
}

.price-cta__box {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 1.35rem;
  background: #fff;
  border: 1px solid var(--price-border);
  border-radius: 1rem;
  box-shadow: 0 10px 32px rgba(31, 53, 117, 0.07);
}

@media (min-width: 900px) {
  .price-cta__box {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
    padding: 2rem 2rem;
    gap: 2rem;
  }
}

.price-cta__title {
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--price-navy);
  text-transform: none;
}

.price-cta__text {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--price-muted);
}

.price-cta__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  color: var(--price-steel);
  font-weight: 600;
}

.price-cta__buy {
  min-width: 0;
}

.price-cta__buy-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.15rem;
  background: var(--price-soft);
  border: 1px solid var(--price-border);
  border-radius: 0.85rem;
}

.price-cta__buy-card .price-btn--primary {
  color: #fff;
  background: var(--price-green-success);
  box-shadow: 0 8px 20px rgba(46, 159, 126, 0.2);
}

.price-cta__buy-card .price-btn--primary:hover {
  background: #268a6d;
}

.price-cta__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.price-cta__price {
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--price-navy);
}

.price-cta__price-note {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--price-steel);
}

.price-cta__delivery {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--price-muted);
}

.price-cta__mp {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--price-muted);
}

.price-cta__mp img {
  height: 2rem;
  width: auto;
}

/* ——— FAQ ——— */
.price-faq.faq-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.price-faq .faq-intro__title {
  max-width: 14ch;
}

@media (max-width: 1100px) {
  .price-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 2.5rem;
  }

  .price-market-summary__visual {
    width: 150px;
  }
}

@media (max-width: 960px) {
  .price-hero__layout {
    grid-template-columns: 1fr;
  }

  .price-hero__title {
    max-width: none;
  }

  .price-market-summary {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .price-market-summary__row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .price-market-summary__visual {
    grid-column: 1 / -1;
    width: 100%;
  }

  .price-market-summary__header {
    flex-wrap: wrap;
  }
}

@media (max-width: 379px) {
  .price-hero__actions {
    flex-direction: column;
  }

  .price-cta__buy-card .price-btn {
    width: 100%;
  }

  .price-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-motion .price-reveal,
  .price-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .price-mini-chart__line {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .price-page #mobile-menu {
    transition: none;
  }
}
