/* Bodenseegras e. V. - Tettnang | Luxury CSC Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Rich Forest Green Theme */
  --bg-dark-deep: #041209;
  --bg-dark: #071911;
  --bg-dark-surface: #0c261b;
  --bg-dark-card: #123425;
  --bg-dark-hover: #174230;
  
  /* Crisp Light / Mint Theme */
  --bg-light: #f5f9f6;
  --bg-light-surface: #ffffff;
  --bg-mint: #e8f5ed;
  --bg-mint-card: #f0f7f3;
  --bg-mint-border: #d0ebd8;

  /* Accent Colors */
  --emerald: #10b981;
  --emerald-bright: #22c55e;
  --emerald-dark: #047857;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-light: #e5ede8;
  --text-muted: #8ea899;
  --text-dark: #071911;
  --text-dark-muted: #415549;

  /* Borders & Shadows */
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-emerald: rgba(16, 185, 129, 0.28);
  --border-light: rgba(16, 185, 129, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 45px -10px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.35);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------------------------------------------------------------
   PASSWORD GATE OVERLAY (bsg2026)
------------------------------------------------------------- */
.password-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: radial-gradient(circle at 50% 30%, #0d281a 0%, #030a06 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.password-gate-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.password-gate-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}
.password-gate-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.18);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.password-gate-logo {
  width: 76px;
  height: auto;
  margin: 0 auto 16px auto;
  filter: drop-shadow(0 4px 14px rgba(245, 158, 11, 0.4));
}
.password-gate-card h2 {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 10px;
}
.password-gate-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.password-gate-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.password-input-wrap input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark-deep);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.password-input-wrap input:focus {
  outline: none;
  border-color: var(--emerald-bright);
  box-shadow: 0 0 15px var(--emerald-glow);
}
.password-error-msg {
  color: #ef4444;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}
.password-submit-btn {
  width: 100%;
  padding: 15px;
}
.password-gate-hint {
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}
.shake {
  animation: shake 0.4s ease-in-out;
  border-color: #ef4444 !important;
}

/* -------------------------------------------------------------
   BUTTONS & BADGES
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.6);
  color: #ffffff;
}

.btn-glow {
  position: relative;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #10b981, #34d399);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  filter: blur(8px);
}
.btn-glow:hover::after {
  opacity: 0.8;
}

.btn-dark {
  background: var(--bg-dark-surface);
  color: var(--text-white);
  border: 1px solid var(--border-emerald);
}
.btn-dark:hover {
  background: var(--bg-dark-card);
  border-color: var(--emerald-bright);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--emerald-bright);
  color: var(--emerald-bright);
  background: rgba(16, 185, 129, 0.08);
}

.btn-white {
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  background: var(--bg-mint);
}

/* Badges */
.section-badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-mint);
  color: var(--emerald-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid var(--bg-mint-border);
}

.section-subline-gold {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-heading-white {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  max-width: 760px;
  margin: 0 auto;
}

.section-lead-white {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
}

/* -------------------------------------------------------------
   ANNOUNCEMENT BAR & ENHANCED HEADER
------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #092014, #123824, #092014);
  color: #d1fae5;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announcement-tag {
  background: var(--emerald-dark);
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.announcement-link {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
}
.announcement-link:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 25, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  line-height: 1.1;
}
.brand-location {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-bright);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 4px;
  border-radius: 4px;
}
.nav-link:hover {
  color: var(--text-white);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--emerald-bright);
  transition: var(--transition);
}
.nav-link:hover::after {
  width: 80%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition);
}

/* -------------------------------------------------------------
   HERO SECTION (DARK)
------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 65px 0 85px 0;
  background: radial-gradient(circle at 50% 15%, #103b27 0%, #071911 70%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

.hero-glow-sphere {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.sphere-left {
  top: 10%;
  left: -150px;
  background: rgba(16, 185, 129, 0.15);
}
.sphere-right {
  top: 20%;
  right: -150px;
  background: rgba(245, 158, 11, 0.12);
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 46px auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-full);
  color: var(--emerald-bright);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 10px var(--emerald-bright);
}

.hero-title {
  font-size: 3.6rem;
  color: var(--text-white);
  margin-bottom: 22px;
  text-shadow: 0 4px 25px rgba(0,0,0,0.6);
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 34px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-emerald);
}

.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 25, 17, 0.9) 0%, transparent 60%);
  pointer-events: none;
}

.hero-floating-badges {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 25, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.floating-badge .f-icon {
  font-size: 1.4rem;
}
.floating-badge .f-text strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.2;
}
.floating-badge .f-text small {
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* -------------------------------------------------------------
   TRUST BAR (WHITE SECTION)
------------------------------------------------------------- */
.trust-bar-section {
  background: #ffffff;
  padding: 34px 0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--bg-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--bg-mint-border);
}

.trust-text h4 {
  font-size: 0.96rem;
  color: var(--text-dark);
  margin-bottom: 3px;
  font-weight: 700;
}
.trust-text p {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  line-height: 1.4;
}

/* -------------------------------------------------------------
   LIGHT SECTIONS (ABOUT & QUALITY)
------------------------------------------------------------- */
.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-mint-border);
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-mint-border);
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald-dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-text .about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--emerald-dark);
  margin-bottom: 18px;
  line-height: 1.6;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-dark-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.about-highlights {
  margin: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hl-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-mint);
  color: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-hl-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-hl-item p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

.about-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------
   STEPPER TIMELINE (DARK)
------------------------------------------------------------- */
.section-dark {
  background-color: var(--bg-dark);
  padding: 95px 0;
  position: relative;
}

.stepper-timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-bright), var(--emerald-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 0 20px var(--emerald-glow);
  z-index: 2;
}

.step-line {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(to bottom, var(--emerald), rgba(16, 185, 129, 0.1));
  margin: 8px 0;
}

.step-card {
  flex-grow: 1;
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  transition: var(--transition);
}
.step-card:hover {
  background: var(--bg-dark-card);
  border-color: var(--border-emerald);
  transform: translateX(4px);
}

.step-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.stepper-cta-box {
  text-align: center;
  margin-top: 48px;
}

/* -------------------------------------------------------------
   CALCULATOR & COMPARISON SECTION
------------------------------------------------------------- */
.section-calculator {
  background-color: var(--bg-light);
  padding: 95px 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.calc-card-main {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-mint-border);
  display: flex;
  flex-direction: column;
}

.calc-slider-group {
  margin-bottom: 28px;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calc-label {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.calc-value-display {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--emerald-dark);
  background: var(--bg-mint);
  padding: 4px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-mint-border);
}

.calc-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 12px 0 18px 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--emerald);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  border: 3px solid #ffffff;
  transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-preset-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.calc-preset-btn {
  background: var(--bg-light);
  border: 1px solid #cbd5e1;
  color: var(--text-dark);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.calc-preset-btn:hover {
  background: var(--bg-mint);
  border-color: var(--emerald);
}
.calc-preset-btn.active {
  background: var(--emerald-dark);
  color: #ffffff;
  border-color: var(--emerald-dark);
}

.calc-result-box {
  background: var(--bg-mint-card);
  border: 1px solid var(--bg-mint-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 22px;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  border-bottom: 1px dashed #cbd5e1;
}
.calc-result-row:last-child {
  border-bottom: none;
}
.calc-result-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  padding-top: 14px;
  border-bottom: none;
}
.calc-result-row.sub {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  padding-top: 6px;
}
.calc-val-strong {
  font-weight: 700;
  color: var(--text-dark);
}
.calc-val-total {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--emerald-dark);
}

/* Comparison Box with Tooltip */
.calc-comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.comp-item {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}
.comp-item.highlight {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.comp-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.comp-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.comp-illegal {
  background: #fee2e2;
  color: #991b1b;
}
.comp-legal {
  background: #dcfce7;
  color: #166534;
}
.comp-item p {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  line-height: 1.45;
}

/* Tooltip Styles */
.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
}
.tooltip-icon {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.tooltip-icon:hover, .tooltip-icon:focus {
  opacity: 1;
}
.tooltip-content {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background: #071911;
  color: #f1f5f9;
  font-size: 0.72rem;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-emerald);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 50;
  text-align: left;
}
.tooltip-wrapper:hover .tooltip-content,
.tooltip-wrapper:focus-within .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* Transparency Benefits Side Card */
.transparency-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--bg-mint-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header-pill {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  align-self: flex-start;
}

.transparency-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.transparency-text {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.benefits-clean-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.b-clean-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.b-clean-item .b-icon {
  font-size: 1.3rem;
  margin-top: 2px;
}
.b-clean-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.b-clean-item p {
  font-size: 0.82rem;
  color: var(--text-dark-muted);
  line-height: 1.45;
  margin: 0;
}

/* -------------------------------------------------------------
   QUALITY SHOWCASE
------------------------------------------------------------- */
.quality-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 38px;
}

.quality-showcase-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-mint-border);
}
.q-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.q-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 25, 17, 0.95), transparent);
  color: #fff;
}
.q-tag {
  display: inline-block;
  background: var(--emerald);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}
.q-overlay h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 6px;
}
.q-overlay p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.45;
}

.tech-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-mint-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.pillar-card h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
}

/* -------------------------------------------------------------
   POLIZEILICHES SICHERHEITSKONZEPT (RC3)
------------------------------------------------------------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 38px;
}

.sec-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 34px;
  transition: var(--transition);
}
.sec-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-3px);
}
.sec-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.sec-card h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 16px;
}
.sec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sec-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.sec-list li strong {
  color: var(--text-light);
}

.sec-highlight-banner {
  background: linear-gradient(135deg, var(--bg-dark-surface), var(--bg-dark-card));
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.sec-banner-text h4 {
  font-size: 1.2rem;
  color: var(--emerald-bright);
  margin-bottom: 6px;
}
.sec-banner-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 740px;
}

/* -------------------------------------------------------------
   PRÄVENTION & GESUNDHEITSSCHUTZ
------------------------------------------------------------- */
.prevention-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.officer-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 34px;
  border: 1px solid var(--bg-mint-border);
  box-shadow: var(--shadow-md);
}
.officer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.officer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: 'Outfit', sans-serif;
}
.officer-header h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
}
.officer-role {
  font-size: 0.8rem;
  color: var(--emerald-dark);
  font-weight: 700;
  text-transform: uppercase;
}
.officer-bio {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.officer-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.topic-tag {
  background: var(--bg-mint);
  color: var(--emerald-dark);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
}
.officer-contact {
  background: var(--bg-light);
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-dark);
}
.mail-link {
  color: var(--emerald-dark);
  font-weight: 700;
  text-decoration: underline;
}

.prevention-pillars-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 34px;
  border: 1px solid var(--bg-mint-border);
  box-shadow: var(--shadow-md);
}
.prevention-pillars-card h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.p-pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}
.p-pillar-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-icon {
  font-size: 1.4rem;
  margin-top: 2px;
}
.p-pillar-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.p-pillar-item p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
  margin: 0;
}
.prevention-cta-row {
  text-align: center;
  margin-top: 36px;
}

/* -------------------------------------------------------------
   FAQ ACCORDION (DARK)
------------------------------------------------------------- */
.faq-section {
  border-top: 1px solid var(--border-dark);
}

.faq-emblem {
  width: 60px;
  height: auto;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.3));
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--border-emerald);
}
.faq-item.active {
  border-color: var(--emerald);
  background: var(--bg-dark-card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--emerald-bright);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.3s ease;
  padding: 0 26px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 26px 22px 26px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer ul {
  margin: 10px 0 10px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-answer li {
  margin-bottom: 6px;
}

/* -------------------------------------------------------------
   LOCATION & ANFAHRT
------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.location-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.l-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.l-icon {
  font-size: 1.4rem;
}
.l-fact strong {
  display: block;
  font-size: 0.96rem;
  color: var(--text-dark);
}
.l-fact p {
  font-size: 0.86rem;
  color: var(--text-dark-muted);
  margin: 0;
}

.location-card-box {
  background: #ffffff;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--bg-mint-border);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.map-marker-pin {
  font-size: 3rem;
  margin-bottom: 12px;
}
.map-placeholder-card h4 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.map-placeholder-card p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.map-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.map-tag {
  background: var(--bg-mint);
  color: var(--emerald-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* -------------------------------------------------------------
   REGISTRATION FORM SECTION (DARK)
------------------------------------------------------------- */
.register-section {
  background: radial-gradient(circle at 50% 10%, #113624 0%, #071911 65%);
  border-top: 1px solid var(--border-dark);
}

.register-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.register-header {
  text-align: center;
  margin-bottom: 36px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg-dark-deep);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald-bright);
  box-shadow: 0 0 12px var(--emerald-glow);
}

.form-error {
  font-size: 0.76rem;
  color: #ef4444;
  display: none;
}
.form-error.visible {
  display: block;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 10px 0;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--bg-dark-deep);
  border: 1px solid var(--border-dark);
  display: inline-block;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}
.custom-checkbox input:checked ~ .checkmark {
  background: var(--emerald);
  border-color: var(--emerald);
}
.custom-checkbox input:checked ~ .checkmark::after {
  content: '✓';
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-link {
  color: var(--emerald-bright);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
}

/* Success Card */
.form-success-card {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}
.form-success-card h3 {
  font-size: 1.8rem;
  color: var(--emerald-bright);
  margin-bottom: 12px;
}
.form-success-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.success-details-box {
  background: var(--bg-dark-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-emerald);
  text-align: left;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* -------------------------------------------------------------
   21+ AGE GATE MODAL
------------------------------------------------------------- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(4, 15, 10, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.age-gate-overlay.show {
  opacity: 1;
  visibility: visible;
}

.age-gate-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}
.age-gate-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.age-gate-logo {
  width: 76px;
  height: auto;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 4px 14px rgba(245, 158, 11, 0.4));
}
.age-gate-card h2 {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 14px;
}
.age-gate-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
}
.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.age-gate-hint {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* -------------------------------------------------------------
   STREAMLINED SITE FOOTER (DARK)
------------------------------------------------------------- */
.site-footer {
  background: #030d07;
  color: var(--text-muted);
  border-top: 1px solid var(--border-dark);
  padding: 70px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
}
.footer-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-white);
  display: block;
}
.footer-sub {
  font-size: 0.72rem;
  color: var(--emerald-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-reg-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-contact-item {
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-contact-item strong {
  color: var(--text-light);
}
.footer-contact-item a {
  color: var(--emerald-bright);
  text-decoration: underline;
}

.footer-bottom {
  background: #020704;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.footer-warning {
  font-size: 0.76rem;
  color: #cbd5e1;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 0.76rem;
  color: #64748b;
}

/* -------------------------------------------------------------
   RESPONSIVE STYLES
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.9rem;
  }
  .about-grid,
  .calc-grid,
  .prevention-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .tech-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-main-img {
    height: 320px;
  }
  .hero-floating-badges {
    position: static;
    margin-top: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-dark);
  }
  .main-nav.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .trust-bar-grid,
  .tech-pillars-grid,
  .security-grid,
  .quality-showcase-grid {
    grid-template-columns: 1fr;
  }
  .calc-preset-btns {
    grid-template-columns: 1fr 1fr;
  }
  .calc-comparison-box,
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .register-wrapper {
    padding: 26px 18px;
  }
  .sec-highlight-banner {
    flex-direction: column;
    text-align: center;
  }
}
