/* ============================================================
   Kray IT Allgäu — Design System
   Farben: #89124e (Magenta) · #69C0DE (Blau)
   Font: Inter
   ============================================================ */

/* ── Reset & Basis ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CSS Variablen ─────────────────────────────────────────── */
:root {
  --primary:        #89124e;
  --primary-dark:   #6d0e3e;
  --primary-light:  rgba(137, 18, 78, 0.08);
  --secondary:      #69C0DE;
  --secondary-dark: #4eaace;
  --dark:           #0f172a;
  --dark-alt:       #1e293b;
  --text:           #334155;
  --text-light:     #64748b;
  --text-xlight:    #94a3b8;
  --bg:             #ffffff;
  --bg-alt:         #f8fafc;
  --border:         #e2e8f0;
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      20px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow:         0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.12);
  --max-w:          1200px;
  --nav-h:          72px;
}

/* ── Typografie ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text); line-height: 1.75; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(137,18,78,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(105,192,222,0.35);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark-alt);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: #fff; }
.nav__mobile .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(137,18,78,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(105,192,222,0.10) 0%, transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: auto, auto, 32px 32px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(137,18,78,0.15);
  border: 1px solid rgba(137,18,78,0.3);
  color: #e879a0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e879a0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}

.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease;
}
.hero__card:hover { border-color: rgba(137,18,78,0.4); }

.hero__card svg {
  width: 28px; height: 28px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.hero__card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hero__card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.hero__card--wide { grid-column: 1 / -1; }

/* ── Services ──────────────────────────────────────────────── */
.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg {
  width: 26px; height: 26px;
  color: var(--primary);
}

.service-card h3 { margin-bottom: 0.625rem; }
.service-card p  { font-size: 0.9375rem; color: var(--text-light); }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing { background: var(--bg-alt); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

/* featured styles now defined above in "gleiche Höhe" block */

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card__price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
}

.pricing-card__price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
}

.pricing-card__price .period {
  font-size: 0.875rem;
  color: var(--text-light);
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.pricing-card__features li svg {
  width: 18px; height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card--featured .btn { background: var(--primary); border-color: var(--primary); }

/* ── Why Kray IT ───────────────────────────────────────────── */
.why { background: var(--bg); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
}

.why-card__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card h3 { margin-bottom: 0.625rem; }
.why-card p  { font-size: 0.9375rem; color: var(--text-light); }

.why__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}

.why__stat {
  background: var(--bg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.why__stat .num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.why__stat p { font-size: 0.875rem; color: var(--text-light); }

/* ── Kontakt CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(105,192,222,0.2) 0%, transparent 60%);
  padding: 80px 0;
}

.cta-banner__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 1.125rem; margin-bottom: 2rem; }

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ── Kontakt Sektion ───────────────────────────────────────── */
.contact { background: var(--bg-alt); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
}

.contact__info h2 { margin-bottom: 1rem; }
.contact__info p  { color: var(--text-light); margin-bottom: 2rem; }

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__item-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__item-icon svg {
  width: 20px; height: 20px;
  color: var(--primary);
}

.contact__item span { font-size: 0.8125rem; color: var(--text-light); display: block; }
.contact__item strong { font-size: 0.9375rem; color: var(--dark); }

/* ── Formular ──────────────────────────────────────────────── */
.form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form__group--full { grid-column: 1 / -1; }

.form__group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.form__group input,
.form__group textarea,
.form__group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.2s ease;
  outline: none;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form__group textarea { resize: vertical; min-height: 130px; }

.form__submit {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form__success svg { width: 48px; height: 48px; color: #16a34a; margin: 0 auto 1rem; }
.form__success h3 { margin-bottom: 0.5rem; }
.form__success p { color: var(--text-light); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img { height: 32px; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.9375rem; max-width: 280px; line-height: 1.7; }

.footer__col h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col ul a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer__bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__bottom a:hover { color: #fff; }

/* ── Scroll-Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner      { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual     { display: none; }
  .services__grid   { grid-template-columns: repeat(2, 1fr); }
  .why__grid        { grid-template-columns: repeat(2, 1fr); }
  .why__stats       { grid-template-columns: repeat(2, 1fr); }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
  .footer__brand    { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: 90vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .services__grid   { grid-template-columns: 1fr; }
  .pricing__grid    { grid-template-columns: 1fr; }
  .why__grid        { grid-template-columns: 1fr; }
  .why__stats       { grid-template-columns: repeat(2, 1fr); }
  .contact__grid    { grid-template-columns: 1fr; }
  .form__grid       { grid-template-columns: 1fr; }
  .footer__grid     { grid-template-columns: 1fr; }
  .footer__bottom   { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why__stats { grid-template-columns: 1fr 1fr; }
  .form { padding: 1.5rem; }
}

/* ── Pricing: gleiche Höhe, Button immer unten ─────────────── */
.pricing-card {
  display: flex;
  flex-direction: column;
}
.pricing-card__features {
  flex: 1;
}
.pricing-card .btn {
  margin-top: auto;
}
/* Featured ohne scale (verhindert z-index-Überlappung mit Labels) */
.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light), var(--shadow-lg);
}

/* ── Pricing Divider ────────────────────────────────────────── */
.pricing__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 600;
}
.pricing__divider::before,
.pricing__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Modal ──────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.open { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.modal__header h3 { font-size: 1.25rem; }

.modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.modal__close:hover { color: var(--dark); background: var(--bg-alt); }

.modal__notice {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  background: rgba(105,192,222,0.1);
  border: 1px solid rgba(105,192,222,0.3);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}
.modal__notice svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.modal__notice a { color: var(--primary); font-weight: 600; }

.form__grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Turnstile ──────────────────────────────────────────────── */
.form__turnstile {
  margin-top: 1.25rem;
}
.form__turnstile-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ── Nav Ghost Button ──────────────────────────────────────── */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
  padding: 0.625rem 1.125rem;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ── Status Modal ──────────────────────────────────────────── */
.modal__box--status { max-width: 440px; }

.status-tiles { display: grid; gap: 0.5rem; }
.status-tile {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--text-xlight);
}
.status-dot.up   { background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.15); }
.status-dot.down { background: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.15); }
.status-name  { flex: 1; color: var(--text); font-weight: 500; }
.status-state { font-size: 0.8125rem; color: var(--text-light); }
.status-empty {
  color: var(--text-xlight);
  font-size: 0.9375rem;
  text-align: center;
  padding: 1rem;
}
.status-updated {
  font-size: 0.75rem;
  color: var(--text-xlight);
  text-align: center;
  margin-top: 0.875rem;
}

/* ── Pricing Section Labels & Tags ────────────────────────── */
.pricing__section-label {
  margin-bottom: 1.5rem;
}

.pricing__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  border: 2px solid;
}

.pricing__tag--book {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.3);
  color: #15803d;
}

.pricing__tag--contact {
  background: var(--primary-light);
  border-color: rgba(137, 18, 78, 0.3);
  color: var(--primary);
}

/* ── Pricing Grid Variants ─────────────────────────────────── */
.pricing__grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing__grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card__icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pricing-card__icon svg {
  width: 24px; height: 24px;
  color: var(--primary);
}

.pricing-card--enquiry {
  border-style: dashed;
}
.pricing-card--enquiry:hover {
  border-style: solid;
  border-color: var(--primary);
}

/* ── Partner Banner ─────────────────────────────────────────── */
.partner-banner {
  background: var(--dark-alt);
  padding: 32px 0;
  margin: 0;
}

.partner-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.partner-banner__icon {
  width: 48px; height: 48px;
  background: rgba(105,192,222,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-banner__icon svg {
  width: 24px; height: 24px;
  color: var(--secondary);
}

.partner-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.partner-banner__text strong {
  color: #fff;
  font-size: 1rem;
}
.partner-banner__text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
}
.partner-banner__text strong strong {
  color: var(--secondary);
}

.partner-banner__btn {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.partner-banner__btn:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Support FAB (Floating Action Button) ──────────────────── */
.support-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(137,18,78,0.4);
  transition: all 0.25s ease;
  z-index: 90;
  text-decoration: none;
}
.support-fab:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(137,18,78,0.5);
}
.support-fab svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .support-fab span { display: none; }
  .support-fab { padding: 1rem; border-radius: 50%; }

  .pricing__grid--2,
  .pricing__grid--3 { grid-template-columns: 1fr; }

  .partner-banner__inner { flex-direction: column; text-align: center; }
  .partner-banner__icon  { margin: 0 auto; }
}


/* ── Referenzen-Karussell (innerhalb #warum) ─────────────── */
.why__references {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.why__references-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.references-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.references-carousel__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: refScroll 32s linear infinite;
  padding: 1rem 0;
}

@keyframes refScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.75rem)); }
}

@media (hover: hover) {
  .references-carousel:hover .references-carousel__track {
    animation-play-state: paused;
  }
}

.ref-card {
  flex: 0 0 260px;
  display: block;
  position: relative;
  perspective: 1200px;
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.ref-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .ref-card:hover .ref-card__inner {
    transform: rotateY(180deg) scale(1.08);
  }
  .ref-card:hover {
    z-index: 2;
  }
}

.ref-card__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease;
}

.ref-card__face img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ref-card__face--back img {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.ref-card:hover .ref-card__face {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15), 0 16px 40px rgba(15, 23, 42, 0.10);
}

.ref-card__face--front {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.25rem 2.75rem 1.25rem;
}

.ref-card__face--front img {
  max-width: 80%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ref-card__name {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.01em;
}

.ref-card__face--back {
  -webkit-transform: rotateY(180deg) translateZ(0);
          transform: rotateY(180deg) translateZ(0);
}

.ref-card__face--back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Reduced motion: Karussell-Animation aus, Cards in Reihe */
@media (prefers-reduced-motion: reduce) {
  .references-carousel__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}


/* ── Cookie Consent Banner ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--dark);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
  pointer-events: none;
}
.cookie-banner.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-banner__text h3 {
  color: #fff;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.cookie-banner__text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}
.cookie-banner__text a {
  color: var(--secondary);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
  background: transparent;
}
.cookie-banner__actions .btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 600px) {
  .cookie-banner { bottom: 0.5rem; left: 0.5rem; right: 0.5rem; padding: 1.25rem; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
