@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pue-scan {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #ff7300;
  z-index: 9999;
  transition: width 0.3s ease;
}

.pue-hero {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: 100px 0 70px;
}
@media (max-width: 768px) {
  .pue-hero {
    padding: 36px 0 50px;
  }
}
.pue-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.1) 0%, transparent 70%);
  top: -300px;
  right: -300px;
  animation: pulse 4s ease-in-out infinite;
}
.pue-hero-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .pue-hero-content {
    padding: 0 15px;
  }
}
.pue-hero-text {
  z-index: 2;
}
.pue-hero-badge {
  display: inline-block;
  background: rgba(255, 115, 0, 0.2);
  color: #ff7300;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 115, 0, 0.3);
}
.pue-hero-title {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  hyphens: auto;
  -webkit-hyphens: auto;
  animation: fadeInUp 0.8s ease;
}
@media (max-width: 768px) {
  .pue-hero-title {
    font-size: 1.85rem;
    margin-bottom: 5px;
  }
}
.pue-hero-emphasis {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ff7300;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
@media (max-width: 768px) {
  .pue-hero-emphasis {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }
}
.pue-hero-description {
  font-size: 1.2rem;
  color: #ececec;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 30px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.pue-hero-description strong {
  color: #ff7300;
}
@media (max-width: 768px) {
  .pue-hero-description {
    font-size: 1rem;
    margin-bottom: 26px;
    line-height: 1.6;
  }
}
.pue-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 38px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.pue-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ececec;
  font-size: 0.95rem;
  font-weight: 500;
}
.pue-hero-trust i {
  color: #44ff44;
}
@media (max-width: 768px) {
  .pue-hero-trust {
    gap: 10px 18px;
    margin-bottom: 28px;
  }
  .pue-hero-trust span {
    font-size: 0.85rem;
  }
}
.pue-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.8s both;
}
@media (max-width: 768px) {
  .pue-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .pue-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
.pue-hero-cta .btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pue-hero-cta .btn-primary {
  background: #ff7300;
  color: #000000;
  border: 2px solid #ff7300;
}
.pue-hero-cta .btn-primary:hover {
  background: #cc5c00;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 115, 0, 0.3);
}
.pue-hero-cta .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.pue-hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.pue-hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 1s both;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .pue-hero-visual {
    margin-top: 40px;
  }
}

.pue-stat {
  text-align: center;
}
.pue-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7300;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .pue-stat-number {
    font-size: 1.75rem;
  }
}
.pue-stat-label {
  display: block;
  font-size: 0.9rem;
  color: #a8a8a8;
}
@media (max-width: 768px) {
  .pue-stat-label {
    font-size: 0.8rem;
  }
}

.pue-hero-plate-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pue-plate {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 4px solid #111;
  border-radius: 12px;
  overflow: hidden;
  width: 340px;
  max-width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.pue-plate-eu {
  background: #003399;
  width: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}
.pue-plate-eu-letter {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}
.pue-plate-eu::before {
  content: "★";
  position: absolute;
  margin-top: 8px;
  color: #ffcc00;
  font-size: 0.85rem;
}

.pue-plate-text {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 22px 18px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
  font-family: "Arial Narrow", Arial, sans-serif;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pue-plate-text {
    font-size: 1.6rem;
    padding: 18px 12px;
  }
}

.pue-plate-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 115, 0, 0.55), transparent);
  animation: pue-scan 2.8s ease-in-out infinite;
}

.pue-floating-card {
  position: absolute;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 115, 0, 0.3);
  border-radius: 15px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  z-index: 10;
}
.pue-floating-card i {
  color: #ff7300;
  font-size: 1.1rem;
}
.pue-floating-card.pue-card-1 {
  top: 0;
  left: -10%;
  animation: float 8s ease-in-out infinite;
}
.pue-floating-card.pue-card-2 {
  top: 45%;
  right: -12%;
  animation: float 6s ease-in-out infinite reverse;
  max-width: 220px;
  white-space: normal;
}
.pue-floating-card.pue-card-3 {
  bottom: 0;
  left: 0;
  animation: float 7s ease-in-out infinite;
}
@media (max-width: 768px) {
  .pue-floating-card {
    display: none;
  }
}

.pue-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}
.pue-section-title span {
  color: #ff7300;
}
@media (max-width: 768px) {
  .pue-section-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
    text-align: left;
  }
}

.pue-section-intro {
  font-size: 1.25rem;
  color: #ececec;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .pue-section-intro {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
  }
}

.pue-process {
  background: #1a1a1a;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pue-process {
    padding: 50px 15px;
  }
}
.pue-process::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff7300' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pue-process-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pue-process-header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .pue-process-header {
    margin-bottom: 40px;
  }
}

.pue-process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .pue-process-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pue-process-flow {
    grid-template-columns: 1fr;
  }
}

.pue-process-step {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}
.pue-process-step.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-process-step.animate-in[data-step="1"] {
  animation-delay: 0.1s;
}
.pue-process-step.animate-in[data-step="2"] {
  animation-delay: 0.2s;
}
.pue-process-step.animate-in[data-step="3"] {
  animation-delay: 0.3s;
}
.pue-process-step.animate-in[data-step="4"] {
  animation-delay: 0.4s;
}
.pue-process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 25px;
  right: -25px;
  color: #ff7300;
  font-size: 2rem;
  font-weight: 300;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .pue-process-step:not(:last-child)::after {
    display: none;
  }
}

.pue-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
  border: 2px solid rgba(255, 115, 0, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.pue-step-icon i {
  font-size: 2rem;
  color: #ff7300;
}
.pue-process-step:hover .pue-step-icon {
  transform: scale(1.1);
  border-color: #ff7300;
  background: rgba(255, 115, 0, 0.3);
}

.pue-step-content h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.pue-step-content p {
  color: #ececec;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pue-model {
  background: #000000;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-model {
    padding: 50px 15px;
  }
}
.pue-model-content {
  max-width: 1200px;
  margin: 0 auto;
}
.pue-model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .pue-model-grid {
    grid-template-columns: 1fr;
  }
}
.pue-model-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pue-model-card.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-model-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 115, 0, 0.3);
}
.pue-model-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
}
.pue-model-card p {
  color: #ececec;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .pue-model-card {
    padding: 30px 25px;
  }
}
.pue-model-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.pue-model-icon i {
  font-size: 1.75rem;
  color: #ff7300;
}

.pue-legal {
  background: #000000;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-legal {
    padding: 50px 15px;
  }
}
.pue-legal-content {
  max-width: 1200px;
  margin: 0 auto;
}
.pue-legal-header {
  text-align: center;
}
.pue-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .pue-legal-grid {
    grid-template-columns: 1fr;
  }
}
.pue-legal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pue-legal-card.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-legal-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 115, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.pue-legal-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
}
.pue-legal-card p {
  color: #ececec;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
.pue-legal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.pue-legal-icon i {
  font-size: 1.6rem;
  color: #ff7300;
}
.pue-legal-disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 800px;
  color: #a8a8a8;
  font-size: 0.85rem;
  text-align: center;
}
.pue-legal-disclaimer i {
  color: #ff7300;
}
@media (max-width: 768px) {
  .pue-legal-disclaimer {
    text-align: left;
  }
}

.pue-usecases {
  background: #1a1a1a;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-usecases {
    padding: 50px 15px;
  }
}
.pue-usecases-content {
  max-width: 1200px;
  margin: 0 auto;
}
.pue-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .pue-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pue-usecases-grid {
    grid-template-columns: 1fr;
  }
}

.pue-usecase-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pue-usecase-card.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-usecase-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 115, 0, 0.3);
}
.pue-usecase-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.pue-usecase-card p {
  color: #ececec;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.pue-usecase-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pue-usecase-icon i {
  font-size: 1.9rem;
  color: #ff7300;
}

.pue-faq-section {
  background: #1a1a1a;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-faq-section {
    padding: 50px 15px;
  }
}
.pue-faq-section .pue-faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.pue-faq-section .pue-faq-items {
  margin-top: 50px;
}
.pue-faq-section .pue-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pue-faq-section .pue-faq-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 115, 0, 0.3);
}
.pue-faq-section .pue-faq-item.active .pue-faq-answer {
  max-height: 400px;
  padding: 25px 30px;
}
@media (max-width: 768px) {
  .pue-faq-section .pue-faq-item.active .pue-faq-answer {
    padding: 20px 15px;
  }
}
.pue-faq-section .pue-faq-item:hover {
  border-color: rgba(255, 115, 0, 0.2);
}
.pue-faq-section .pue-faq-question-heading {
  margin: 0;
}
.pue-faq-section .pue-faq-question {
  width: 100%;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .pue-faq-section .pue-faq-question {
    padding: 20px 15px;
  }
}
.pue-faq-section .pue-faq-question-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .pue-faq-section .pue-faq-question-text {
    font-size: 1.1rem;
  }
}
.pue-faq-section .pue-faq-toggle {
  width: 40px;
  height: 40px;
  background: rgba(255, 115, 0, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.pue-faq-section .pue-faq-toggle i {
  color: #ff7300;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.pue-faq-section .pue-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pue-faq-section .pue-faq-answer p {
  color: #ececec;
  line-height: 1.8;
  margin: 0;
}

.pue-cta {
  background: linear-gradient(135deg, #000000, #2a1810);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pue-cta {
    padding: 50px 15px;
  }
}
.pue-cta::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.1) 0%, transparent 40%);
  top: -100%;
  left: -50%;
  animation: pulse 8s ease-in-out infinite;
}
.pue-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pue-cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .pue-cta-title {
    font-size: 2.2rem;
  }
}
.pue-cta-description {
  font-size: 1.25rem;
  color: #ececec;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pue-cta-description {
    font-size: 1.1rem;
  }
}
.pue-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pue-cta-buttons .btn {
  padding: 18px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pue-cta-buttons .btn-cta-primary {
  background: #ff7300;
  color: #000000;
  border: 2px solid #ff7300;
}
.pue-cta-buttons .btn-cta-primary:hover {
  background: rgb(255, 129, 25.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 115, 0, 0.4);
}
.pue-cta-buttons .btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.pue-cta-buttons .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.pue-cta-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.pue-cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ececec;
  font-size: 1rem;
}
.pue-cta-features span i {
  color: #44ff44;
  font-size: 1.2rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff7300;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: #ff8f33;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 115, 0, 0.4);
}
.scroll-to-top i {
  font-size: 1.2rem;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.pue-stages {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .pue-stages {
    margin-top: 50px;
  }
}
.pue-stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .pue-stages-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

.pue-stage {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pue-stage.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-stage:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 115, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.pue-stage-image {
  position: relative;
  background: #000000;
  line-height: 0;
}
.pue-stage-image img {
  width: 100%;
  height: auto;
  display: block;
}
.pue-stage-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  background: #ff7300;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 115, 0, 0.4);
  z-index: 2;
}
.pue-stage-text {
  padding: 26px 26px 30px;
}
.pue-stage-text h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.pue-stage-text p {
  color: #ececec;
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 18px;
}
.pue-stage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pue-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 115, 0, 0.1);
  border: 1px solid rgba(255, 115, 0, 0.25);
  border-radius: 25px;
  padding: 7px 16px;
  color: #ececec;
  font-size: 0.85rem;
}
.pue-stage-badge i {
  color: #ff7300;
}

.pue-compare {
  background: #1a1a1a;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-compare {
    padding: 50px 15px;
  }
}
.pue-compare-content {
  max-width: 1200px;
  margin: 0 auto;
}
.pue-compare-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .pue-compare-table-wrapper {
    border: none;
    overflow-x: visible;
  }
}
.pue-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  min-width: 900px;
}
.pue-compare-table th,
.pue-compare-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1.55;
}
.pue-compare-table thead th {
  background: rgba(255, 115, 0, 0.12);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid rgba(255, 115, 0, 0.3);
  white-space: nowrap;
}
.pue-compare-table thead th:first-child {
  white-space: normal;
}
.pue-compare-table tbody td {
  color: #ececec;
}
.pue-compare-table tbody td:first-child {
  color: #ffffff;
}
.pue-compare-table tbody td strong {
  color: #ffffff;
}
.pue-compare-table tbody tr {
  transition: background 0.2s ease;
}
.pue-compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
@media (max-width: 768px) {
  .pue-compare-table {
    min-width: 0;
  }
  .pue-compare-table thead {
    display: none;
  }
  .pue-compare-table tbody,
  .pue-compare-table tr,
  .pue-compare-table td {
    display: block;
    width: 100%;
  }
  .pue-compare-table tr {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 8px 0;
    overflow: hidden;
  }
  .pue-compare-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 18px;
  }
  .pue-compare-table td:last-child {
    border-bottom: none;
  }
  .pue-compare-table td::before {
    content: attr(data-label);
    display: block;
    color: #ff7300;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }
  .pue-compare-table td:first-child::before {
    display: none;
  }
  .pue-compare-table td:first-child {
    background: rgba(255, 115, 0, 0.1);
    font-size: 1.05rem;
  }
}
.pue-compare-highlight {
  background: rgba(255, 115, 0, 0.08) !important;
}
.pue-compare-highlight td:first-child {
  border-left: 3px solid #ff7300;
}
@media (max-width: 768px) {
  .pue-compare-highlight {
    border-color: rgba(255, 115, 0, 0.4) !important;
  }
  .pue-compare-highlight td:first-child {
    border-left: none;
  }
}
.pue-compare-tag {
  display: inline-block;
  background: #ff7300;
  color: #000000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}
.pue-compare-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 900px;
  margin: 35px auto 0;
  color: #a8a8a8;
  font-size: 0.9rem;
  line-height: 1.7;
}
.pue-compare-note i {
  color: #ff7300;
  margin-top: 3px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pue-compare-note {
    font-size: 0.85rem;
  }
}

.pue-scorecard {
  min-width: 0;
}
.pue-scorecard th,
.pue-scorecard td {
  vertical-align: middle;
}
.pue-scorecard th:first-child,
.pue-scorecard td:first-child {
  min-width: 190px;
}
@media (max-width: 768px) {
  .pue-scorecard td[data-label=Wirksamkeit],
  .pue-scorecard td[data-label=Kosten],
  .pue-scorecard td[data-label=Nutzerkomfort] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .pue-scorecard td[data-label=Wirksamkeit]::before,
  .pue-scorecard td[data-label=Kosten]::before,
  .pue-scorecard td[data-label=Nutzerkomfort]::before {
    margin-bottom: 0;
  }
}

.pue-pill {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.pue-pill--gut {
  background: rgba(74, 222, 128, 0.16);
  color: #5ee6a0;
}
.pue-pill--mittel {
  background: rgba(245, 179, 1, 0.16);
  color: #f5b301;
}
.pue-pill--schlecht {
  background: rgba(255, 107, 107, 0.15);
  color: #ff8f8f;
}

.pue-fazit {
  color: #a8a8a8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pue-legal-points {
  margin-top: 50px;
}
.pue-legal-points-title {
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .pue-legal-points-title {
    font-size: 1.3rem;
    text-align: left;
  }
}
.pue-legal-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 1024px) {
  .pue-legal-points-grid {
    grid-template-columns: 1fr;
  }
}

.pue-legal-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 22px 24px;
  opacity: 0;
  transform: translateY(30px);
}
.pue-legal-point.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-legal-point i {
  color: #ff7300;
  font-size: 1.4rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pue-legal-point p {
  color: #ececec;
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

.pue-leistung {
  background: #1a1a1a;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-leistung {
    padding: 50px 15px;
  }
}
.pue-leistung-content {
  max-width: 1000px;
  margin: 0 auto;
}
.pue-leistung-table-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .pue-leistung-table-wrapper {
    border: none;
  }
}
.pue-leistung-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
}
.pue-leistung-table th,
.pue-leistung-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pue-leistung-table thead th {
  background: rgba(255, 115, 0, 0.12);
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 115, 0, 0.3);
}
.pue-leistung-table tbody td {
  color: #ececec;
  line-height: 1.6;
}
.pue-leistung-table tbody td:first-child {
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}
.pue-leistung-table tbody td:first-child i {
  color: #ff7300;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.pue-leistung-table tbody tr {
  transition: background 0.2s ease;
}
.pue-leistung-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.pue-leistung-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .pue-leistung-table thead {
    display: none;
  }
  .pue-leistung-table tbody,
  .pue-leistung-table tr,
  .pue-leistung-table td {
    display: block;
    width: 100%;
  }
  .pue-leistung-table tr {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 16px;
  }
  .pue-leistung-table td {
    border-bottom: none;
  }
  .pue-leistung-table td:first-child {
    white-space: normal;
    font-size: 1.05rem;
    padding-bottom: 6px;
  }
  .pue-leistung-table td:last-child {
    padding-top: 0;
    color: #a8a8a8;
  }
  .pue-leistung-table td:last-child::before {
    content: attr(data-label);
    display: none;
  }
}

.pue-dashboard {
  background: #000000;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-dashboard {
    padding: 50px 15px;
  }
}
.pue-dashboard-content {
  max-width: 1200px;
  margin: 0 auto;
}
.pue-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .pue-dashboard-grid {
    grid-template-columns: 1fr;
  }
}
.pue-dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pue-dashboard-card.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-dashboard-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 115, 0, 0.3);
}
.pue-dashboard-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.pue-dashboard-card p {
  color: #ececec;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .pue-dashboard-card {
    padding: 30px 25px;
  }
}
.pue-dashboard-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.pue-dashboard-icon i {
  font-size: 1.75rem;
  color: #ff7300;
}

.pue-voraussetzungen {
  background: #1a1a1a;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-voraussetzungen {
    padding: 50px 15px;
  }
}
.pue-voraussetzungen-content {
  max-width: 1100px;
  margin: 0 auto;
}
.pue-voraussetzungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .pue-voraussetzungen-grid {
    grid-template-columns: 1fr;
  }
}

.pue-voraussetzung-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pue-voraussetzung-item.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-voraussetzung-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 115, 0, 0.3);
}
.pue-voraussetzung-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.pue-voraussetzung-item p {
  color: #ececec;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.pue-voraussetzung-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pue-voraussetzung-icon i {
  font-size: 1.9rem;
  color: #ff7300;
}

/* Implementation timeline (restored from /mehr-erfahren/) */
.pue-timeline {
  background: #000000;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-timeline {
    padding: 50px 15px;
  }
}
.pue-timeline-content {
  max-width: 1300px;
  margin: 0 auto;
}
.pue-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 55px;
}
@media (max-width: 1024px) {
  .pue-timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pue-timeline-steps {
    grid-template-columns: 1fr;
  }
}

.pue-timeline-step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 42px 26px 30px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pue-timeline-step.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.pue-timeline-step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 115, 0, 0.3);
}
.pue-timeline-step h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.pue-timeline-step p {
  color: #ececec;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.pue-timeline-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #ff7300;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(255, 115, 0, 0.4);
}

.pue-timeline-icon {
  width: 64px;
  height: 64px;
  margin: 8px auto 20px;
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pue-timeline-icon i {
  font-size: 1.7rem;
  color: #ff7300;
}

.pue-uebernahme {
  background: #000000;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .pue-uebernahme {
    padding: 50px 15px;
  }
}
.pue-uebernahme-content {
  max-width: 1200px;
  margin: 0 auto;
}
.pue-uebernahme-block {
  margin-top: 44px;
}
.pue-uebernahme-block:first-of-type {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .pue-uebernahme-block {
    margin-top: 40px;
  }
  .pue-uebernahme-block:first-of-type {
    margin-top: 24px;
  }
}
.pue-uebernahme .pue-timeline-steps {
  margin-top: 0;
}

.pue-sub-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ff7300;
  text-align: left;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pue-sub-title i {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .pue-sub-title {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
}

.pue-hero-cta-note {
  margin: 18px auto 0;
  color: #a8a8a8;
  font-size: 0.85rem;
}

.pue-phone-line {
  margin: 8px auto 0;
  color: #a8a8a8;
  font-size: 0.9rem;
}
.pue-phone-line a {
  color: #ececec;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 115, 0, 0.5);
}
.pue-phone-line a:hover {
  color: #ff7300;
}

.pue-model-note {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.7;
}
.pue-model-note a {
  color: #ff7300;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 115, 0, 0.4);
}
.pue-model-note a:hover {
  border-bottom-color: #ff7300;
}

.pue-usecases-note {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .pue-usecases-note {
    text-align: left;
  }
}

.pue-cta-band {
  background: linear-gradient(135deg, #2a1810, #000000);
  border-top: 1px solid rgba(255, 115, 0, 0.25);
  border-bottom: 1px solid rgba(255, 115, 0, 0.25);
  padding: 46px 20px;
}
.pue-cta-band-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.pue-cta-band-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pue-cta-band-text {
    font-size: 1.15rem;
  }
}

.pue-trust {
  background: #000000;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pue-trust-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 34px;
}
.pue-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ececec;
  font-size: 0.95rem;
  font-weight: 500;
}
.pue-trust-item i {
  color: #ff7300;
}
.pue-trust-item a {
  color: #ececec;
  text-decoration: underline;
}
.pue-trust-item a:hover {
  color: #ff7300;
}
@media (max-width: 768px) {
  .pue-trust-item {
    font-size: 0.9rem;
  }
}

.pue-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(17, 17, 17, 0.97);
  border-top: 1px solid rgba(255, 115, 0, 0.3);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.pue-sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.pue-sticky-cta-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
}
@media (max-width: 600px) {
  .pue-sticky-cta-text {
    display: none;
  }
}
.pue-sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
@media (max-width: 600px) {
  .pue-sticky-cta-actions {
    flex: 1;
  }
}

.pue-sticky-cta.visible ~ .scroll-to-top {
  bottom: 88px;
}

.pue-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 26px;
  transition: all 0.2s ease;
}
.pue-sticky-btn--primary {
  background: #ff7300;
  color: #000000;
  padding: 12px 24px;
}
.pue-sticky-btn--primary:hover {
  background: rgb(214.2, 96.6, 0);
}
@media (max-width: 600px) {
  .pue-sticky-btn--primary {
    flex: 1;
  }
}
.pue-sticky-btn--phone {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  flex: 0 0 auto;
}
.pue-sticky-btn--phone:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .pue-process-step,
  .pue-stage,
  .pue-model-card,
  .pue-legal-card,
  .pue-legal-point,
  .pue-dashboard-card,
  .pue-voraussetzung-item,
  .pue-timeline-step,
  .pue-usecase-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
.pue-main a:focus-visible,
.pue-main button:focus-visible,
.pue-main .btn:focus-visible,
.pue-sticky-cta a:focus-visible,
.scroll-to-top:focus-visible {
  outline: 3px solid #ffb066;
  outline-offset: 3px;
  border-radius: 4px;
}

.pue-dhero {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .pue-dhero {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.pue-dhero-text {
  text-align: left;
}

.pue-dhero-h1 {
  margin: 0 0 22px;
  line-height: 1.12;
}
.pue-dhero-h1 .pue-dhero-h1-main {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
}
.pue-dhero-h1 .pue-dhero-h1-accent {
  display: block;
  margin-top: 8px;
  font-size: 2.05rem;
  font-weight: 800;
  color: #ff7300;
}
@media (max-width: 768px) {
  .pue-dhero-h1 .pue-dhero-h1-main {
    font-size: 1.9rem;
  }
  .pue-dhero-h1 .pue-dhero-h1-accent {
    font-size: 1.55rem;
  }
}

.pue-dhero-mech {
  margin: 0 0 18px;
  color: #ff7300;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.pue-dhero-sub {
  max-width: 52ch;
  margin: 0 0 24px;
  color: #ececec;
  font-size: 1.1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .pue-dhero-sub {
    font-size: 1rem;
  }
}

.pue-dhero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pue-dhero-chip {
  padding: 6px 14px;
  border: 1px solid rgba(255, 115, 0, 0.35);
  border-radius: 20px;
  background: rgba(255, 115, 0, 0.08);
  color: #ececec;
  font-size: 0.82rem;
}

.pue-dhero-cta.pue-hero-cta {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pue-dhero-note {
  margin: 0;
  color: #a8a8a8;
  font-size: 0.85rem;
}

@keyframes hpx-live-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.35);
  }
  50% {
    transform: scale(0.82);
    opacity: 0.7;
    box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
  }
}
.hpx-dash {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
  background: linear-gradient(180deg, #171717 0%, #090909 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.68), 0 0 0 1px rgba(255, 115, 0, 0.08);
}
.hpx-dash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 18px;
  background: radial-gradient(circle at 82% 6%, rgba(255, 115, 0, 0.16), transparent 36%);
}
@media (max-width: 1024px) {
  .hpx-dash {
    max-width: none;
    margin-left: 0;
  }
}

.hpx-dash-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 16px;
  background: linear-gradient(180deg, #242424, #171717);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hpx-dash-bar .hpx-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.hpx-dash-bar .hpx-dot:nth-child(1) {
  background: #ff5f57;
}
.hpx-dash-bar .hpx-dot:nth-child(2) {
  background: #ffbd2e;
}
.hpx-dash-bar .hpx-dot:nth-child(3) {
  background: #28c840;
}
.hpx-dash-bar .hpx-dash-url {
  flex: 1;
  min-width: 0;
  height: 24px;
  margin-left: 12px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a8a8a8;
  font-family: "SFMono-Regular", "Courier New", monospace;
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hpx-dash-body {
  padding: 22px;
}

.hpx-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hpx-stat {
  min-height: 92px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hpx-stat .hpx-stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hpx-stat .hpx-stat-lbl {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: #a8a8a8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hpx-green {
  color: #4ade80 !important;
}

.hpx-orange {
  color: #ff7300 !important;
}

.hpx-feed-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 12px;
  color: #ececec;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hpx-feed-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: hpx-live-pulse 1.8s ease-in-out infinite;
}

.hpx-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.hpx-feed li {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}
.hpx-feed li:first-child {
  border-color: rgba(74, 222, 128, 0.26);
  background: rgba(74, 222, 128, 0.055);
}
.hpx-feed .hpx-plate {
  position: relative;
  width: max-content;
  min-width: 104px;
  padding: 5px 10px 5px 30px;
  background: #ededed;
  color: #111;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 #fff;
  font-family: "SFMono-Regular", "Courier New", monospace;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.hpx-feed .hpx-plate::before {
  content: "D";
  position: absolute;
  inset: 0 auto 0 0;
  width: 22px;
  display: grid;
  place-items: end center;
  padding-bottom: 3px;
  background: #003399;
  color: #fff;
  font-size: 0.56rem;
}
.hpx-feed .hpx-badge {
  justify-self: start;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hpx-feed .hpx-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.hpx-feed .hpx-ok {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}
.hpx-feed .hpx-warn {
  background: rgba(255, 115, 0, 0.16);
  color: #ff7300;
}
.hpx-feed .hpx-time {
  justify-self: end;
  color: #a8a8a8;
  font-size: 0.72rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/*# sourceMappingURL=parkraumueberwachung.css.map */
