/* Why Hotel Owners Choose Vistorio — page-specific (wo-) */

.wo-hero-title {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.wo-hero-title span {
  display: block;
  font-weight: 800;
  color: var(--ink);
}

.wo-hero-title span:nth-child(1) {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.wo-hero-title span:nth-child(2) {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--muted);
  font-weight: 700;
  margin-top: 0.4rem;
}

.wo-hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 30rem;
  line-height: 1.5;
}

.wo-hero-tagline em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}

.wo-band--calm {
  background: var(--page-muted);
}

.wo-band--dark {
  background: var(--ink);
  color: #fff;
}

.wo-band--dark .hp-eyebrow { color: rgba(255, 255, 255, 0.5); }
.wo-band--dark .hp-h2 { color: #fff; }
.wo-band--dark .hp-lede { color: rgba(255, 255, 255, 0.65); }

.wo-subhead {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--red);
  margin: -0.35rem 0 1rem;
  letter-spacing: -0.02em;
}

/* Hero devices */
.wo-devices {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wo-devices__desk {
  width: min(100%, 380px);
  z-index: 2;
}

.wo-devices__tablet {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 130px;
  background: #0a0e12;
  border-radius: 16px;
  padding: 0.4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.08);
  z-index: 3;
  animation: hp-float-card 8s ease-in-out infinite;
}

.wo-devices__phone {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 100px;
  background: #0a0e12;
  border-radius: 18px;
  padding: 0.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.08);
  z-index: 3;
  animation: hp-float-card 7s ease-in-out infinite;
  animation-delay: -2s;
}

.wo-mini-screen {
  background: var(--surface);
  border-radius: 10px;
  padding: 0.5rem;
  min-height: 90px;
}

.wo-mini-screen--dark {
  background: #0a0e12;
  min-height: 100px;
}

.wo-mini-screen strong {
  display: block;
  font-size: 0.55rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.wo-mini-screen--dark strong { color: #fff; }

.wo-mini-kpi {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.3rem 0.4rem;
  background: var(--page);
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.wo-mini-screen--dark .wo-mini-kpi {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 700px) {
  .wo-devices__tablet,
  .wo-devices__phone { display: none; }
}

/* Scroll-reveal questions */
.wo-q-scroll {
  display: grid;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.wo-q-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  opacity: 0.55;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.wo-q-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(177, 18, 38, 0.2);
  box-shadow: var(--shadow-sm);
}

.wo-q-item__q {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
}

.wo-q-item__widget {
  display: none;
  padding: 0.75rem 1rem;
  background: var(--ink);
  border-radius: 12px;
  color: #fff;
}

.wo-q-item.is-revealed .wo-q-item__widget { display: block; }

.wo-q-item__widget label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.15rem;
}

.wo-q-item__widget b {
  font-size: 1rem;
  font-weight: 800;
  color: var(--success);
}

.wo-q-item__widget span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Executive dashboard panel */
.wo-exec-panel {
  background: var(--ink);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-lg);
}

.wo-exec-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wo-exec-bar h3 {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 800;
}

.wo-exec-bar span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.wo-exec-bar span b { color: var(--success); }

.wo-exec-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .wo-exec-kpis { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 500px) {
  .wo-exec-kpis { grid-template-columns: repeat(2, 1fr); }
}

.wo-exec-kpi {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.85rem;
}

.wo-exec-kpi label {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.25rem;
}

.wo-exec-kpi strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.wo-exec-kpi strong.up { color: var(--success); }
.wo-exec-kpi strong.warn { color: var(--warn); }

.wo-exec-chart {
  height: 72px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1rem;
  overflow: hidden;
}

.wo-exec-chart svg { width: 100%; height: 100%; }

.wo-exec-notify {
  display: grid;
  gap: 0.45rem;
}

.wo-exec-notify div {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.wo-exec-notify div.alert { border-color: rgba(251, 191, 36, 0.3); color: var(--warn); }

.wo-exec-copy {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42rem;
}

/* Flow to dashboard */
.wo-flow-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .wo-flow-grid { grid-template-columns: repeat(2, 1fr); }
}

.wo-flow-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  opacity: 0.45;
  transition: opacity 0.4s var(--ease), background 0.4s, border-color 0.4s;
}

.wo-flow-row.is-visible {
  opacity: 1;
  background: var(--red-soft);
  border-color: rgba(177, 18, 38, 0.2);
}

.wo-flow-dept {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}

.wo-flow-arrow {
  font-size: 1rem;
  color: var(--red);
  font-weight: 800;
}

.wo-flow-target {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}

.wo-flow-row.is-visible .wo-flow-target { color: var(--red); }

/* Time loss cards */
.wo-time-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  margin-bottom: 2rem;
}

.wo-time-card {
  padding: 1.15rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.wo-time-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.wo-time-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.wo-time-resolve {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.5;
}

/* Procurement workflow */
.wo-proc-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.wo-proc-step {
  padding: 0.6rem 0.9rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.4;
  transition: opacity 0.35s var(--ease), background 0.35s;
}

.wo-proc-step.is-visible {
  opacity: 1;
  background: var(--red-soft);
  border-color: rgba(177, 18, 38, 0.25);
}

.wo-proc-step--hub {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.wo-proc-step--hub.is-visible { background: var(--red); border-color: var(--red); }

.wo-proc-arrow { font-size: 0.85rem; color: var(--muted); font-weight: 700; }

/* Mobile executive */
.wo-mobile-exec {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .wo-mobile-exec { grid-template-columns: 1fr 1fr; }
}

.wo-phones-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wo-phone-exec {
  width: 155px;
  background: #0a0e12;
  border-radius: 22px;
  padding: 0.45rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.wo-phone-exec--2 { transform: translateY(1.25rem); }

.wo-phone-exec__screen {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.wo-phone-exec__head {
  padding: 0.7rem;
  background: var(--ink);
  color: #fff;
}

.wo-phone-exec__head strong {
  display: block;
  font-size: 0.68rem;
}

.wo-phone-exec__head span {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
}

.wo-phone-exec__body { padding: 0.6rem; }

.wo-phone-exec__row {
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.35rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 600;
}

.wo-mobile-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.wo-mobile-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}

.wo-mobile-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

/* Intelligence cards */
.wo-intel-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .wo-intel-grid { grid-template-columns: repeat(2, 1fr); }
}

.wo-intel {
  padding: 1.25rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  border-left: 3px solid var(--red);
}

.wo-intel__tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.wo-intel p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.wo-intel span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Scorecards */
.wo-score-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.wo-score {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.wo-score label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.wo-score strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.wo-score-bar {
  height: 6px;
  background: var(--page);
  border-radius: 999px;
  overflow: hidden;
}

.wo-score-bar i {
  display: block;
  height: 100%;
  background: var(--red);
  border-radius: 999px;
  width: 0;
  transition: width 1s var(--ease);
}

.wo-score.is-visible .wo-score-bar i { width: var(--wo-pct, 70%); }

.wo-score small {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--success);
}

/* Growth journey */
.wo-growth {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
}

.wo-growth-step {
  flex: 1 1 8rem;
  max-width: 10rem;
  padding: 1.15rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  opacity: 0.45;
  transition: opacity 0.4s var(--ease), background 0.4s, border-color 0.4s;
}

.wo-growth-step.is-visible {
  opacity: 1;
  background: var(--red-soft);
  border-color: rgba(177, 18, 38, 0.2);
}

.wo-growth-step__num {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 auto 0.55rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.wo-growth-step.is-visible .wo-growth-step__num { background: var(--red); }

.wo-growth-step strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.wo-growth-arrow {
  align-self: center;
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 700px) {
  .wo-growth-arrow { display: none; }
  .wo-growth-step { max-width: 100%; flex: 1 1 100%; }
}

/* Leadership benefits */
.wo-benefits {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
}

.wo-benefit {
  padding: 1.25rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.wo-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(177, 18, 38, 0.25);
}

.wo-benefit__icon { font-size: 1.4rem; margin-bottom: 0.5rem; }

.wo-benefit strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}

/* Final invitation */
.wo-invite {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--ink);
  text-align: center;
}

.wo-invite .hp-h2 { color: #fff; }
.wo-invite .hp-lede { color: rgba(255, 255, 255, 0.65); }
