/* 
 * Talvoss - Monochrome AI Design
 * Modern Architecture Website Styles
 */


:root {
  --ink: #0F0F0F;
  --cream: #FAFAF8;
  --orange: #FF6B35;
  --navy: #1A2332;
  --slate: #64748B;
  --green: #10B981;
  --border: rgba(15,15,15,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.fade-in { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--orange); }
.nav-cta {
  background: var(--ink);
  color: white;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15,15,15,0.15);
}

/* ── HERO ── */

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}
.hero-badge::before {
  content: '✨';
  font-size: 1rem;
}
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.hero-p {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%) !important;
  color: white !important;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.2) !important;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-primary::after { content: '→'; font-size: 1.1rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--ink);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-secondary::after { content: '↓'; }


.hero-demo {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(15,15,15,0.08);
  overflow: hidden;
}
.demo-browser {
  background: #F8F9FA;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
}
.demo-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--slate);
  margin-left: auto;
}
.demo-iframe {
.demo-iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  color: var(--slate);
  transition: all 0.2s;
}
.lang-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.lang-btn.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ── TRUST BAR ── */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
/* Trust bar styles moved to inline */

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 0;
  background: white;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-p {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.step {
  text-align: center;
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #1a1a2e, transparent);
  z-index: -1;
}
.step:last-child::before { display: none; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: white;
  border-radius: 50%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── PRICING ── */

.pricing .section-label { color: var(--orange); }
.pricing .section-h2 { color: white; }
.pricing .section-p { color: rgba(255,255,255,0.7); }
.pricing-card {
  max-width: 600px;
  margin: 3rem auto 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-price span {
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
}
.pricing-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}
.pricing-features {
  list-style: none;
  margin: 2.5rem 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: white;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
}
.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,53,0.3);
}
.pricing-cta::after { content: '→'; }
.pricing-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ── FAQ ── */
.faq {
  padding: 6rem 0;
  background: white;
}
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.faq-a {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ── CTA ── */

.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.cta .btn-primary {
  background: white;
  color: var(--orange);
}
.cta .btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}

/* ── FOOTER ── */

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: white;
}
.footer-logo span { color: var(--orange); }
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .step::before { display: none; }
  .nav-cta { font-size: 0.85rem; padding: 0.6rem 1.25rem; }
}

/* ── MODAL ── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.modal-header p {
  color: var(--slate);
  font-size: 0.95rem;
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate);
  padding: 0.5rem;
  line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-body {
  padding: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.5rem;
}
.form-submit {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--green);
}
.form-success p {
  color: var(--slate);
  margin-bottom: 1.5rem;
}



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



.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important;
}



@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 4 - 8rem));
  }
}

.testimonial-slider-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px !important;
    max-width: 280px !important;
  }
  
  @keyframes scroll-testimonials {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 4 - 8rem));
    }
  }
}



/* ============================================
   UTILITY CLASSES - Replace Inline Styles
   ============================================ */

/* Backgrounds */
.bg-dark-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%);
}

.bg-black-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%);
}

.bg-white {
  background: white;
}

.bg-cream {
  background: var(--cream);
}

/* Sections with bubbles */
.section-with-bubbles {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%);
}

/* Icon circles - black gradient */
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}

/* Icon squares - black gradient */
.icon-square {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3), 0 0 15px rgba(255,255,255,0.1);
}

/* Avatar circles - black gradient */
.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.avatar-circle-lg {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

/* Badge - Green */
.badge-green {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  color: #059669;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Badge - Gray */
.badge-gray {
  display: inline-block;
  background: rgba(128,128,128,0.15);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(128,128,128,0.3);
  font-size: 0.85rem;
  color: #1a1a2e;
  font-weight: 600;
}

/* Flex utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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




/* ============================================
   BLACK GRADIENT ELEMENTS - PERMANENT
   ============================================ */

/* All circles and icons - BLACK */
.circle-black,
[class*="avatar-circle"],
.testimonial-card [style*="border-radius:50%"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
}

/* Icon squares - BLACK */
.icon-black,
.trust-item [style*="border-radius:12px"],
.trust-item [style*="border-radius:20px"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3), 0 0 15px rgba(255,255,255,0.1) !important;
}

/* Step circles (1, 2, 3) - BLACK */
[style*="width:80px"][style*="border-radius:50%"],
[style*="width:80px"][style*="border-radius:20px"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1) !important;
}

/* Badges - ALL GREEN */
[style*="Null Risiko"],
[style*="Blitzschnell"],
[style*="Zero Risk"],
[style*="Lightning Fast"] {
  background: rgba(16,185,129,0.1) !important;
  color: #059669 !important;
}

/* Urgency bar - GRAY with BLACK text */
[style*="23 Architekten"],
[style*="architects this week"] {
  background: rgba(128,128,128,0.15) !important;
  color: #1a1a2e !important;
  border: 1px solid rgba(128,128,128,0.3) !important;
}

/* Pricing section - BLACK with spacing */


/* CTA section - BLACK */




/* ============================================
   FINAL FIXES - ALL IN CSS
   ============================================ */

/* 1. ALL BADGES EXACTLY THE SAME - GREEN */
.badge-green,
[style*="Null Risiko"],
[style*="Blitzschnell"],
[style*="Zero Risk"], 
[style*="Lightning Fast"],
[style*="€0"],
[style*="Kostenlos"],
div[style*="display:inline-block"][style*="border-radius:50px"][style*="padding:0.5rem 1rem"] {
  background: rgba(16,185,129,0.1) !important;
  color: #059669 !important;
}

/* 2. BUBBLES - ENSURE THEY ARE VISIBLE */
.pricing-bubble {
  position: absolute;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: float-bubble 20s ease-in-out infinite;
  z-index: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 50%, transparent 100%);
  box-shadow: 0 0 30px rgba(255,255,255,0.1), inset 0 0 20px rgba(255,255,255,0.05);
}

/* Bubble sizes */
.bubble-1 { width: 350px; height: 350px; top: 10%; left: 5%; animation-delay: 0s; }
.bubble-2 { width: 280px; height: 280px; top: 50%; right: 8%; animation-delay: -5s; }
.bubble-3 { width: 220px; height: 220px; bottom: 15%; left: 12%; animation-delay: -10s; }
.bubble-4 { width: 300px; height: 300px; top: 25%; right: 15%; animation-delay: -3s; }
.bubble-5 { width: 180px; height: 180px; top: 60%; left: 20%; animation-delay: -12s; }
.bubble-6 { width: 250px; height: 250px; bottom: 20%; right: 20%; animation-delay: -7s; }
.bubble-7 { width: 160px; height: 160px; top: 15%; left: 35%; animation-delay: -15s; }
.bubble-8 { width: 290px; height: 290px; bottom: 30%; left: 40%; animation-delay: -9s; }

@keyframes float-bubble {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(40px, -40px) scale(1.15); opacity: 0.5; }
  50% { transform: translate(-30px, 30px) scale(0.85); opacity: 0.4; }
  75% { transform: translate(30px, 40px) scale(1.05); opacity: 0.6; }
}

/* 3. PRICING BUTTON = CTA BUTTON (IDENTICAL) */
.pricing-cta,
.pricing .btn-primary,
.pricing button.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%) !important;
  background-size: 200% 200% !important;
  color: white !important;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  cursor: pointer !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1) !important;
}

.pricing-cta:hover,
.pricing .btn-primary:hover,
.pricing button.btn-primary:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.2) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 50px rgba(255,255,255,0.2) !important;
}

/* Ensure pricing card is above bubbles */
.pricing-card {
  position: relative !important;
  z-index: 10 !important;
}

/* 4. PRICING AND CTA SECTIONS - BLACK BACKGROUNDS */
.pricing,





/* ============================================
   UNIVERSAL RULES FOR ALL PAGES
   ============================================ */

/* Nav CTA button - Always black */
.nav-cta {
  display: inline-block !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  filter: brightness(1.2) !important;
  transform: translateY(-1px) !important;
}

/* All buttons on all pages - Black */
.btn-primary,
button.btn-primary,
a.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%) !important;
  color: white !important;
  padding: 1rem 2rem !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1) !important;
}

/* All circles - Black */
[style*="border-radius:50%"][style*="background"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
}

/* All icon squares - Black */
[style*="border-radius:12px"][style*="background"],
[style*="border-radius:20px"][style*="background"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3), 0 0 15px rgba(255,255,255,0.1) !important;
}

/* CTA sections on all pages */
section.cta,
section[style*="background:var(--navy)"],
section[style*="text-align:center"][style*="padding:6rem"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Team cards - proper spacing */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
}


/* ============================================
   SUBPAGE STYLES - TEAM, IMPRESSUM, ETC.
   ============================================ */

/* Mission Section */
.mission {
  background: var(--cream);
  padding: 6rem 0;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.mission-highlight {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-left: 4px solid var(--ink);
  border-radius: 8px;
}

/* Team Section */
.team {
  background: white;
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
}

/* Legal Pages (Impressum, AGB, Datenschutz) */




.legal h1 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.legal ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.legal a {
  color: var(--ink);
  text-decoration: underline;
}

.legal a:hover {
  color: var(--slate);
}

/* Hero on subpages */
.hero-label {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 1.5rem;
}




/* ============================================
   CRITICAL FIXES FOR SUBPAGES
   ============================================ */

/* 1. LEGAL PAGES - PROPER SPACING */




/* Legal page headers */
.legal-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 2rem;
}

/* Footer on legal pages */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* 2. TEAM AVATARS - CIRCLES WITH LETTERS (Not styled divs) */
.team-avatar {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.5rem !important;
  font-size: 3rem !important;
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  font-family: 'Fraunces', serif !important;
}

/* 3. WIE WIR ARBEITEN - 3 COLUMNS SIDE BY SIDE */
.how-it-works {
  background: white;
  padding: 6rem 0;
  margin: 4rem 0; /* Add spacing */
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

@media (max-width: 968px) {
  .how-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
}

.how-item {
  text-align: center;
}

.how-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
}

.how-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.how-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate);
}

/* 4. LOGO FONT CONSISTENCY - EVERYWHERE */
.logo {
  font-family: 'Fraunces', serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* Footer logo same font */
.footer .logo {
  font-family: 'Fraunces', serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
}

/* Ensure proper container on all pages */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section spacing */
section {
  position: relative;
}

/* Hero on all subpages */


.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
}




/* TEAM PHOTO/AVATAR FIX */
.team-photo {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.5rem !important;
  font-size: 3rem !important;
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  font-family: 'Fraunces', serif !important;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: color 0.2s;
}

.team-linkedin:hover {
  color: var(--ink);
}




/* TESTIMONIAL CARDS - WHITE TEXT FOR DARK BACKGROUNDS */
.testimonial-card p {
  color: white !important; /* White text for black section background */
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05) !important; /* Slightly transparent */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Testimonial names */
.testimonial-card div[style*="font-weight:600"] {
  color: white !important;
}

/* Testimonial roles */
.testimonial-card div[style*="font-size:0.8rem"] {
  color: rgba(255, 255, 255, 0.7) !important;
}




/* HERO LEFT-ALIGNED */


.hero-h1,
.hero-p,
.hero-badge {
  text-align: left !important;
}

.hero-actions {
  justify-content: flex-start !important;
  text-align: left !important;
}




/* ============================================
   LEGAL PAGES - PROPER SPACING
   ============================================ */

/* Legal section with proper top spacing */
.legal {
  background: white !important;
  padding: 8rem 2rem 6rem 2rem !important; /* Extra top padding for spacing from nav */
  min-height: 70vh !important;
}

/* Legal content - centered with max width */


/* Legal header with back link */
.legal-header {
  margin-bottom: 3rem !important;
}

.back-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: var(--slate) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: color 0.2s !important;
}

.back-link:hover {
  color: var(--ink) !important;
}

/* Legal page typography */
.legal h1 {
  font-family: 'Fraunces', serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.2 !important;
}

.legal h2 {
  font-family: 'Fraunces', serif !important;
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  margin-top: 3rem !important;
  margin-bottom: 1rem !important;
}

.legal h3 {
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

.legal p {
  font-size: 1rem !important;
  line-height: 1.8 !important;
  color: var(--slate) !important;
  margin-bottom: 1.5rem !important;
}

.legal ul {
  margin-bottom: 1.5rem !important;
  padding-left: 2rem !important;
}

.legal li {
  font-size: 1rem !important;
  line-height: 1.8 !important;
  color: var(--slate) !important;
  margin-bottom: 0.5rem !important;
}

.legal a {
  color: var(--ink) !important;
  text-decoration: underline !important;
  transition: color 0.2s !important;
}

.legal a:hover {
  color: var(--slate) !important;
}

.legal strong {
  color: var(--ink) !important;
  font-weight: 600 !important;
}

/* Content container (if used) */
.content-container {
  max-width: 800px !important;
  margin: 8rem auto 4rem auto !important;
  padding: 0 2rem !important;
}




/* ============================================
   HERO & PRICING FIXES - ALL IN CSS
   ============================================ */

/* 1. HERO TESTIMONIAL - WHITE TEXT */
.hero-left [style*="background:white"] p {
  color: var(--ink) !important; /* Keep black for white background testimonial */
}

/* 2. "KEINE KREDITKARTE" TEXT - CENTERED */


/* 3. PRICING BOX - ALL WHITE TEXT */
.pricing-card,
.pricing-card * {
  color: white !important;
}

/* Pricing price - WHITE */
.pricing-price {
  color: white !important;
}

/* Pricing card specific elements - WHITE */
.pricing-card h3,
.pricing-card p,
.pricing-card li,
.pricing-card div,
.pricing-card span {
  color: white !important;
}

/* Strikethrough price - lighter white */
.pricing-card [style*="text-decoration:line-through"] {
  color: rgba(255,255,255,0.6) !important;
}

/* Countdown timer - WHITE */
#countdown {
  color: white !important;
}

#countdown span {
  color: white !important;
}

#countdown div {
  color: rgba(255,255,255,0.7) !important;
}

/* Price €299 - WHITE */
.pricing-card [style*="€299"],
.pricing-card [style*="€"]:not([style*="line-through"]) {
  color: white !important;
}

/* Checkmarks stay green but text white */
.pricing-features li {
  color: white !important;
}

/* Discount badge stays as is (orange background) */
.pricing-card [style*="background:var(--orange)"] {
  color: white !important;
}

/* Live activity indicator - keep as is */
.pricing-card [style*="background:rgba(16,185,129"] {
  color: #059669 !important;
}

/* 4. REMOVE ANY URGENCY BARS THAT MIGHT STILL SHOW */
[style*="23 Architekten"],
[style*="architects this week"] {
  display: none !important;
}




/* ============================================
   FINAL CSS FIXES - ALL WHITE ON BLACK
   ============================================ */

/* 1. HERO TESTIMONIAL BOX - BLACK BACKGROUND, WHITE TEXT */
.hero-left > div[style*="background:white"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

/* All text in hero testimonial - WHITE */
.hero-left > div[style*="background:white"] p,
.hero-left > div[style*="background:white"] span:not([style*="color:#FFA500"]) {
  color: white !important;
}

/* Stars stay orange */
.hero-left > div[style*="background:white"] span[style*="color:#FFA500"] {
  color: #FFA500 !important;
}

/* 2. CENTER "KEINE KREDITKARTE" TEXT */
.hero-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}



/* 3. PRICING BOX - ALL WHITE */
.pricing-card {
  color: white !important;
}

/* All pricing text white */
.pricing-card h3,
.pricing-card p,
.pricing-card span,
.pricing-card div:not([style*="background"]),
.pricing-card li {
  color: white !important;
}

/* Price €299 - BIG WHITE */
.pricing-card [style*="font-size:3.5rem"],
.pricing-card [style*="font-size: 3.5rem"] {
  color: white !important;
}

/* Strikethrough price - lighter */
.pricing-card [style*="text-decoration:line-through"] {
  color: rgba(255,255,255,0.5) !important;
}

/* Counter - WHITE */
#countdown,
#countdown span,
#countdown div {
  color: white !important;
}

#countdown [style*="font-size:0.7rem"] {
  color: rgba(255,255,255,0.7) !important;
}

/* Features list - WHITE */
.pricing-features,
.pricing-features li,
.pricing-features div {
  color: white !important;
}

/* Links in pricing - WHITE */
.pricing-card a:not(.btn-primary):not(.pricing-cta) {
  color: white !important;
}

.pricing-card a:not(.btn-primary):not(.pricing-cta):hover {
  color: rgba(255,255,255,0.8) !important;
}

/* 4. HIDE URGENCY BARS COMPLETELY */
div[style*="23 Architekten"],
div[style*="architects this week"],
[style*="background:rgba(128,128,128,0.15)"] {
  display: none !important;
}

/* Green badges stay green */
.pricing-card [style*="background:rgba(16,185,129"] {
  color: #059669 !important;
}




/* ============================================
   CTA & FOOTER FOR ALL PAGES
   ============================================ */

/* CTA Section - Black gradient with bubbles */


.cta .container {
  position: relative !important;
  z-index: 10 !important;
}

.cta h2 {
  font-family: 'Fraunces', serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: white !important;
  margin-bottom: 1rem !important;
}

.cta p {
  font-size: 1.15rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 2rem !important;
}

/* CTA Button */
.cta a[href*="pricing"],
.cta a[style*="background:white"] {
  display: inline-block !important;
  background: white !important;
  color: #1a1a2e !important;
  padding: 1rem 2.5rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.cta a[href*="pricing"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
}

/* Footer - Always at bottom */


footer .logo {
  font-family: 'Fraunces', serif !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
}

footer h4 {
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: white !important;
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: color 0.2s !important;
}

footer a:hover {
  color: white !important;
}

footer p {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7 !important;
}

/* Ensure body stretches to full height */
html, body {
  min-height: 100vh !important;
}

body {
  display: flex !important;
  flex-direction: column !important;
}

/* Main content grows */
main {
  flex: 1 !important;
}

/* For pages without main tag */
body > section:first-of-type {
  padding-top: 2rem !important;
}




/* ============================================
   FOOTER WITH GRADIENT
   ============================================ */

footer {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%) !important;
  color: white !important;
  padding: 4rem 0 !important;
  margin-top: auto !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Footer content */
footer .container {
  position: relative !important;
  z-index: 10 !important;
}

/* Copyright - LEFT ALIGNED */
footer .copyright,
footer div[style*="border-top"] {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 2rem !important;
  text-align: left !important; /* Left aligned! */
}

footer .copyright p,
footer div[style*="border-top"] p {
  text-align: left !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem !important;
}

/* Footer logo */
footer .logo {
  font-family: 'Fraunces', serif !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  color: white !important;
}

footer h4 {
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: white !important;
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: color 0.2s !important;
}

footer a:hover {
  color: white !important;
}

footer p {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7 !important;
}

/* ============================================
   CTA SECTION - FIX FOR ALL PAGES
   ============================================ */

.cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 6rem 0 !important;
  margin-top: 4rem !important;
}

.cta .container {
  position: relative !important;
  z-index: 10 !important;
  text-align: center !important;
}

.cta h2 {
  font-family: 'Fraunces', serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: white !important;
  margin-bottom: 1rem !important;
}

.cta p {
  font-size: 1.15rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 2rem !important;
}

.cta a {
  display: inline-block !important;
  background: white !important;
  color: #1a1a2e !important;
  padding: 1rem 2.5rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.cta a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
}

/* ============================================
   WIE WIR ARBEITEN - 3 COLUMNS
   ============================================ */



.values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* 3 columns side by side */
  gap: 3rem !important;
  margin-top: 3rem !important;
}

@media (max-width: 968px) {
  .values-grid {
    grid-template-columns: 1fr !important; /* Stack on mobile */
  }
}

.value-item {
  text-align: center !important;
}

.value-number {
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.5rem !important;
  font-size: 1.5rem !important;
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

.value-item h3 {
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin-bottom: 1rem !important;
}

.value-item p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: var(--slate) !important;
}




/* ============================================
   HERO - 2 COLUMNS WITH BROWSER PREVIEW
   ============================================ */



.hero-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important; /* Left larger than right */
  gap: 4rem !important;
  align-items: center !important;
}

.hero-left {
  position: relative !important;
  z-index: 1 !important;
  text-align: left !important;
}

.hero-right {
  position: relative !important;
  z-index: 1 !important;
}

/* Hide the badge */
.hero-badge {
  display: none !important; /* Remove "Preview vor Zahlung" */
}

.hero-h1 {
  font-family: 'Fraunces', serif !important;
  font-size: clamp(2.5rem, 5.5vw, 4rem) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: var(--ink) !important;
  margin-bottom: 1.5rem !important;
  text-align: left !important;
}

.hero-h1 em {
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
}

.hero-p {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  color: var(--slate) !important;
  margin-bottom: 2rem !important;
  text-align: left !important;
}

.hero-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  text-align: left !important;
}

/* Browser demo on right */
.hero-demo {
  width: 100% !important;
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1) !important;
}

.demo-browser {
  background: #f5f5f5 !important;
  padding: 0.75rem 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border-bottom: 1px solid #e5e5e5 !important;
}

.demo-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #ddd !important;
}

.demo-url {
  flex: 1 !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: var(--slate) !important;
  font-family: 'JetBrains Mono', monospace !important;
}

/* Mobile responsive */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .hero-right {
    order: 2 !important;
  }
}

/* ============================================
   PRICING SECTION - FIX PADDING
   ============================================ */

.pricing {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 6rem 0 !important; /* Proper top and bottom padding */
}

.pricing .container {
  position: relative !important;
  z-index: 10 !important;
}

.pricing-card {
  position: relative !important;
  z-index: 10 !important;
}




/* ============================================
   TEXT CENTERING & TESTIMONIAL COLORS
   ============================================ */

/* 1. HERO TESTIMONIAL - WHITE/GRAY BACKGROUND, BLACK TEXT */
.hero-left > div[style*="background:white"] {
  background: #f8f9fa !important; /* Light gray instead of white */
  border: 1px solid var(--border) !important;
}

/* Keep TM circle black */
.hero-left div[style*="width:48px"][style*="border-radius:50%"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #2d2d44 100%) !important;
  color: white !important;
}

/* Text in testimonial - keep black */
.hero-left div[style*="background:white"] p,
.hero-left div[style*="background:#f8f9fa"] p {
  color: var(--ink) !important;
}

/* 2. CENTER "⚡ Keine Kreditkarte..." TEXT */


/* 3. TESTIMONIAL SECTION - CENTER HEADERS */
.testimonials {
  text-align: center !important;
}

.section-header {
  text-align: center !important;
  margin-bottom: 3rem !important;
}

.section-label {
  display: inline-block !important;
  margin: 0 auto 1rem !important;
  text-align: center !important;
}

.section-h2 {
  text-align: center !important;
  margin: 0 auto !important;
}

.section-p {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 600px !important;
}

/* 4. "SO EINFACH GEHT'S" - CENTER EVERYTHING */
.how-it-works {
  text-align: center !important;
}









/* How it works items - centered */
.how-item {
  text-align: center !important;
}

.how-item h3 {
  text-align: center !important;
}

.how-item p {
  text-align: center !important;
}

/* Badges in how-it-works - centered */
.how-item div[style*="display:inline-block"] {
  margin: 0 auto !important;
}

/* 5. PRICING - CENTER TEXT */
.pricing {
  text-align: center !important;
}

.pricing .section-header {
  text-align: center !important;
}

.pricing-card {
  text-align: center !important;
}

/* Pricing top text */
.pricing-card > div:first-child {
  text-align: center !important;
}

/* Strike-through and price */
.pricing-card div[style*="text-decoration:line-through"],
.pricing-card div[style*="font-size:3rem"] {
  text-align: center !important;
}

/* Discount badge */
.pricing-card div[style*="background:rgba(239,68,68"] {
  margin: 0 auto !important;
  text-align: center !important;
}

/* Countdown timer */
.pricing-card div[style*="⏰"] {
  text-align: center !important;
  justify-content: center !important;
}




/* ============================================
   HERO TESTIMONIAL - WHITE/GRAY BACKGROUND
   ============================================ */

/* Hero testimonial box - white/gray with black text */
.hero-left > div[style*="background:white"] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}

/* Text stays black (already is) */
.hero-left > div[style*="background:white"] p {
  color: var(--ink) !important;
}

/* TM circle stays black (already is) */

/* ============================================
   CENTERING FIXES
   ============================================ */

/* Center "⚡ Keine Kreditkarte nötig" text */


/* Center testimonial section headers */
.testimonial-section-header,
section[style*="testimonial"] .section-header,
.section-header {
  text-align: center !important;
}

.section-label {
  display: inline-block !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.section-h2 {
  text-align: center !important;
}

.section-subtext {
  text-align: center !important;
  margin: 0 auto !important;
}

/* Center "So einfach geht's" section */
.how-it-works .section-header,
.how-it-works .section-label,
.how-it-works .section-h2,
.how-it-works .section-subtext,


/* Center pricing headers */
.pricing .section-header,
.pricing .section-label,
.pricing .section-h2 {
  text-align: center !important;
}

/* Center countdown and pricing info */
.pricing-header {
  text-align: center !important;
}

.pricing-card {
  text-align: center !important;
}




/* ============================================
   VALUES SECTION - CREAM BACKGROUND
   ============================================ */






/* ============================================
   TEAM PAGE - MATCHING BACKGROUNDS
   ============================================ */

/* Mission section (Warum wir Talvoss gegründet haben) - Cream background */
.mission {
  background: var(--cream) !important;
  padding: 6rem 0 !important;
}

/* Values section (Unsere Werte) - SAME cream background */
.values {
  background: var(--cream) !important; /* Same as mission! */
  padding: 6rem 0 !important;
}

.values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 3rem !important;
  margin-top: 3rem !important;
}

@media (max-width: 968px) {
  .values-grid {
    grid-template-columns: 1fr !important;
  }
}




/* ============================================
   HERO SECTION FIXES
   ============================================ */

/* Testimonial box - white background (already is, but ensure) */
.hero-left > div[style*="background:white"] {
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  margin-bottom: 2rem !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

/* Hero subtext below button - CENTER ALIGNED */


/* Hero button - NO ARROW */
.hero .btn-primary::after,
.hero-actions .btn-primary::after {
  content: '' !important; /* Remove arrow */
  display: none !important;
}

/* ============================================
   SO EINFACH GEHT'S - CENTER BUTTON
   ============================================ */

.how-it-works {
  text-align: center !important;
}

.how-it-works .btn-primary,


/* ============================================
   FOOTER - FULL WIDTH & WHITE TEXT
   ============================================ */

footer {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%) !important;
  color: white !important;
  padding: 4rem 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

footer * {
  color: white !important; /* Force all text white */
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
}

footer a:hover {
  color: white !important;
}

footer p {
  color: rgba(255, 255, 255, 0.7) !important;
}

footer h4 {
  color: white !important;
}

footer .logo {
  color: white !important;
}

/* Footer container - proper width */
footer .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  width: 100% !important;
}

/* ============================================
   CTA SECTION - FULL WIDTH
   ============================================ */

.cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 6rem 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

.cta .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  width: 100% !important;
}




/* ============================================
   HERO SUBTEXT - NEW CLASS
   ============================================ */



.hero .btn-primary {
  font-size: 1.1rem !important;
  padding: 1rem 2.5rem !important;
}

/* Remove arrow from hero button */
.hero .btn-primary::after {
  display: none !important;
}

/* ============================================
   SO EINFACH GEHT'S BUTTON - CENTER
   ============================================ */








/* ============================================
   HERO SUBTEXT - FORCE CENTER
   ============================================ */



/* ============================================
   SO EINFACH GEHT'S - FORCE CENTER BUTTON
   ============================================ */

/* The section with "So einfach geht's" / "How it works" */
section:has(.section-label:contains("So einfach")),
section:has(.section-label:contains("How it works")),
.how-it-works,
section[style*="background:white"] + section[style*="background:white"] {
  text-align: center !important;
}

/* Any button in how-it-works or similar sections */
.how-it-works .btn-primary,
.how-it-works a.btn-primary,
section:has(h2:contains("So einfach")) .btn-primary,
section:has(h2:contains("How it works")) .btn-primary {
  margin-left: auto !important;
  margin-right: auto !important;
  display: inline-block !important;
  text-align: center !important;
}

/* Force the container to center its contents */
.how-it-works .container,
section:has(h2:contains("So einfach")) .container {
  text-align: center !important;
}

/* More specific: any link/button after "So einfach geht's" heading */
h2:contains("So einfach") ~ * a.btn-primary,
h2:contains("How it works") ~ * a.btn-primary {
  margin: 2rem auto 0 !important;
  display: inline-block !important;
}



/* ============================================
   HERO SUBTEXT - CENTERED TEXT
   ============================================ */






/* ============================================
   HERO ACTIONS - LEFT ALIGN TEXT
   ============================================ */

.hero-actions p {
  text-align: left !important; /* LEFT aligned! */
  width: 100% !important;
  display: block !important;
}

/* ============================================
   TEAM PAGE - CENTER "ÜBER UNS" SECTION
   ============================================ */

.mission {
  background: var(--cream) !important;
  padding: 6rem 0 !important;
}

.mission .container {
  text-align: center !important; /* Center everything */
}

.mission h2,
.mission p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* "Über uns" heading - same style as "Das Team" */
.mission h2 {
  font-family: 'Fraunces', serif !important;
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  color: var(--ink) !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
}

.mission .section-label {
  display: inline-block !important;
  margin: 0 auto 1rem auto !important;
}

/* ============================================
   LEGAL PAGES - SAME WIDTH AS TEAM PAGE
   ============================================ */








/* ============================================
   LEGAL PAGES - SAME WIDTH AS TEAM (1200px)
   ============================================ */

/* Legal section container */
.legal .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  width: 100% !important;
}

/* Legal content wrapper */
.legal-content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Team page container for reference */
.team .container,
.mission .container,
.values .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
}




/* ============================================
   HERO SECTION - MORE SPACING
   ============================================ */



/* Mobile adjustments */
@media (max-width: 968px) {
  
}




/* ============================================
   HERO SECTION - EVEN MORE SPACING
   ============================================ */



/* Mobile adjustments */
@media (max-width: 968px) {
  
}

/* ============================================
   TEAM PAGE - ÜBER UNS WITH BLACK BUBBLES
   ============================================ */

/* Team hero section with black gradient and bubbles */
.team-hero-about {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 10rem 0 8rem 0 !important;
  text-align: center !important;
}

/* Bubbles for team hero */
.team-hero-about .pricing-bubble {
  position: absolute !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent) !important;
  animation: float 20s infinite ease-in-out !important;
}

.team-hero-about .bubble-1 { width: 400px; height: 400px; top: -200px; left: -100px; animation-delay: 0s; }
.team-hero-about .bubble-2 { width: 300px; height: 300px; top: 50%; right: -150px; animation-delay: 3s; }
.team-hero-about .bubble-3 { width: 250px; height: 250px; bottom: -125px; left: 10%; animation-delay: 6s; }
.team-hero-about .bubble-4 { width: 200px; height: 200px; top: 20%; left: 5%; animation-delay: 2s; }
.team-hero-about .bubble-5 { width: 350px; height: 350px; bottom: -100px; right: 5%; animation-delay: 4s; }
.team-hero-about .bubble-6 { width: 180px; height: 180px; top: 40%; right: 15%; animation-delay: 1s; }
.team-hero-about .bubble-7 { width: 220px; height: 220px; bottom: 10%; left: 30%; animation-delay: 5s; }
.team-hero-about .bubble-8 { width: 280px; height: 280px; top: 10%; right: 25%; animation-delay: 7s; }

/* Text colors for black background */
.team-hero-about h2,
.team-hero-about h1 {
  color: white !important;
  position: relative !important;
  z-index: 10 !important;
}

.team-hero-about p {
  color: rgba(255,255,255,0.85) !important;
  position: relative !important;
  z-index: 10 !important;
}

.team-hero-about .container {
  position: relative !important;
  z-index: 10 !important;
}




/* ============================================
   HERO SECTION - MAXIMUM TOP SPACING
   ============================================ */



/* Mobile adjustments */
@media (max-width: 968px) {
  
}




/* ============================================
   HERO SECTION - BLACK BUBBLE BACKGROUND
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 12rem 0 6rem 0 !important;
}

/* Bubbles in hero */
.hero .hero-bubble {
  position: absolute !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent) !important;
  animation: float 20s infinite ease-in-out !important;
}

.hero .hero-bubble-1 { width: 400px; height: 400px; top: -200px; left: -100px; animation-delay: 0s; }
.hero .hero-bubble-2 { width: 300px; height: 300px; top: 50%; right: -150px; animation-delay: 3s; }
.hero .hero-bubble-3 { width: 250px; height: 250px; bottom: -125px; left: 10%; animation-delay: 6s; }
.hero .hero-bubble-4 { width: 200px; height: 200px; top: 20%; left: 5%; animation-delay: 2s; }
.hero .hero-bubble-5 { width: 350px; height: 350px; bottom: -100px; right: 5%; animation-delay: 4s; }
.hero .hero-bubble-6 { width: 180px; height: 180px; top: 40%; right: 15%; animation-delay: 1s; }
.hero .hero-bubble-7 { width: 220px; height: 220px; bottom: 10%; left: 30%; animation-delay: 5s; }
.hero .hero-bubble-8 { width: 280px; height: 280px; top: 10%; right: 25%; animation-delay: 7s; }

/* Hero content above bubbles */
.hero .container,
.hero-container {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
}

.hero-left,
.hero-right {
  position: relative !important;
  z-index: 10 !important;
}

/* Text colors for black background */
.hero-h1 {
  color: white !important;
}

.hero-p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Testimonial box - white background for contrast */
.hero-left > div[style*="background:white"] {
  background: white !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
}

/* Trusted badge - adjust for dark background */
.hero-left > div[style*="rgba(16,185,129"] {
  background: rgba(16,185,129,0.15) !important;
  border: 1px solid rgba(16,185,129,0.3) !important;
}

/* Hero actions text */
.hero-actions p,
.hero-subtext {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Button - keep white background for contrast */
.hero .btn-primary {
  background: white !important;
  color: #1a1a2e !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}

.hero .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
}

/* Mobile adjustments */
@media (max-width: 968px) {
  .hero {
    padding: 8rem 0 4rem 0 !important;
    min-height: 100vh !important;
  }
}




/* ============================================
   BUBBLE ANIMATION - WORKING VERSION
   ============================================ */

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.8;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.7;
  }
}

/* ============================================
   HERO EM TAG - WHITE COLOR
   ============================================ */

.hero em,
.hero-h1 em {
  color: white !important;
  font-style: italic !important;
}

/* ============================================
   TEAM HERO EM TAG - WHITE COLOR
   ============================================ */

.team-hero-about em,
.team-hero-about h1 em,
.team-hero-about h2 em {
  color: white !important;
  font-style: italic !important;
}

/* ═══════════════════════════════════════════════════
   DANKE PAGE – in styles.css einfügen
   ═══════════════════════════════════════════════════ */

/* ── Layout ── */
.danke-wrap { max-width: 720px; margin: 0 auto; padding: 4rem 2rem 5rem; }

/* ── Hero ── */
.success-hero {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}
.success-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.success-hero p { color: var(--slate); font-size: 1rem; line-height: 1.7; }

/* ── Schritt-Label ── */
.step-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.step-num-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-label h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── Karte ── */
.danke-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.danke-card .card-desc {
  color: var(--slate);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Formular ── */
.danke-card .form-group { margin-bottom: 1.25rem; }
.danke-card input[type="email"],
.danke-card input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
  margin-top: 0.4rem;
}
.danke-card input:focus { border-color: var(--navy); }

/* ── styles.css setzt label { display:block; color:orange; font-family:mono; text-transform:uppercase }
      – das muss für die danke-card überschrieben werden ── */
.danke-card label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0.4rem;
  display: block;
}

/* ── styles.css fügt via .btn-primary::after { content:'→' } automatisch Pfeil ein
      – auf der danke-card nicht gewünscht ── */
.danke-card .btn-primary::after,
.hosting-panel .btn-primary::after { content: none; }

/* ── Radio-Optionen
      styles.css label { display:block } überschreibt display:flex – daher !important ── */
.radio-group { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
label.radio-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--ink) !important;
}
label.radio-option:has(input:checked) {
  border-color: var(--navy);
  background: rgba(26,35,50,0.04);
}
label.radio-option input[type="radio"] {
  accent-color: var(--navy);
  flex-shrink: 0 !important;
  align-self: center;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}
.radio-text { display: flex; flex-direction: column; }
.label-text {
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}
.label-sub {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 2px;
  line-height: 1.3;
  font-weight: 400;
}

/* ── Bedingte Felder ── */
.conditional { display: none; margin-top: 0.75rem; }
.conditional.visible { display: block; }

/* ── Sonstiges ── */
.honeypot { display: none; }
.hint { font-size: 0.8rem; color: var(--slate); margin-top: 0.35rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Erfolgsmeldung ── */
.submit-success { display: none; text-align: center; padding: 1.5rem 0; }
.submit-success.visible { display: block; }
.submit-success p { color: var(--slate); margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════
   CSS-ONLY HOSTING TOGGLE
   Radio-Inputs müssen im HTML VOR .hosting-toggle-wrap
   und den Panels stehen, damit ~ Selektor greift!
   ═══════════════════════════════════════════════════ */

#hosting-managed,
#hosting-self { display: none; }

#tab-managed:checked ~ .hosting-toggle-wrap label[for="tab-managed"],
#tab-self:checked    ~ .hosting-toggle-wrap label[for="tab-self"] {
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

#tab-managed:checked ~ #hosting-managed { display: block; }
#tab-self:checked    ~ #hosting-self    { display: block; }

.hosting-toggle-wrap {
  display: flex;
  background: rgba(15,15,15,0.06);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hosting-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--slate) !important;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: none !important;
  letter-spacing: normal !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0 !important;
}
.hosting-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  background: white;
  position: relative;
}
.hosting-panel--featured {
  border: 2px solid var(--orange);
  background: #fffcfb;
}
/* Tab mit Badge – inline neben Label-Text */
.tab-badge {
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  white-space: nowrap;
}
.tile-desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  text-align: center;
}
.price {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  text-align: center;
}
.price strong { color: var(--orange); font-size: 1rem; }

/* Selfhost-Formular – label override nötig (styles.css Konflikt) */
.hosting-panel label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--slate) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  display: block !important;
  margin-bottom: 0.4rem !important;
}
.hosting-panel input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  margin-bottom: 0.75rem;
  box-shadow: none;
}
.hosting-panel input:focus { border-color: var(--navy); }
.btn-secondary-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.hosting-panel .price strong {
  color: var(--ink);
}
.btn-secondary-outline:hover { border-color: var(--ink); color: var(--ink); }
.selfhost-msg {
  display: none;
  font-size: 0.85rem;
  color: var(--green);
  margin-top: 0.75rem;
  font-weight: 500;
  text-align: center;
}
.selfhost-msg.visible { display: block; }
