@import "./tailwind.css";

/* =============================================
   ProWeb Solutions – Shared Stylesheet
   ============================================= */

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #050B18;
  color: #E2E8F0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anchor offset for fixed nav */
[id] { scroll-margin-top: 80px; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #050B18; }
::-webkit-scrollbar-thumb { background: #2F80ED; border-radius: 2px; }

/* ==============================================
   PAGE LOADER
   ============================================== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #050B18;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), visibility 0.55s;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  animation: loader-breathe 1.8s ease-in-out infinite;
}

.loader-bar-wrap {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, #2F80ED, #32F08C);
  border-radius: 999px;
  animation: loader-progress 1.2s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes loader-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes loader-progress {
  0% { width: 0%; }
  60% { width: 75%; }
  100% { width: 100%; }
}

/* ==============================================
   GRADIENT TEXT
   ============================================== */
.text-gradient {
  background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 50%, #32F08C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==============================================
   GLASS CARD
   ============================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.glass-card-hover {
  transition: background 0.28s ease, border-color 0.28s ease,
              transform 0.28s ease, box-shadow 0.28s ease;
}
.glass-card-hover:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(47, 128, 237, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(47, 128, 237, 0.1);
}

/* ==============================================
   NAVBAR
   ============================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.35s ease;
}

#navbar nav {
  background: rgba(5, 11, 24, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled nav {
  background: rgba(5, 11, 24, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-link {
  color: rgba(226, 232, 240, 0.58);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  position: relative;
  transition: color 0.22s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #2F80ED, #56CCF2);
  border-radius: 1px;
  transition: width 0.28s ease;
}
.nav-link:hover, .nav-link.active { color: #E2E8F0; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ==============================================
   BUTTONS
   ============================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2F80ED, #1a6fd0);
  color: #fff;
  padding: 0.8rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s;
  box-shadow: 0 3px 18px rgba(47, 128, 237, 0.38);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transition: left 0.45s ease;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(47, 128, 237, 0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; pointer-events: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.055);
  color: #E2E8F0;
  padding: 0.8rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(47, 128, 237, 0.4);
  transform: translateY(-2px);
}

/* ==============================================
   SECTION LABEL CHIP
   ============================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: none;
  border-left: 2px solid #2F80ED;
  border-radius: 0;
  padding: 0.15rem 0 0.15rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.72);
  letter-spacing: 0.01em;
  text-transform: none;
}

/* ==============================================
   TRUST BADGE
   ============================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.78);
}

.profile-card-wrap {
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.profile-card {
  padding: 0;
  overflow: hidden;
  border-color: rgba(47, 128, 237, 0.22);
}

.profile-card__media {
  position: relative;
  height: clamp(300px, 54vw, 400px);
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  display: block;
  object-fit: cover;
  object-position: center 12%;
}

.profile-card__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 58%,
    rgba(5, 11, 24, 0.25) 78%,
    rgba(5, 11, 24, 0.75) 92%,
    rgba(5, 11, 24, 0.95) 100%
  );
  pointer-events: none;
}

.profile-card__body {
  position: relative;
  margin-top: 0;
  padding: 1.35rem 1.5rem 1.5rem;
  z-index: 1;
  background: rgba(5, 11, 24, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-card__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
}

.profile-card__role {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.72);
  margin: 0 0 1.1rem;
  line-height: 1.45;
}

.profile-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.profile-card__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.profile-card__link:hover {
  color: #fff;
}

.profile-card__link--static {
  cursor: default;
}

.status-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.55);
}

.case-study-grid {
  width: 100%;
  min-width: 0;
}

.case-study-grid > * {
  min-width: 0;
  max-width: 100%;
}

.case-study-card {
  overflow: hidden;
}

.portfolio-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 16 / 10;
}

.portfolio-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

a.glass-card .portfolio-frame,
.glass-card-hover .portfolio-frame {
  margin-bottom: 0;
}

/* ==============================================
   TRUSTLOCAL REVIEWS
   ============================================== */
.trustlocal-widget-wrap {
  max-width: 920px;
  margin: 0 auto;
  min-height: 120px;
  overflow: hidden;
}

.trustlocal-widget-wrap .trustlocal-review-widget {
  width: 100%;
  display: block;
}

/* Trustlocal: „Mehr lesen“-Modal an Dark Mode der Seite anpassen */
#trustlocal-review-modal {
  background: rgba(5, 11, 24, 0.88) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#trustlocal-review-modal .scss-widget__modal,
#trustlocal-review-modal .scss-widget__modalInitial,
#trustlocal-review-modal .scss-widget__modalContent,
#trustlocal-review-modal .scss-widget__wrapper {
  background: #0c1424 !important;
  color: #e2e8f0 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

#trustlocal-review-modal .scss-widget__title,
#trustlocal-review-modal .scss-widget__reviewText,
#trustlocal-review-modal .scss-widget__text,
#trustlocal-review-modal .scss-widget__review,
#trustlocal-review-modal p {
  color: rgba(226, 232, 240, 0.9) !important;
}

#trustlocal-review-modal .scss-widget__subtitle,
#trustlocal-review-modal .scss-widget__reviewSourcesContainer,
#trustlocal-review-modal .scss-widget__additionalSourcesText {
  color: rgba(226, 232, 240, 0.55) !important;
}

#trustlocal-review-modal .scss-widget__close {
  color: rgba(226, 232, 240, 0.75) !important;
}

#trustlocal-review-modal .scss-widget__close:hover {
  color: #fff !important;
}

#trustlocal-review-modal .scss-widget__link {
  color: #56ccf2 !important;
}

/* ==============================================
   BACKGROUND ORBS
   ============================================== */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

@keyframes orb1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(35px,-35px) scale(1.06); }
  70% { transform: translate(-22px, 22px) scale(0.95); }
}
@keyframes orb2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  35% { transform: translate(-45px, 28px) scale(1.1); }
  75% { transform: translate(28px,-18px) scale(0.92); }
}
@keyframes orb3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(22px, 30px) scale(1.07); }
}
.orb-1 { animation: orb1 15s ease-in-out infinite; }
.orb-2 { animation: orb2 20s ease-in-out infinite; }
.orb-3 { animation: orb3 12s ease-in-out infinite; }

/* ==============================================
   SCROLL REVEAL
   ============================================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.1),
              transform 0.7s cubic-bezier(.22,.68,0,1.1);
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==============================================
   CHECK LIST
   ============================================== */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.28rem 0;
  font-size: 0.9375rem;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.55;
}
.check-icon {
  width: 17px; height: 17px; min-width: 17px;
  border-radius: 50%;
  background: #10B981;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.check-icon svg { width: 9px; height: 9px; }

/* ==============================================
   DIVIDER
   ============================================== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.035) 40%,
    rgba(255,255,255,0.035) 60%,
    transparent 100%);
  max-width: 1100px;
  margin: 0 auto;
  border: none;
}

/* ==============================================
   HAMBURGER + MOBILE MENU
   ============================================== */
.hamburger-line {
  display: block;
  height: 2px;
  background: #E2E8F0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open .line-1 { transform: translateY(8px) rotate(45deg); }
.hamburger.open .line-2 { opacity: 0; transform: scaleX(0); }
.hamburger.open .line-3 { transform: translateY(-8px) rotate(-45deg); }

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,.68,0,1.1);
}
#mobile-menu.open { max-height: 600px; }

/* ==============================================
   FAQ ACCORDION
   ============================================== */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(.22,.68,0,1.1);
}
.faq-content.open { max-height: 320px; }
.faq-chevron {
  transition: transform 0.32s ease;
  flex-shrink: 0;
  color: #56CCF2;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ==============================================
   FORM INPUTS
   ============================================== */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.75rem;
  color: #E2E8F0;
  padding: 0.82rem 1.05rem;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(226,232,240,0.27); }
.form-input:focus {
  outline: none;
  border-color: #2F80ED;
  background: rgba(47,128,237,0.07);
  box-shadow: 0 0 0 3px rgba(47,128,237,0.12);
}
.form-input.error {
  border-color: rgba(239,68,68,0.48);
  background: rgba(239,68,68,0.05);
}
.form-label {
  display: block;
  font-size: 0.865rem;
  font-weight: 500;
  color: rgba(226,232,240,0.55);
  margin-bottom: 0.42rem;
}
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2356CCF2' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-color: rgba(255,255,255,0.045);
  padding-right: 2.6rem;
}
select.form-input option { background: #0f1424; color: #E2E8F0; }

/* Custom DSGVO checkbox */
.custom-checkbox {
  width: 19px; height: 19px; min-width: 19px;
  background: rgba(255,255,255,0.045);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 2px;
  flex-shrink: 0;
}
.custom-checkbox.checked {
  background: rgba(47,128,237,0.18);
  border-color: #2F80ED;
}
.custom-checkbox .tick { display: none; }
.custom-checkbox.checked .tick { display: block; }

/* ==============================================
   PRICING POPULAR
   ============================================== */
.pricing-popular {
  background: linear-gradient(145deg,rgba(47,128,237,0.11),rgba(86,204,242,0.06));
  border: 1px solid rgba(47,128,237,0.35);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.pricing-popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #2F80ED, #56CCF2, transparent);
}

/* ==============================================
   ICON BOX
   ============================================== */
.icon-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.feature-icon {
  margin-bottom: 0.75rem;
}

.feature-icon--center {
  margin-left: auto;
  margin-right: auto;
}

.icon-box--sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.badge--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #32F08C;
}

.stat-number--star {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ==============================================
   GLOW DOT (availability)
   ============================================== */
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(50,240,140,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(50,240,140,0); }
}
.glow-dot {
  width: 8px; height: 8px; min-width: 8px;
  border-radius: 50%;
  background: #32F08C;
  animation: glow-pulse 2.2s ease-in-out infinite;
}

/* ==============================================
   STAT NUMBER
   ============================================== */
.stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

/* ==============================================
   HERO
   ============================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 55%, rgba(47,128,237,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 82% 22%, rgba(86,204,242,0.09) 0%, transparent 40%),
    radial-gradient(ellipse at 58% 88%, rgba(50,240,140,0.07) 0%, transparent 38%),
    #050B18;
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 15%, transparent 72%);
}

/* ==============================================
   PORTFOLIO PLACEHOLDER
   ============================================== */
.portfolio-placeholder {
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  background: linear-gradient(135deg,rgba(47,128,237,0.08),rgba(86,204,242,0.04));
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ==============================================
   PROSE (Blog content)
   ============================================== */
.prose h2 {
  font-size: 1.5rem; font-weight: 700;
  color: #fff; margin: 2rem 0 0.85rem;
  line-height: 1.3;
}
.prose h3 {
  font-size: 1.2rem; font-weight: 600;
  color: rgba(226,232,240,0.9);
  margin: 1.5rem 0 0.6rem; line-height: 1.35;
}
.prose p {
  color: rgba(226,232,240,0.68);
  line-height: 1.85; margin-bottom: 1.1rem;
  font-size: 1rem;
}
.prose ul {
  list-style: none; padding: 0; margin: 0.8rem 0 1.2rem;
}
.prose ul li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  color: rgba(226,232,240,0.7);
  padding: 0.28rem 0; font-size: 0.97rem; line-height: 1.6;
}
.prose ul li::before {
  content: '';
  width: 6px; height: 6px; min-width: 6px;
  background: #2F80ED;
  border-radius: 50%;
  margin-top: 9px;
}
.prose strong { color: rgba(226,232,240,0.92); font-weight: 600; }
.prose a { color: #56CCF2; text-decoration: underline; text-underline-offset: 3px; }

/* ==============================================
   PAGE HEADER (for subpages)
   ============================================== */
.page-header {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  background: #050B18;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 22% 55%, rgba(47,128,237,0.11) 0%, transparent 68%),
    radial-gradient(ellipse 55% 45% at 82% 28%, rgba(86,204,242,0.06) 0%, transparent 68%);
}

.page-header > .container {
  position: relative;
  z-index: 1;
}

/* ==============================================
   FOOTER
   ============================================== */
#site-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(5,11,24,0.6) 10%, #020710 100%);
  position: relative; z-index: 10;
}
.footer-link {
  color: rgba(226,232,240,0.4);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #E2E8F0; }

button.footer-link.pws-footer-cookie-btn:hover {
  color: #E2E8F0;
}

/* ==============================================
   UTILITY
   ============================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Kleine Utility-Bridge für bestehende Tailwind-Klassen im Markup */
.scroll-smooth { scroll-behavior: smooth; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 1024px) {
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* Tailwind-kompatibel: .hidden darf nicht von Inline-styles überschrieben werden */
.hidden:not(#page-loader) {
  display: none !important;
}

.form-alert {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  align-items: center;
  gap: 0.625rem;
}

.form-alert.is-visible {
  display: flex;
}

.form-alert--success {
  background: rgba(50, 240, 140, 0.09);
  border: 1px solid rgba(50, 240, 140, 0.22);
}

.form-alert--success p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #32f08c;
  margin: 0;
}

.form-alert--error {
  background: rgba(239, 68, 68, 0.09);
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.form-alert--error p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f87171;
  margin: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
