/* =========================================================
  Minimal, clean, "store-like" baseline – ohne Copy/Paste von Brand-Designs.
  Du kannst über :root schnell global anpassen.
========================================================= */

:root {
  --bg: #ffffff;
  --text: #101114;
  --muted: #999da5;
  --card: #f6f7f9;
  --headline: linear-gradient(180deg, #ffffff, #646464);
  --accent-gradient: linear-gradient(135deg, #ff7a1a, #ff4f00);
  --border: rgba(73, 69, 69, 0.192);
  --shadow: 0 12px 30px rgba(16, 17, 20, .06);
  --radius: 22px;
  --blur: 3px;

  --container: 1120px;
  --pad: clamp(16px, 3vw, 28px);

  --h1: clamp(28px, 4vw, 52px);
  --h2: clamp(20px, 2.3vw, 32px);
  --h3: 18px;

  --lead: clamp(16px, 1.5vw, 18px);
  --fine: 13px;

  --btnH: 44px;
  --transition-fast: 180ms ease-out;
  --transition-slow: 500ms ease-out;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, BlinkMacSystemFont, Arial, sans-serif;
  background-image: url('../img/site/main-background.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

main{
  flex: 1;
}

section[id] {
  scroll-margin-top: 50px;
}

img {
  max-width: 100%;
  display: block;
}

.section {
  padding: clamp(26px, 5vw, 64px) 0;
}


.container {
  width: min(100% - (var(--pad) * 2), var(--container));
  margin-inline: auto;
}





.section_header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(14px, 2.2vw, 22px);
}

a {
  color: inherit;
  text-decoration: none;
}

.policy, a{ 
  min-width: 0; 
  overflow-wrap: anywhere;
}

.h1 {
  font-size: var(--h1);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  background-image: var(--headline);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.h2 {
  font-size: var(--h2);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  background-image: var(--headline);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.h3 {
  font-size: var(--h3);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.lead {
  font-size: var(--lead);
  margin: 0;
  text-align: justify;
}

.fine {
  font-size: var(--fine);
  margin: 0;
}

.muted {
  color: var(--muted);
  margin: 0 0;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .95em;
}

strong {
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.weak {
  background-image: var(--headline);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

hr {
  width: 40%;
  text-align: center;
  border: 1px solid var(--muted);
  color: var(--muted)
}

.stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 17, 20, .06);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: rgba(16, 17, 20, .78);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-media {
  overflow: hidden;
}

/* Buttons */
.btn {
  height: var(--btnH);
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent-gradient);
  border-color: var(--border);
  color: white;
  box-shadow: 4px 4px 10px rgba(255, 121, 26, 0.616);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(2px);
  filter: brightness(0.9);
  box-shadow: 6px 4px 8px rgba(255, 121, 26, 0);
}

.btn-ghost {
  background: rgba(16, 17, 20, 0.1);
  border-color: var(--border);
  color: var(--text);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.301);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-ghost:hover {
  background: rgba(16, 17, 20, 0.2);
  transform: translateY(2px);
  box-shadow: 6px 4px 8px rgba(255, 121, 26, 0);
}

.btn-small {
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

.social {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0;
  bottom: 20%;
  z-index: 60;
  transition: opacity var(--transition-fast);

  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Platz für spätere Buttons */
}

body.menu_open .social {
  opacity: 1;
  pointer-events: auto;
}

.social-btn {
  width: 80px;
  height: 80px;

  display: grid;
  place-items: center;

  border-top: 1px solid rgba(134, 131, 131, 0.397);
  border-right: 1px solid rgba(134, 131, 131, 0.397);
  border-bottom: 1px solid rgba(134, 131, 131, 0.397);
  box-shadow: var(--shadow);

  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  border-radius: 0 14px 14px 0;

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.social-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55), var(--shadow);
}

.social-btn:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), var(--shadow);
}

.social-icon {
  width: 60%;
  height: 60%;
  display: block;
}

@media (max-width: 500px) {
  .social-btn {
    width: 60px;
    height: 60px;
  }

  .social {
    gap: 16px;
  }
}

/* Links */
.link {
  color: var(--text);
  font-weight: 650;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* =========================================================
  HERO
========================================================= */
.hero {
  padding-top: clamp(34px, 6vw, 72px);
}

.hero_grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
}

.hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero_media {
  padding: 0;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.hero_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Mobile stacking */
@media (max-width: 900px) {
  .hero_grid {
    grid-template-columns: 1fr;
  }

  .hero_media {
    min-height: 220px;
  }
}


/* SPLIT SECTION */
.split {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 0px;
}

.split_media {
  min-height: 240px;
  background: rgba(16, 17, 20, .06);
}

.split_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split_copy {
  padding: clamp(16px, 3vw, 26px);
}

.list {
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.list li::marker {
  content: '✓  ';
  color: #16a34a; 
	font-weight: 800;
	font-size: 20px;

}



@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split_media {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

/* =========================================================
  CAROUSEL (Produktreihe)
========================================================= */
.carousel {
  position: relative;
}

.carousel_track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 14px;
  scroll-snap-type: x mandatory;
  scroll-padding: 6px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  outline: none;
}

.carousel_track:focus {
  box-shadow: 0 0 0 3px rgba(17, 19, 24, .18);
  border-radius: 16px;
}

.product {
  flex: 0 0 auto;
  width: clamp(240px, 42vw, 320px);
  scroll-snap-align: start;
  overflow: hidden;
}

.product_media {
  aspect-ratio: 16/10;
  background: rgba(16, 17, 20, .06);
  border-bottom: 1px solid var(--border);
}

.product_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.product_body {
  padding: 16px;
}

.product_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.price {
  font-weight: 750;
}

/* Scrollbar: show on desktop, hide on touch/mobile */
.carousel_track {
  scrollbar-color: rgba(16, 17, 20, .35) transparent;
  scrollbar-width: thin;
}

.carousel_track::-webkit-scrollbar {
  height: 10px;
}

.carousel_track::-webkit-scrollbar-track {
  background: transparent;
}

.carousel_track::-webkit-scrollbar-thumb {
  background: rgba(16, 17, 20, .28);
  border-radius: 999px;
}

@media (hover:none) and (pointer:coarse) {
  .carousel_track {
    scrollbar-width: none;
  }

  .carousel_track::-webkit-scrollbar {
    display: none;
  }
}

/* Optional progress */
.carousel_progress {
  height: 3px;
  background: rgba(16, 17, 20, .08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.carousel_bar {
  height: 100%;
  width: 0%;
  background: rgba(16, 17, 20, .45);
  border-radius: 999px;
  transform-origin: left center;
}

/* =========================================================
  5er GRID (3+2)
========================================================= */
.grid2 {
  display: grid;
  gap: 14px;
  grid-template-columns: auto auto;
}

.grid3 {
  display: grid;
  gap: 14px;
}

.grid5 {
  display: grid;
  gap: 14px;
}

/* Desktop layout: 6-column grid
   - first 3 cards span 2 columns each (3 across)
   - last 2 cards span 3 columns each (2 across)
*/
@media (min-width: 900px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid5 {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid5>.feature {
    grid-column: span 2;
  }

  .grid5>.feature-wide {
    grid-column: span 3;
  }
}

.feature {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 0px;
}

.feature_media {
  aspect-ratio: 16/10;
  background: rgba(16, 17, 20, .06);
  border-bottom: 1px solid var(--border);
}

.feature_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature_body {
  padding: 16px;
}

.pile{
  justify-content: space-around;
  padding-top: 16px;
  padding-left: 40px;
  
  display: flex;
  flex-direction: column;
  gap: 12px;
  
}

/* =========================================================
  SPLIT SECTION
========================================================= */
.split {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split_media {
  min-height: 240px;
  background: rgba(16, 17, 20, .06);
  border-right: 1px solid var(--border);
}

.split_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split_copy {
  padding: clamp(16px, 3vw, 26px);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split_media {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

/* =========================================================
  BENEFITS GRID
========================================================= */
.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.benefit {
  padding: 18px;
}

.benefit_icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(16, 17, 20, .06);
  border: 1px solid var(--border);
}

.price-groups {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1000px) {
  .price-groups {
    grid-template-columns: 1fr;
  }
}


/* PRICE LIST */
.price-group {
  overflow: hidden;
}

.price-group_header {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(16, 17, 20, .03);
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .45);
}

.price-item:first-child {
  border-top: 0;
}

.price-item_main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-item_title {
  font-weight: 750;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-item_desc {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-item_end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.price-item_price {
  font-weight: 800;
  min-width: 56px;
  text-align: right;
}

@media (max-width: 520px) {
  .price-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-item_end {
    width: 100%;
    justify-content: space-between;
  }

  .price-item_title,
  .price-item_desc {
    white-space: normal;
  }
}

/* =========================================================
  FAQ (details)
========================================================= */
.faq {
  padding: 14px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq[open] summary {
  margin-bottom: 10px;
}

.faq_body {
  padding-right: 6px;
}

/* =========================================================
  CTA STRIP
========================================================= */
.cta {
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cta_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 700px) {
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}



.site_footer {
  z-index: 80;
  background: rgba(17, 17, 17, 0.8);
  color: var(--muted);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 22px 0 28px;
}

.site_footer_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links a:hover {
  color: #ff4f00;
}


/* Footer: show "Zum Anfang" as an arrow button (desktop + mobile) */
.footer-to-top {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--muted);

}

.footer-to-top::before {
  content: "↑";
  font-size: 18px;
  line-height: 1;
}

/* keep the label accessible for screen readers */
.footer-to-top-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-links {
  align-items: center;
}

/* =========================================================
  HEADER + BURGER MENU (Dropdown unter Header, rechts)
========================================================= */
.site_header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);

  transition: transform var(--transition-fast);
}

.site_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.icon_btn {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid rgba(134, 131, 131, 0.397);
  background: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform 0.08s ease;
}

.icon_btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55), var(--shadow);
}

.burger {
  width: 30px;
  height: 30px;
  display: grid;
  gap: 12px;
}

.burger span {
  height: 2px;
  border-radius: 999px;
  background: rgb(199, 199, 199);
  display: block;
}

@media (min-width: 900px) {
  .menu_overlay {
    display: none !important;
  }
}

/* Mobile: hide on scroll down, show on scroll up */
@media (max-width: 900px) {
  .site_header.header_hidden {
    transform: translateY(-110%);
  }
}

.menu_shell {
  top: 20%;
  position: fixed;
  right: 0;
  z-index: 75;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

body.menu_open .menu_shell {
  opacity: 1;
  pointer-events: auto;
}

/* Container im Menü neutralisieren (damit rechts "flush" möglich ist) */
.menu_shell .container {
  width: 100%;
  margin: 0;
  padding-inline: 0;
  max-width: none;
}

.menu_panel {
  display: flex;
  flex-direction: column;
}

.menu_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0px;
}

.menu_link {
  width: 400px;
  height: 80px;

  display: grid;
  place-items: center;
  justify-content: flex-start;
  /* Textanordnung*/

  border-top: 1px solid rgba(134, 131, 131, 0.397);
  border-left: 1px solid rgba(134, 131, 131, 0.397);
  border-bottom: 1px solid rgba(134, 131, 131, 0.397);
  border-radius: 14px 0 0 14px;
  box-shadow: var(--shadow);
  text-decoration: none;

  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  padding: 0 20px;

  transition:
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.menu_link:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55), var(--shadow);
}

.menu_link:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), var(--shadow);
}

@media (max-width: 500px) {
  .menu_link {
    width: 250px;
    height: 60px;
  }
}

@media (max-width: 1900px) {
  .menu_link {
    background: rgba(0, 0, 0, 0.6);
  }

  .social-btn {
    background: rgba(0, 0, 0, 0.6);
  }
}