/* =============================================================
   Marketing Digital Hotelero Argentina — CSS de página
   Archivo: assets/marketing-digital-hotelero-argentina.css
   Se encola SOLO en esta plantilla.
   ============================================================= */

/* =============================================================
   PUENTE DE VARIABLES
   El CSS original usaba variables --py-* que no existían.
   Acá se definen usando la identidad real de Pylaris.
   ============================================================= */

:root {
  --py-primary: #FF6A00;
  --py-primary-light: #FF8534;
  --py-primary-dark: #E55D00;

  --py-accent-weak: rgba(255, 106, 0, 0.08);

  --py-bg-base: #0A0E13;
  --py-bg-surface: #0D1117;
  --py-bg-card: #111519;
  --py-bg-elevated: #161B21;

  --py-text: #F5F5F5;
  --py-text-heading: #F5F5F5;
  --py-text-secondary: #A0A4A8;
  --py-text-muted: #6B7075;

  --py-border-subtle: rgba(255, 255, 255, 0.08);
  --py-border-strong: rgba(255, 255, 255, 0.14);

  --py-radius: 16px;
  --py-radius-sm: 8px;
  --py-radius-md: 12px;
  --py-radius-lg: 20px;

  --py-space-xs: 12px;
  --py-space-s: 20px;
  --py-space-m: 36px;
  --py-space-l: 56px;
  --py-space-xl: 88px;

  --text-base: 16px;
}

/* =============================================================
   BASE DE LA PÁGINA
   ============================================================= */

#py-main-content {
  background: var(--py-bg-base);
  color: var(--py-text-secondary);
  overflow: hidden;
}

#py-main-content section {
  position: relative;
}

/* =============================================================
   BOTONES COMPLEMENTARIOS
   main.css ya tiene .btn-primary.
   Esta plantilla usa también .btn-secondary y .btn-lg.
   ============================================================= */

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--py-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius-sm);
  text-decoration: none;
  transition: all 300ms var(--ease, ease);
  font-family: var(--font, Inter, sans-serif);
}

.btn-secondary:hover {
  border-color: rgba(255, 106, 0, 0.28);
  background: rgba(255, 106, 0, 0.07);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 26px;
  font-size: 15px;
}

/* =============================================================
   HERO
   ============================================================= */

.py-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: saturate(0.9) contrast(1.05);
  z-index: 0;
}

.mha-hero__photo {
  background-image: url("/wp-content/uploads/2026/05/Marketing-digital-para-hoteles-en-Argentina-Pylaris.webp");
}

.py-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 19, 0.98) 0%, rgba(10, 14, 19, 0.86) 48%, rgba(10, 14, 19, 0.42) 100%),
    linear-gradient(180deg, rgba(10, 14, 19, 0.2) 0%, rgba(10, 14, 19, 0.95) 100%);
  z-index: 1;
}

.py-hero__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  top: 90px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.14), transparent 65%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

.py-hero .py-container {
  position: relative;
  z-index: 2;
}

.py-hero__content {
  max-width: 760px;
  padding: 160px 0 110px;
}

.py-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.08);
  color: var(--py-primary-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.py-hero-title {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
  color: var(--py-text-heading);
  margin-bottom: 24px;
}

.py-hero-title span {
  background: linear-gradient(135deg, #fff 0%, var(--py-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.py-hero-subtitle {
  max-width: 680px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  color: var(--py-text-secondary);
  margin-bottom: 34px;
}

.py-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.py-hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.py-hero-proof-item {
  font-size: 12px;
  color: var(--py-text-secondary);
  padding: 7px 12px;
  border: 1px solid var(--py-border-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

/* =============================================================
   SECCIONES GLOBALES DE ESTA LANDING
   ============================================================= */

.py-section {
  padding: var(--section-pad-v, 96px) 0;
  background: var(--py-bg-base);
}

.py-bg-accent {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 106, 0, 0.06), transparent 28%),
    linear-gradient(180deg, #0D1117 0%, #0A0E13 100%);
}

.py-section-header {
  max-width: 760px;
  margin-bottom: var(--py-space-m);
}

.py-section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.18);
  color: var(--py-primary-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.py-section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--py-text-heading);
  margin-bottom: 18px;
}

.py-section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--py-text-secondary);
  max-width: 760px;
}

/* =============================================================
   PAIN / PROBLEMA
   ============================================================= */

.mha-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--py-space-m);
}

.mha-pain-item {
  background: var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.mha-pain-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--py-primary), transparent);
}

.mha-pain-item:hover {
  border-color: rgba(255, 106, 0, 0.25);
  transform: translateY(-3px);
}

.mha-pain-item__icon {
  width: 44px;
  height: 44px;
  background: var(--py-accent-weak);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mha-pain-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--py-primary);
  stroke-width: 1.8;
  fill: none;
}

.mha-pain-item__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--py-text-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.mha-pain-item__desc {
  font-size: 14px;
  color: var(--py-text-secondary);
  line-height: 1.65;
}

.mha-pain-item__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 12px;
  background: rgba(255, 106, 0, 0.08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--py-primary);
}

/* =============================================================
   INTRO HIGHLIGHT STRIP
   ============================================================= */

.mha-highlight-strip {
  background: rgba(255, 106, 0, 0.07);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: var(--py-radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: var(--py-space-m);
  flex-wrap: wrap;
}

.mha-highlight-strip__text {
  flex: 1;
  min-width: 240px;
}

.mha-highlight-strip__text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--py-text-heading);
  margin-bottom: 6px;
}

.mha-highlight-strip__text p {
  font-size: 14px;
  color: var(--py-text-secondary);
  margin: 0;
}

/* =============================================================
   SERVICIOS
   ============================================================= */

.py-services-grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 28px;
  margin-top: var(--py-space-m);
  align-items: start;
}

.py-services-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.py-services-outcomes {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  background: rgba(255, 255, 255, 0.025);
}

.py-services-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--py-text-secondary);
}

.py-services-outcome__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--py-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.py-services-outcome__icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}

.py-services-tabs {
  display: grid;
  gap: 10px;
}

.py-services-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--py-radius-md);
  border: 1px solid var(--py-border-subtle);
  background: var(--py-bg-card);
  color: var(--py-text-secondary);
  text-align: left;
  transition: all 0.25s ease;
}

.py-services-tab:hover,
.py-services-tab.active {
  background: rgba(255, 106, 0, 0.07);
  border-color: rgba(255, 106, 0, 0.24);
  color: var(--py-text);
}

.py-services-tab__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.08);
  color: var(--py-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.py-services-tab__icon svg {
  width: 21px;
  height: 21px;
}

.py-services-tab__text {
  display: grid;
  gap: 4px;
}

.py-services-tab__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--py-text-heading);
}

.py-services-tab__desc {
  font-size: 12px;
  color: var(--py-text-muted);
  line-height: 1.35;
}

.py-services-tab__arrow {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  opacity: 0.65;
}

.py-services-panel {
  display: none;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 34%),
    var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.py-services-panel.active {
  display: block;
}

.py-services-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--py-primary-light);
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.18);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.py-services-panel__badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.py-services-panel__title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--py-text-heading);
  margin-bottom: 14px;
}

.py-services-panel__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--py-text-secondary);
  margin-bottom: 26px;
}

.py-services-panel__includes-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--py-text-heading);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.py-services-panel__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.py-services-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--py-text-secondary);
}

.py-services-panel__check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--py-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.py-services-panel__check svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}

.py-services-panel__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================================
   STATS / RESULTADOS
   ============================================================= */

.mha-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: var(--py-space-m);
}

.mha-stat-item {
  background: var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mha-stat-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--py-primary), transparent);
}

.mha-stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.2);
}

.mha-stat-item__value {
  font-size: 40px;
  font-weight: 700;
  color: var(--py-text-heading);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.mha-stat-item__value span {
  background: linear-gradient(135deg, var(--py-primary), var(--py-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mha-stat-item__label {
  font-size: 13px;
  color: var(--py-text-secondary);
  line-height: 1.4;
}

/* =============================================================
   MÉTODO PYLARIS
   ============================================================= */

.mha-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: var(--py-space-m);
}

.mha-method-item {
  background: var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.mha-method-item:hover {
  border-color: rgba(255, 106, 0, 0.25);
  transform: translateY(-3px);
}

.mha-method-item__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--py-accent-weak);
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--py-primary);
  flex-shrink: 0;
}

.mha-method-item__body {
  min-width: 0;
}

.mha-method-item__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--py-text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.mha-method-item__desc {
  font-size: 14px;
  color: var(--py-text-secondary);
  line-height: 1.65;
}

.mha-method-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================================
   TIPOS DE ALOJAMIENTO
   ============================================================= */

.mha-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--py-space-m);
}

.mha-type-item {
  background: var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.mha-type-item:hover {
  border-color: rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}

.mha-type-item__icon {
  width: 38px;
  height: 38px;
  background: var(--py-accent-weak);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mha-type-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--py-primary);
  stroke-width: 1.8;
  fill: none;
}

.mha-type-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--py-text-heading);
  margin-bottom: 4px;
}

.mha-type-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.mha-tag {
  font-size: 11px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--py-border-subtle);
  border-radius: 100px;
  color: var(--py-text-secondary);
}

/* =============================================================
   PROCESO
   ============================================================= */

.py-process-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
  margin-top: var(--py-space-m);
}

.py-process-media {
  border-radius: var(--py-radius);
  overflow: hidden;
  border: 1px solid var(--py-border-subtle);
  background: var(--py-bg-card);
}

.py-process-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
  opacity: 0.88;
}

.py-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.py-process-card {
  background: var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  padding: 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.py-process-card:hover {
  border-color: rgba(255, 106, 0, 0.22);
  transform: translateY(-2px);
}

.py-process-card__number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--py-primary);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.py-process-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--py-text-heading);
  margin-bottom: 8px;
}

.py-process-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--py-text-secondary);
  margin-bottom: 16px;
}

.py-process-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--py-primary-light);
  font-weight: 600;
}

.py-process-card__duration svg {
  width: 14px;
  height: 14px;
}

/* =============================================================
   FAQ
   ============================================================= */

.py-faq-list {
  display: grid;
  gap: 12px;
  margin-top: var(--py-space-m);
}

.py-faq-item {
  background: var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius-md);
  overflow: hidden;
}

.py-faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  text-align: left;
  color: var(--py-text-heading);
}

.py-faq-question__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--py-text-heading);
}

.py-faq-question__icon {
  width: 24px;
  height: 24px;
  color: var(--py-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.py-faq-question__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.py-faq-item.active .py-faq-question__icon {
  transform: rotate(180deg);
}

.py-faq-answer {
  display: none;
  border-top: 1px solid var(--py-border-subtle);
}

.py-faq-item.active .py-faq-answer {
  display: block;
}

.py-faq-answer__content {
  padding: 20px 24px 24px;
}

.py-faq-answer__content p {
  color: var(--py-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* =============================================================
   CONTACTO
   ============================================================= */

.py-contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.py-contact-info__title {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: var(--py-text-heading);
  margin-bottom: 18px;
}

.py-contact-info__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--py-text-secondary);
  margin-bottom: 24px;
}

.py-contact-info__benefits {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    grid-auto-flow: column;
    justify-content: center;
    align-content: space-between;
	align-items: center;}

.py-contact-info__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--py-text-secondary);
  font-size: 14px;
}

.py-contact-info__benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--py-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.py-contact-info__benefit-icon svg {
  width: 15px;
  height: 15px;
}

.py-contact-media {
  border-radius: var(--py-radius);
  overflow: hidden;
  border: 1px solid var(--py-border-subtle);
  background: var(--py-bg-card);
}

.py-contact-media__img {
  width: 100%;
  height: auto;
  opacity: 0.86;
}

.py-contact-form {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 30%),
    var(--py-bg-card);
  border: 1px solid var(--py-border-subtle);
  border-radius: var(--py-radius);
  padding: 30px;
}

.py-contact-form__header {
  margin-bottom: 24px;
}

.py-contact-form__title {
  font-size: 24px;
  color: var(--py-text-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.py-contact-form__subtitle {
  font-size: 14px;
  color: var(--py-text-secondary);
}

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

.py-form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.py-form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--py-text-heading);
}

.py-form-input,
.py-form-textarea {
  width: 100%;
  border: 1px solid var(--py-border-subtle);
  background: rgba(255, 255, 255, 0.035);
  color: var(--py-text);
  border-radius: var(--py-radius-sm);
  padding: 13px 14px;
  font-family: var(--font, Inter, sans-serif);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.py-form-input:focus,
.py-form-textarea:focus {
  border-color: rgba(255, 106, 0, 0.42);
  background: rgba(255, 106, 0, 0.045);
}

.py-form-textarea {
  min-height: 130px;
  resize: vertical;
}

.py-form-input::placeholder,
.py-form-textarea::placeholder {
  color: var(--py-text-muted);
}

.py-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px;
  color: var(--py-text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.py-form-checkbox {
  margin-top: 3px;
  accent-color: var(--py-primary);
}

.py-form-actions {
  margin-bottom: 14px;
}

.py-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--py-text-muted);
  font-size: 12px;
}

.py-form-note svg {
  width: 15px;
  height: 15px;
  color: var(--py-primary);
}

/* =============================================================
   NAV DROPDOWN
   ============================================================= */

.mha-nav-item {
  position: relative;
}

.mha-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  min-width: 220px;
  background: rgba(10, 14, 19, 0.97);
  border: 1px solid var(--py-border-subtle);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-6px);
  backdrop-filter: blur(16px);
  z-index: 9999;
}

.mha-nav-item:hover .mha-dropdown,
.mha-nav-item:focus-within .mha-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mha-dropdown__item {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--py-text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.mha-dropdown__item:hover {
  background: rgba(255, 106, 0, 0.08);
  color: var(--py-text);
}

.mha-dropdown__sep {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--py-text-muted);
  padding: 8px 14px 4px;
}

.mha-nav-chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mha-nav-item:hover .mha-nav-chevron {
  transform: rotate(180deg);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
  .py-hero__content {
    padding: 130px 0 86px;
  }

  .mha-pain-grid {
    grid-template-columns: 1fr;
  }

  .py-services-grid {
    grid-template-columns: 1fr;
  }

  .mha-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mha-method-grid {
    grid-template-columns: 1fr;
  }

  .mha-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .py-process-layout {
    grid-template-columns: 1fr;
  }

  .py-process-media__img {
    min-height: 340px;
  }

  .py-contact-grid {
    grid-template-columns: 1fr;
  }

  .mha-highlight-strip {
    padding: 22px 24px;
  }

  .mha-dropdown {
    display: none;
  }
}

@media (max-width: 768px) {
  .py-hero {
    min-height: auto;
  }

  .py-hero__photo {
    opacity: 0.22;
    background-position: center;
  }

  .py-hero__overlay {
    background:
      linear-gradient(180deg, rgba(10, 14, 19, 0.9) 0%, rgba(10, 14, 19, 0.98) 100%);
  }

  .py-hero__content {
    padding: 112px 0 70px;
  }

  .py-hero-title {
    letter-spacing: -0.045em;
  }

  .py-hero-subtitle {
    font-size: 16px;
  }

  .py-hero-cta {
    align-items: stretch;
  }

  .py-hero-cta .btn-primary,
  .py-hero-cta .btn-secondary {
    width: 100%;
  }

  .py-section-title br,
  .py-contact-info__title br {
    display: none;
  }

  .py-services-panel {
    padding: 24px;
  }

  .py-services-panel__list {
    grid-template-columns: 1fr;
  }

  .py-process-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .mha-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mha-types-grid {
    grid-template-columns: 1fr;
  }

  .mha-stat-item {
    padding: 22px 16px;
  }

  .mha-stat-item__value {
    font-size: 32px;
  }

  .mha-highlight-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mha-highlight-strip .btn-primary {
    width: 100%;
  }

  .py-contact-form {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .mha-stats-grid {
    grid-template-columns: 1fr;
  }

  .py-hero-proof {
    align-items: stretch;
  }

  .py-hero-proof-item {
    width: 100%;
  }
}