/* ===========================================================
   Copo Zaragoza · Visita 50 Aniversario
   =========================================================== */

:root {
  --navy: #16324E;
  --navy-deep: #0F2438;
  --blue: #1A6FA3;
  --blue-light: #7FB3D3;
  --orange: #F08019;
  --bg: #F5F7FA;
  --text-body: #16324E;
  --text-muted: #44607E;
  --text-on-dark: #C7D6E4;
  --text-on-dark-muted: #9FB8CC;
  --text-on-dark-faint: #6E8CA6;
}

* { box-sizing: border-box; }

/* Varios componentes (la encuesta, entre otros) fijan su propio `display`
   (flex, grid…) con la misma especificidad que el `[hidden]` del navegador
   — sin esto, esa regla del componente gana y el elemento se queda visible
   aunque tenga el atributo `hidden`. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); }
a:hover { color: var(--orange); }

::selection { background: var(--orange); color: #fff; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.container--narrow {
  max-width: 760px;
}

/* ---------- shared hexagon shape ---------- */
.hex-shape {
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}

/* ---------- progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  z-index: 99;
  transition: width .08s linear;
}

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transform: none; }
}

/* ---------- floating scroll cue ---------- */
@keyframes czFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px 90px;
}

.hero-hex {
  position: absolute;
}
.hero-hex--1 {
  top: -60px; left: -80px;
  width: 280px; height: 300px;
  background: rgba(26,111,163,.08);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.hero-hex--2 {
  bottom: -40px; right: -90px;
  width: 340px; height: 360px;
  background: rgba(240,128,25,.10);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.hero-hex--3 {
  top: 18%; right: 8%;
  width: 70px; height: 76px;
  background: rgba(22,50,78,.07);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}

.hero-logo {
  width: clamp(240px, 64vw, 440px);
  height: auto;
  position: relative;
}

.hero-counter-wrap {
  position: relative;
  line-height: .85;
  margin-top: clamp(16px, 4vw, 36px);
}
.hero-counter {
  font-size: clamp(150px, 42vw, 340px);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--navy);
}
.hero-counter-dot {
  font-size: clamp(60px, 16vw, 130px);
  font-weight: 900;
  color: var(--orange);
}

.hero-years {
  margin: 8px 0 0;
  font-weight: 800;
  letter-spacing: .34em;
  font-size: clamp(14px, 3.6vw, 22px);
  color: var(--blue);
}

.hero-title {
  margin: clamp(20px, 5vw, 36px) 0 0;
  font-size: clamp(22px, 5.6vw, 38px);
  font-weight: 900;
  letter-spacing: -.01em;
  max-width: 700px;
  line-height: 1.15;
}

.hero-lead {
  margin: 14px 0 0;
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 84px; left: 50%;
  transform: translateX(-50%);
  animation: czFloat 2.4s ease-in-out infinite;
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}

/* ===========================================================
   GENERIC CONTENT SECTIONS
   =========================================================== */
.section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 20px;
}
.section--dark {
  background: var(--navy);
  color: #fff;
}

.bg-word {
  position: absolute;
  top: 10px; left: 0; right: 0;
  text-align: center;
  font-size: clamp(90px, 18vw, 220px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.08);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.bg-word--departamentos {
  font-size: clamp(52px, 13vw, 170px);
  -webkit-text-stroke: 1.5px rgba(255,255,255,.09);
}
.bg-word--planta {
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(80px, 20vw, 240px);
  -webkit-text-stroke: 1.5px rgba(26,111,163,.14);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow-bar {
  width: 34px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-text {
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 13px;
  color: var(--blue);
}
.eyebrow-text--light { color: var(--blue-light); }
.eyebrow-text--center { display: block; text-align: center; margin: 0 0 10px; letter-spacing: .3em; font-size: 13px; color: var(--orange); }

.h-giant {
  margin: 0 0 18px;
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
}
.h-giant--center { text-align: center; margin: 0 0 20px; line-height: 1; }

.lead {
  margin: 0 0 36px;
  font-size: clamp(15px, 4vw, 19px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
}
.lead--light { color: var(--text-on-dark); }
.lead--center { margin-left: auto; margin-right: auto; text-align: center; max-width: 560px; }

/* ---------- photo slot (fills with a real photo when one is provided) ---------- */
.photo-slot {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(22,50,78,.18);
}
.photo-slot--wide {
  height: clamp(220px, 45vw, 420px);
  margin-bottom: 44px;
}
.photo-slot-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-slot-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.25);
  color: var(--text-on-dark);
  text-align: center;
  padding: 20px;
}
.photo-slot-fallback-icon { font-size: 34px; opacity: .5; }
.photo-slot-fallback-note { font-size: 13px; font-weight: 600; }
.photo-slot-caption {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(13,27,42,.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* ---------- timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid rgba(255,255,255,.15);
  padding-left: 0;
  max-width: 640px;
  margin: 0;
  list-style: none;
}
.timeline-item {
  position: relative;
  padding: 0 0 28px 28px;
}
.timeline-item--last { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -8px; top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--blue);
}
.timeline-dot--orange { background: var(--orange); }
.timeline-year {
  display: block;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 900;
  color: var(--orange);
}
.timeline-text {
  color: var(--text-on-dark);
  line-height: 1.55;
}

.fine-print {
  margin: 28px 0 0;
  font-size: 12px;
  color: var(--text-on-dark-faint);
}

/* ---------- stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.stat-tile {
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 900;
  color: var(--orange);
}
.stat-label {
  font-size: 13px;
  color: var(--text-on-dark);
  letter-spacing: .08em;
  font-weight: 700;
}

/* ===========================================================
   DIVIDERS
   =========================================================== */
.divider {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(70px, 12vw, 130px) 20px;
  text-align: center;
}
.divider--dark {
  background: var(--navy);
  color: #fff;
}
.divider-title {
  position: relative;
  margin: 0;
  font-size: clamp(34px, 8vw, 64px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: inherit;
}
.divider-lead {
  position: relative;
  margin: 14px auto 0;
  max-width: 560px;
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
}
.divider-lead--light { color: var(--text-on-dark); }

/* ===========================================================
   PLANT SECTIONS (HR, Oval 1, Oval 18, MI 6, Mezclas)
   =========================================================== */
.plant-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) 20px;
}
.plant-section--white { background: #fff; }

.bg-number {
  position: absolute;
  top: -10px;
  font-size: clamp(150px, 32vw, 320px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(26,111,163,.16);
  user-select: none;
  pointer-events: none;
}
.bg-number--right { right: -14px; }
.bg-number--left { left: -14px; }
.bg-number--orange { -webkit-text-stroke: 2px rgba(240,128,25,.2); }

.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.plant-title {
  margin: 0 0 12px;
  font-size: clamp(44px, 10vw, 76px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
}
.plant-tagline {
  margin: 0 0 14px;
  font-size: clamp(17px, 4.4vw, 21px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
}
.plant-desc {
  margin: 0;
  font-size: clamp(15px, 3.8vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0D1B2A;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 50px rgba(22,50,78,.18);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* In fullscreen the video fills the whole screen, whose aspect ratio rarely
   matches the source — object-fit: cover would crop content off-screen, so
   switch to contain (letterboxed) only while fullscreen. Each vendor-prefixed
   pseudo-class needs its OWN rule: an unsupported one inside a comma-separated
   selector list invalidates the whole rule in browsers that don't recognize it
   (e.g. Chromium drops a rule containing :-moz-full-screen entirely). */
.video-frame video:fullscreen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-frame video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-frame video:-moz-full-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-frame video:-ms-fullscreen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 20px;
}
.video-fallback-icon {
  font-size: 34px;
  font-weight: 900;
  color: var(--orange);
}
.video-fallback strong { font-size: 16px; }
.video-fallback-note {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

/* ===========================================================
   DEPARTMENT SECTIONS
   =========================================================== */
.dept-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) 20px;
}
.dept-section--white { background: #fff; }

.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.dept-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 50px;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  flex-shrink: 0;
}
.dept-badge--blue { background: var(--blue); }
.dept-badge--orange { background: var(--orange); }
.dept-badge--navy { background: var(--navy); }

.dept-title {
  margin: 0 0 12px;
  font-size: clamp(36px, 8.5vw, 60px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
}
.dept-tagline {
  margin: 0 0 14px;
  font-size: clamp(17px, 4.4vw, 20px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
}
.dept-desc {
  margin: 0;
  font-size: clamp(15px, 3.8vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

/* ===========================================================
   GRACIAS
   =========================================================== */
.section--gracias {
  padding: clamp(80px, 14vw, 150px) 20px;
  text-align: center;
}
.gracias-hex {
  position: absolute;
}
.gracias-hex--1 {
  top: -40px; left: -60px;
  width: 240px; height: 260px;
  background: rgba(240,128,25,.12);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.gracias-hex--2 {
  bottom: -50px; right: -70px;
  width: 300px; height: 320px;
  background: rgba(26,111,163,.18);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.gracias-logo-card {
  display: inline-block;
  background: #fff;
  border-radius: 16px;
  padding: 22px 30px;
  margin-top: 36px;
}
.gracias-logo-card img {
  width: clamp(200px, 50vw, 320px);
  height: auto;
  display: block;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-dark-faint);
  padding: 28px 20px 96px;
  text-align: center;
  font-size: 13px;
}
.footer-text { margin: 0; }

/* ===========================================================
   FLOATING NAV
   =========================================================== */
.floating-nav {
  position: fixed;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 95;
  max-width: calc(100vw - 20px);
  overflow-x: auto;
  display: flex;
  gap: 4px;
  background: rgba(15,36,56,.94);
  backdrop-filter: blur(10px);
  padding: 7px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15,36,56,.35);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.floating-nav::-webkit-scrollbar { display: none; }

.nav-chip {
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 999px;
  white-space: nowrap;
  background: transparent;
  transition: background .15s ease;
}
.nav-chip.is-active {
  background: var(--orange);
}

/* ===========================================================
   MOBILE NAV (hamburger + drawer)
   =========================================================== */
.nav-toggle {
  display: none;
  position: fixed;
  bottom: 16px; right: 16px;
  z-index: 96;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(15,36,56,.4);
  cursor: pointer;
  padding: 0;
}
.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 97;
}
.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,36,56,.55);
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}
.nav-drawer-panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--navy);
  border-radius: 20px 20px 0 0;
  padding: 10px 10px calc(env(safe-area-inset-bottom, 0px) + 16px);
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 -10px 30px rgba(15,36,56,.35);
}
.nav-drawer.is-open .nav-drawer-panel {
  transform: translateY(0);
}
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 14px;
}
.nav-drawer-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 13px;
  text-transform: uppercase;
}
.nav-drawer-close {
  appearance: none;
  border: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 6px;
}
.nav-drawer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 12px;
  transition: background .15s ease;
}
.nav-drawer-link.is-active {
  background: var(--orange);
}

body.nav-drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .nav-drawer-backdrop,
  .nav-drawer-panel {
    transition: none;
  }
}

@media (max-width: 640px) {
  .floating-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ===========================================================
   BACK TO TOP
   =========================================================== */
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 96;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15,36,56,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .back-to-top { bottom: 80px; }
}

/* ===========================================================
   ENCUESTA (index2.html)
   =========================================================== */
.survey-section { text-align: left; }
.survey-title { font-size: clamp(28px, 6vw, 44px); }

.survey-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 420px;
}

.survey-question {
  border: none;
  margin: 0;
  padding: 0;
}
.survey-question legend {
  padding: 0 0 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-on-dark);
}

/* Truco CSS clásico: los radios van en orden 5,4,3,2,1 en el DOM y la fila
   se pinta invertida (row-reverse), así que hover/checked sobre una
   estrella pinta también todas las que están a su izquierda usando el
   selector de hermanos ~ (que solo mira hacia ADELANTE en el DOM). */
.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}
.star-rating input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.star-rating label {
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  color: rgba(255,255,255,.22);
  transition: color .12s ease;
  user-select: none;
}
.star-rating input:checked ~ label,
.star-rating input:hover ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--orange);
}
.star-rating input:focus-visible + label {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}

.survey-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.survey-field-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-on-dark);
}
.survey-field select {
  appearance: none;
  width: 100%;
  max-width: 280px;
  padding: 12px 40px 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background:
    var(--navy)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'><path d='M5.5 7.5l4.5 5 4.5-5z'/></svg>")
    no-repeat right 12px center / 16px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}
.survey-field select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.survey-field select option {
  color: #16324E;
  background-color: #fff;
}

.survey-submit {
  align-self: flex-start;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s ease, opacity .15s ease;
}
.survey-submit:hover { background: #d96e0f; }
.survey-submit:disabled { opacity: .6; cursor: not-allowed; }

.survey-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 13px;
  color: var(--text-on-dark-muted);
}
.survey-status.is-error { color: #ff9d7a; }

.survey-thanks {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  max-width: 420px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.survey-thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}
.survey-thanks p {
  margin: 0;
  font-weight: 700;
  color: #fff;
}
