*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #fafaf8;
  --bg-2:      #f3f0eb;
  --bg-dark:   #023947;
  --teal:      #2BBFBF;
  --teal-lt:   #1fa8a8;
  --teal-pale: #eaf7f7;
  --text:      #1a1a1a;
  --text-2:    #555550;
  --muted:     #8a8882;
  --border:    #e8e3dc;
  --card-bg:   #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --radius:    24px;
  --radius-sm: 14px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-width: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-logo {
  display: flex; align-items: center; gap: 2px;
  text-decoration: none;
}
.nav-logo img { width: 34px; height: 34px; object-fit: contain; filter: brightness(0) saturate(100%) invert(62%) sepia(60%) saturate(500%) hue-rotate(137deg) brightness(90%); }
.nav-logo span {
  font-size: 19px; font-weight: 800;
  letter-spacing: 3px; color: var(--text);
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--text-2); text-decoration: none;
  font-size: 15px; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: all .22s;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--teal); color: var(--teal);
  background: var(--teal-pale);
}
.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 18px rgba(43,191,191,0.28);
}
.btn-primary:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43,191,191,0.36);
}

.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--text);
  border-radius: var(--radius-sm); padding: 13px 22px;
  text-decoration: none; color: #fff; transition: all .22s;
  box-shadow: var(--shadow-sm);
}
.btn-store:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-store svg { width: 24px; height: 24px; flex-shrink: 0; }
.btn-store-text { text-align: left; }
.btn-store-text small { display: block; font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 400; }
.btn-store-text strong { display: block; font-size: 15px; font-weight: 700; }

/* ── SECTIONS ── */
section { padding: 96px clamp(48px, 8vw, 140px); }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--teal); text-transform: uppercase; margin-bottom: 16px;
  display: block;
}
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.022em; margin-bottom: 20px;
  color: var(--text);
}
.section-sub {
  font-size: 17px; color: var(--text-2);
  line-height: 1.75; max-width: 560px;
}

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.card p  { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) clamp(48px, 8vw, 140px) 80px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.025em; margin-bottom: 22px;
  color: var(--text);
}
.page-hero h1 span { color: var(--teal); }
.page-hero p {
  font-size: 18px; color: var(--text-2);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  padding: 64px clamp(48px, 8vw, 140px) 40px;
  background: var(--bg-dark);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo span { color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── PROSE ── */
.prose {
  max-width: 760px; margin: 0 auto;
  font-size: 16px; line-height: 1.85; color: var(--text-2);
  overflow-wrap: break-word;
  word-break: break-word;
}
.prose h2 { font-size: 22px; font-weight: 700; color: var(--text); margin: 48px 0 12px; }
.prose h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 28px 0 8px; }
.prose p  { margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; }
.prose a  { color: var(--teal); text-decoration: underline; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.text-center { text-align: center; }
.text-teal   { color: var(--teal); }

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,191,191,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
::placeholder { color: var(--muted); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.pricing-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  background: var(--bg-dark); color: #fff;
  border-color: var(--bg-dark);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured p,
.pricing-card.featured ul li { color: rgba(255,255,255,0.7); }
.pricing-card.featured ul li::before { color: var(--teal); }
.pricing-card.featured ul li.no { color: rgba(255,255,255,0.25); }
.pricing-card.featured ul li.no::before { color: rgba(255,255,255,0.2); }
.pricing-card .price { font-size: 52px; font-weight: 900; color: var(--teal); margin: 16px 0 4px; line-height: 1; }
.pricing-card .price span { font-size: 18px; font-weight: 400; color: var(--muted); }
.pricing-card.featured .price { color: var(--teal); }
.pricing-card ul { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 13px; }
.pricing-card ul li { font-size: 15px; color: var(--text-2); display: flex; gap: 10px; align-items: flex-start; }
.pricing-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card ul li.no::before { content: '✕'; color: var(--border); }
.pricing-card ul li.no { color: var(--muted); }
.pricing-badge {
  display: inline-block; background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 100px;
  padding: 3px 12px; margin-bottom: 10px; letter-spacing: 0.5px;
}

/* ── TABLE ── */
.table-wrap { overflow-x: auto; margin-top: 48px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: var(--card-bg); }
th, td { padding: 15px 22px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; }
th { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; background: var(--bg-2); }
tr:last-child td { border-bottom: none; }
td:first-child { color: var(--text); }
td .yes { color: var(--teal); font-weight: 700; }
td .no  { color: var(--border); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0d1a20;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(16px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}
#cookie-banner p {
  font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6;
  margin: 0; flex: 1; min-width: 220px;
}
#cookie-banner p a { color: var(--teal); text-decoration: underline; }
#cookie-banner .cookie-actions {
  display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}
#cookie-banner .btn-cookie-all {
  background: var(--teal); color: #fff;
  border: none; border-radius: 100px;
  padding: 10px 22px; font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
#cookie-banner .btn-cookie-all:hover { background: var(--teal-lt); }
#cookie-banner .btn-cookie-necessary {
  background: transparent; color: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.18); border-radius: 100px;
  padding: 10px 22px; font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: all .2s;
}
#cookie-banner .btn-cookie-necessary:hover {
  border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8);
}
#cookie-banner .btn-cookie-settings {
  background: none; border: none; padding: 10px 4px;
  font-size: 13px; color: rgba(255,255,255,0.35);
  cursor: pointer; text-decoration: underline; white-space: nowrap;
  transition: color .2s;
}
#cookie-banner .btn-cookie-settings:hover { color: rgba(255,255,255,0.6); }

/* ── COOKIE TOGGLE ── */
.toggle-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--border); gap: 24px;
}
.toggle-row:last-child { border-bottom: none; }
.toggle-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.toggle-info p  { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.toggle { position: relative; width: 48px; height: 26px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: var(--border); border-radius: 13px; cursor: pointer; transition: background .2s; }
.slider::before { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: white; left: 3px; top: 3px; transition: transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
input:checked + .slider { background: var(--teal); }
input:checked + .slider::before { transform: translateX(22px); }
input:disabled + .slider { cursor: not-allowed; opacity: .5; }

/* ── JOB CARD (karriere) ── */
.job-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; transition: all .22s;
  text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.job-card:hover { border-color: var(--teal); transform: translateX(4px); box-shadow: var(--shadow-md); }
.job-tag {
  display: inline-block; background: var(--teal-pale);
  border: 1px solid rgba(43,191,191,0.3);
  color: var(--teal); font-size: 12px; font-weight: 600;
  border-radius: 100px; padding: 3px 12px; margin-bottom: 8px;
}
.job-title { font-size: 18px; font-weight: 700; color: var(--text); }
.job-meta  { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 64px 20px; }
  .page-hero { padding: calc(var(--nav-h) + 56px) 20px 64px; }
  .page-hero h1 { font-size: clamp(22px, 7vw, 38px); overflow-wrap: break-word; word-break: break-word; }
  footer { padding: 56px 20px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(20px, 6vw, 30px); }
}
