/* =====================================================
   CONTACTO PAGE — Premium Redesign
   ===================================================== */

/* Hero de cabecera */
.contact-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(96,117,97,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-hero-bg-text {
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--primary);
}

.contact-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
}

.contact-hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.contact-hero-sub {
  margin-top: 24px;
  font-size: 16px;
  color: var(--white-64);
  max-width: 480px;
  line-height: 1.7;
}

/* Stats rápidos bajo el hero */
.contact-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--white-16);
  flex-wrap: wrap;
}

.contact-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.contact-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-64);
}

/* Layout principal de contacto */
.section-contact-main {
  position: relative;
  padding: 0 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 70vh;
  border: 1px solid var(--white-16);
  border-radius: 4px;
  overflow: hidden;
}

/* Panel izquierdo — info */
.contact-panel-info {
  background: linear-gradient(160deg, rgba(96,117,97,0.12) 0%, rgba(96,117,97,0.04) 100%);
  border-right: 1px solid var(--white-16);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.contact-panel-info::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,117,97,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
}

.contact-info-heading span {
  color: var(--primary);
}

.contact-info-desc {
  font-size: 15px;
  color: var(--white-64);
  line-height: 1.7;
  margin-top: 14px;
}

/* Items de contacto */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--white-16);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.contact-info-item:hover {
  border-color: var(--primary);
  background: rgba(96,117,97,0.08);
}

.contact-info-item:hover .cii-icon {
  background: var(--primary);
  color: #fff;
}

.cii-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white-16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary);
}

.cii-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cii-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-64);
}

.cii-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
}

.cii-value a {
  color: var(--white);
  text-decoration: none;
}
.cii-value a:hover {
  color: var(--primary);
}

/* Garantías / Sellos */
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--white-16);
  border-radius: 99px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-64);
  font-weight: 500;
}

.contact-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Panel derecho — formulario */
.contact-panel-form {
  padding: 56px 52px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form-header p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-form-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
}

/* Formulario premium */
.form-premium {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pf-field {
  position: relative;
  border: 1px solid var(--white-16);
  border-radius: 0;
  margin-top: -1px;
  margin-left: -1px;
  transition: border-color 0.3s ease, z-index 0s;
}

.pf-field:first-child {
  margin-top: 0;
  margin-left: 0;
}

.form-row-2 .pf-field:first-child {
  margin-left: 0;
}

.pf-field:focus-within {
  border-color: var(--primary);
  z-index: 2;
}

.pf-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-64);
  padding: 16px 20px 0;
  font-weight: 600;
  transition: color 0.3s;
}

.pf-field:focus-within label {
  color: var(--primary);
}

.pf-field input,
.pf-field textarea,
.pf-field select {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 20px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: inherit;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.pf-field input::placeholder,
.pf-field textarea::placeholder {
  color: var(--white-32);
}

.pf-field textarea {
  min-height: 120px;
  line-height: 1.6;
}

.pf-select-wrap {
  position: relative;
}

.pf-select-wrap::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--white-64);
  pointer-events: none;
  margin-top: 8px;
}

.pf-field select option {
  background: #1a1a1a;
  color: #fff;
}

/* Acción del formulario */
.form-premium-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 20px 0;
  flex-wrap: wrap;
}

.form-premium-action .tf-btn {
  flex-shrink: 0;
}

.form-legal-note {
  font-size: 12px;
  color: var(--white-64);
  line-height: 1.5;
  max-width: 260px;
}

.form-legal-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Decorador animado del fondo en info */
.contact-deco-ring {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(96,117,97,0.2);
  animation: spin-slow 20s linear infinite;
  pointer-events: none;
}
.contact-deco-ring::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(96,117,97,0.15);
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel-info {
    border-right: none;
    border-bottom: 1px solid var(--white-16);
    padding: 40px 32px;
  }
  .contact-panel-form {
    padding: 40px 32px;
  }
  .contact-badges {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .form-premium-action {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-legal-note {
    max-width: 100%;
  }
  .contact-panel-info,
  .contact-panel-form {
    padding: 32px 24px;
  }
  .contact-hero h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
  .contact-stats {
    gap: 24px;
  }
}

@media (min-width: 1440px) {
  .contact-panel-info {
    padding: 72px 64px;
  }
  .contact-panel-form {
    padding: 72px 64px;
  }
}


/* =====================================================
   SURVEY MULTI-PASO — ESTILO ODOO (LIGHT)
   ===================================================== */
.section-survey {
  padding: 80px 0 120px;
  background: #f0f3f5;
}

.survey-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 48px 56px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07), 0 4px 24px rgba(0,0,0,0.04);
}

/* Progress */
.survey-progress {
  height: 3px;
  background: #e4e8e4;
  border-radius: 99px;
  margin-bottom: 10px;
  overflow: hidden;
}
.survey-progress-bar {
  height: 100%;
  background: #607561;
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
  width: 16.67%;
}
.survey-step-indicator {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* Steps */
.survey-step { display: none; }
.survey-step.active { display: block; animation: stepIn 0.35s cubic-bezier(0.22,1,0.36,1); }
@keyframes stepIn {
  from { opacity:0; transform: translateY(10px); }
  to   { opacity:1; transform: translateY(0); }
}

.survey-step-header { margin-bottom: 24px; }
.survey-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #607561;
  font-weight: 700;
  margin-bottom: 10px;
  background: rgba(96,117,97,0.09);
  padding: 3px 10px;
  border-radius: 99px;
}
.survey-step-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a2218;
  margin: 0 0 8px;
  line-height: 1.2;
}
.survey-step-header p {
  font-size: 14px;
  color: rgba(0,0,0,0.45);
  margin: 0;
  line-height: 1.6;
}

/* ── Tarjetas con imagen (Odoo style) — Paso 1, 3, 4 ── */
.survey-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.survey-img-grid.col2 { grid-template-columns: 1fr 1fr; max-width: 300px; }

.survey-img-card { cursor: pointer; display: block; }
.survey-img-card input { position: absolute; opacity: 0; pointer-events: none; }

.survey-img-card-inner {
  border: 1.5px solid #dde1dc;
  border-radius: 8px;
  background: #fff;
  padding: 12px 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  height: 100%;
}
.survey-img-card:hover .survey-img-card-inner {
  border-color: #a2b3a3;
  background: #fafbfa;
}
.survey-img-card input:checked ~ .survey-img-card-inner {
  border-color: #607561;
  background: rgba(96,117,97,0.04);
  box-shadow: 0 0 0 1px #607561;
}

.survey-img-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 14px;
}
.survey-img-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a3328;
  line-height: 1.3;
}

/* Indicador radio */
.survey-img-card-indicator {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid #c8ccc8;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.survey-img-card input:checked ~ .survey-img-card-inner .survey-img-card-indicator {
  border-color: #607561;
  background: #607561;
}
.survey-img-card input:checked ~ .survey-img-card-inner .survey-img-card-indicator::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Indicador checkbox */
.survey-img-card-cb {
  width: 17px; height: 17px;
  border-radius: 4px;
  border: 1.5px solid #c8ccc8;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.survey-img-card input:checked ~ .survey-img-card-inner .survey-img-card-cb {
  border-color: #607561;
  background: #607561;
}
.survey-img-card input:checked ~ .survey-img-card-inner .survey-img-card-cb::after {
  content: '';
  position: absolute;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 3px; left: 3px;
  transform: rotate(-45deg);
}

.survey-img-card-photo {
  width: 100%;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #f0f3f0;
}
.survey-img-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.survey-img-card:hover .survey-img-card-photo img {
  transform: scale(1.04);
}
.survey-img-card-desc {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.38);
  line-height: 1.4;
}

/* ── Filas de opción (Odoo style) — Paso 2, 5 ── */
.survey-option-list {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #dde1dc;
  border-radius: 8px;
  overflow: hidden;
}
.survey-option-row {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid #e8ebe8;
  background: #fff;
  transition: background 0.15s;
  gap: 12px;
}
.survey-option-row:last-child { border-bottom: none; }
.survey-option-row:hover { background: #f5f7f5; }
.survey-option-row input { position: absolute; opacity: 0; pointer-events: none; }
.survey-option-row-label {
  font-size: 14px;
  color: #2a3328;
  flex: 1;
}
.survey-option-row:has(input:checked) { background: rgba(96,117,97,0.05); }

/* Indicador radio en fila */
.survey-option-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid #c8ccc8;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.survey-option-row input:checked ~ .survey-option-radio {
  border-color: #607561;
  background: #607561;
}
.survey-option-row input:checked ~ .survey-option-radio::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Indicador checkbox en fila */
.survey-option-checkbox {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid #c8ccc8;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.survey-option-row input:checked ~ .survey-option-checkbox {
  border-color: #607561;
  background: #607561;
}
.survey-option-row input:checked ~ .survey-option-checkbox::after {
  content: '';
  position: absolute;
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 3px; left: 3px;
  transform: rotate(-45deg);
}

/* ── Sección secundaria dentro de un paso ── */
.survey-secondary {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8ebe8;
}
.survey-secondary-label {
  font-size: 13px;
  font-weight: 600;
  color: #2a3328;
  margin-bottom: 14px;
}
.survey-optional {
  font-size: 11px;
  font-weight: 400;
  color: rgba(0,0,0,0.35);
}
.mt-32 { margin-top: 28px; }

/* ── Pills compactas ── */
.survey-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.survey-pill { cursor: pointer; display: inline-flex; }
.survey-pill input { position: absolute; opacity: 0; pointer-events: none; }
.survey-pill span {
  padding: 8px 16px;
  border-radius: 99px;
  border: 1.5px solid #d4d8d4;
  font-size: 13px;
  color: #3a4a38;
  background: #fff;
  transition: all 0.15s;
  font-weight: 500;
  white-space: nowrap;
}
.survey-pill:hover span { border-color: #607561; background: #f5f7f5; }
.survey-pill input:checked ~ span {
  border-color: #607561;
  background: rgba(96,117,97,0.08);
  color: #2a4a2a;
  box-shadow: 0 0 0 1px #607561;
}

/* ── Sub-sección ── */
.survey-sub-section { margin-bottom: 0; }
.survey-sub-label {
  font-size: 13px;
  font-weight: 600;
  color: #2a3328;
  margin-bottom: 12px;
}

/* ── Date input ── */
.survey-date-input {
  display: block;
  background: #fff;
  border: 1.5px solid #dde1dc;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  color: #2a3328;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.survey-date-input:focus { border-color: #607561; }

/* ── Number input (paso 4 Volumen) ── */
.survey-number-input {
  display: block;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border: 1.5px solid #dde1dc;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  color: #2a3328;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.survey-number-input:focus { border-color: #607561; }

/* ── Asterisco requerido ── */
.survey-req { color: #e53935; margin-left: 2px; }

/* ── Helper text bajo label ── */
.survey-helper-text {
  font-size: 12px;
  color: rgba(0,0,0,0.40);
  margin-top: -4px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* ── Textarea standalone (paso 5) ── */
.survey-textarea-field {
  display: block;
  width: 100%;
  background: #fff;
  border: 1.5px solid #dde1dc;
  border-radius: 6px;
  padding: 13px 14px;
  font-size: 14px;
  color: #2a3328;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.6;
}
.survey-textarea-field::placeholder { color: rgba(0,0,0,0.28); }
.survey-textarea-field:focus { border-color: #607561; }

/* ── Textarea fórmula ── */
.survey-formula-textarea { animation: stepIn 0.3s ease; }
.survey-formula-textarea textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 1.5px solid #dde1dc;
  border-radius: 6px;
  padding: 13px 14px;
  font-size: 14px;
  color: #2a3328;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.6;
}
.survey-formula-textarea textarea::placeholder { color: rgba(0,0,0,0.28); }
.survey-formula-textarea textarea:focus { border-color: #607561; }

/* ── Formulario de contacto ── */
.survey-contact-form { display: flex; flex-direction: column; gap: 0; }
.scf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.scf-field { display: flex; flex-direction: column; gap: 6px; }
.scf-field label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  font-weight: 600;
}
.scf-field input, .scf-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #d4d8d4;
  outline: none;
  padding: 9px 0;
  font-size: 15px;
  color: #2a3328;
  font-family: inherit;
  resize: none;
  transition: border-color 0.2s;
}
.scf-field input:focus, .scf-field textarea:focus { border-bottom-color: #607561; }
.scf-field input::placeholder, .scf-field textarea::placeholder { color: rgba(0,0,0,0.25); }
.scf-field textarea { min-height: 90px; line-height: 1.6; }
.scf-full { margin-bottom: 20px; }
.scf-legal { padding: 8px 0 0; }
.scf-check {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  font-size: 13px; color: rgba(0,0,0,0.5); line-height: 1.5;
}
.scf-check input[type=checkbox] { margin-top: 2px; accent-color: #607561; flex-shrink: 0; }
.scf-check a { color: #607561; text-decoration: underline; }

/* ── Navegación ── */
.survey-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e8ebe8;
}
.survey-btn-back, .survey-btn-next, .survey-btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}
.survey-btn-back {
  background: transparent;
  border: 1.5px solid #d4d8d4;
  color: rgba(0,0,0,0.45);
}
.survey-btn-back:hover { border-color: #607561; color: #607561; }
.survey-btn-next, .survey-btn-submit {
  background: #607561;
  color: #fff;
  margin-left: auto;
  box-shadow: 0 2px 10px rgba(96,117,97,0.22);
}
.survey-btn-next:hover, .survey-btn-submit:hover {
  background: #4d6050;
  box-shadow: 0 4px 18px rgba(96,117,97,0.32);
  transform: translateY(-1px);
}
.survey-btn-submit.loading { opacity: 0.7; pointer-events: none; }

/* ── Éxito ── */
.survey-success {
  text-align: center;
  padding: 60px 20px;
  animation: stepIn 0.5s cubic-bezier(0.22,1,0.36,1);
}
.survey-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(96,117,97,0.1);
  border: 1px solid rgba(96,117,97,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.survey-success h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: #1a2218; margin-bottom: 12px;
}
.survey-success p { color: rgba(0,0,0,0.5); font-size: 15px; line-height: 1.7; max-width: 440px; margin: 0 auto 24px; }
.survey-success-data { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 20px 0; }
.survey-success-tag {
  padding: 6px 14px; border-radius: 99px;
  background: rgba(96,117,97,0.1);
  border: 1px solid rgba(96,117,97,0.25);
  font-size: 12px; color: #607561;
  font-weight: 500; letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .survey-wrapper { padding: 32px 20px; }
  .survey-img-grid { grid-template-columns: 1fr 1fr; }
  .survey-img-grid.col2 { max-width: 100%; }
  .scf-row { grid-template-columns: 1fr; gap: 16px; }
  .survey-btn-back, .survey-btn-next, .survey-btn-submit { padding: 11px 18px; font-size: 11px; }
  .survey-pills { gap: 6px; }
  .survey-pill span { padding: 7px 13px; font-size: 12px; }
}
