/* ============================================================
   Andreas Hoiboom – Hauptstylesheet v2
   Mobile First | Dark Theme | Elegantes Design ohne Icons
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg:          #38505F;
  --bg-2:        #425B6B;
  --bg-card:     #4E6878;
  --bg-card-2:   #2D4050;
  --teal:        #61FFD0;
  --teal-dim:    #3DBFA0;
  --red:         #FF363D;
  --gold:        #E0BD7E;
  --gold-light:  #EFD6AE;
  --sage:        #B7C7B2;
  --light:       #C3D7DE;
  --text:        #E8EEF2;
  --text-muted:  #8B9EA8;
  --text-dim:    #566878;
  --border:      rgba(193,215,222,0.1);
  --border-teal: rgba(97,255,208,0.2);
  --border-gold: rgba(224,189,126,0.25);
  --shadow:      0 8px 48px rgba(0,0,0,0.5);
  --shadow-sm:   0 2px 16px rgba(0,0,0,0.3);
  --radius:      10px;
  --radius-lg:   18px;
  --ff-heading:  'Playfair Display', Georgia, serif;
  --ff-body:     'Montserrat', system-ui, sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:       1140px;
  --section-pad: 80px 20px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--text); line-height: 1.75; font-weight: 400; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--ff-heading); line-height: 1.2; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.01em; }
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--light); font-weight: 300; line-height: 1.85; }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-light { color: var(--light); }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--dark  { background: var(--bg); }
.section--alt   { background: var(--bg-2); }
.section--deep  { background: var(--bg-card-2); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Eyebrow / Labels ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }

.divider {
  width: 44px; height: 2px;
  background: linear-gradient(to right, var(--teal), var(--gold));
  border-radius: 1px;
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 2px;
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
  border: 1px solid transparent; text-decoration: none; white-space: nowrap;
}

.btn-primary { background: var(--teal); color: var(--bg); border-color: var(--teal); }
.btn-primary:hover { background: transparent; color: var(--teal); box-shadow: 0 0 32px rgba(97,255,208,0.2); }
.btn-outline { background: transparent; color: var(--teal); border-color: rgba(97,255,208,0.4); }
.btn-outline:hover { border-color: var(--teal); box-shadow: 0 0 20px rgba(97,255,208,0.15); color: var(--teal); }
.btn-gold { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); box-shadow: 0 0 24px rgba(224,189,126,0.25); }
.btn-ghost { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-lg { padding: 18px 44px; font-size: 0.85rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(56,80,95,0.8);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.nav.scrolled { background: rgba(56,80,95,0.97); height: 62px; box-shadow: var(--shadow-sm); }
.nav__logo { font-family: var(--ff-heading); font-size: 1.25rem; color: var(--text) !important; font-weight: 700; }
.nav__logo span { color: var(--teal); }

.nav__menu {
  display: none; flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(56,80,95,0.99); backdrop-filter: blur(24px);
  z-index: 999; align-items: center; justify-content: center; gap: 28px;
}
.nav__menu.open { display: flex; }
.nav__menu a { font-size: 1.3rem; font-family: var(--ff-heading); color: var(--text); transition: color var(--transition); }
.nav__menu a:hover, .nav__menu a.active { color: var(--teal); }

.nav__cta { display: none; }
.nav__hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 4px; background: none; border: none; }
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); border-radius: 1px; transition: all var(--transition); }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 110px 24px 80px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(97,255,208,0.04) 0%, transparent 60%);
}
.hero__bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero__bg-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(56,80,95,0.88) 0%, rgba(56,80,95,0.6) 50%, rgba(56,80,95,0.8) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero__eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 24px;
  padding: 7px 18px; border: 1px solid var(--border-teal); border-radius: 0;
}
.hero__title { margin-bottom: 28px; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--light); font-weight: 300; margin-bottom: 44px; max-width: 560px; line-height: 1.9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero 2-column split variant */
.hero__portrait { display: none; }
.hero--split .hero__content { display: flex; flex-direction: column; gap: 40px; }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-dim); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.9; } }

/* ---------- Page Header ---------- */
.page-header {
  padding: 148px 24px 88px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(97,255,208,0.05) 0%, transparent 70%);
}
.page-header > * { position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-dim); margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--text-dim); }

/* ---------- Image Section ---------- */
.img-hero {
  width: 100%; aspect-ratio: 16/7; object-fit: cover; object-position: center top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.img-portrait {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  border-radius: var(--radius);
}

.img-square {
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center;
  border-radius: var(--radius);
}

.img-landscape {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
  border-radius: var(--radius);
}

/* ---------- Elegant Cards (ohne Icons) ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, var(--teal), var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.card:hover { border-color: rgba(97,255,208,0.15); }
.card:hover::before { opacity: 1; }

.card h4 { margin-bottom: 12px; font-size: 1.05rem; }
.card p { font-size: 0.92rem; }

/* ---------- Offer Cards (Homepage) ---------- */
.offer-cards { display: grid; grid-template-columns: 1fr; gap: 2px; }

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.offer-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.offer-card:hover { background: rgba(78,104,120,0.9); }
.offer-card:hover::after { opacity: 0.5; }

.offer-card__num {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-style: italic;
}
.offer-card__title { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 16px; }
.offer-card__text { flex: 1; font-size: 0.92rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.offer-card__price { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--teal); margin-bottom: 20px; }
.offer-card__link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; transition: all var(--transition);
  padding-bottom: 2px; border-bottom: 1px solid var(--border);
}
.offer-card__link:hover { color: var(--teal); border-color: var(--teal); gap: 16px; }

/* ---------- Feature List ---------- */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px;
  color: var(--text-muted); font-size: 0.93rem; line-height: 1.7;
}
.feature-list li::before {
  content: ''; width: 5px; height: 5px; min-width: 5px;
  background: var(--teal); border-radius: 50%; margin-top: 8px;
}

/* ---------- Qualifications Grid ---------- */
.qualif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.qualif-item {
  background: var(--bg-card);
  padding: 16px 20px;
  font-size: 0.87rem; color: var(--text-muted);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 12px;
}
.qualif-item::before { content: '—'; color: var(--teal); font-size: 0.75rem; flex-shrink: 0; }
.qualif-item:hover { background: rgba(78,104,120,0.9); color: var(--light); }

/* ---------- Module Box ---------- */
.module-box {
  border: 1px solid var(--border); padding: 36px 32px;
  position: relative; background: var(--bg-card);
}
.module-box__number {
  position: absolute; top: -1px; left: 32px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bg); background: var(--teal); padding: 5px 14px;
}
.module-dates { display: flex; flex-direction: column; gap: 6px; margin: 16px 0; }
.module-dates li { color: var(--text-muted); font-size: 0.88rem; display: flex; align-items: center; gap: 10px; }
.module-dates li::before { content: ''; width: 4px; height: 4px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* ---------- Quote ---------- */
.quote-block {
  padding: 40px 40px 40px 60px;
  border-left: 2px solid var(--teal);
  background: var(--bg-card);
  position: relative;
}
.quote-block::before {
  content: '"'; position: absolute; top: 16px; left: 18px;
  font-family: var(--ff-heading); font-size: 5rem; color: var(--teal);
  opacity: 0.25; line-height: 1;
}
.quote-block p {
  font-family: var(--ff-heading); font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--light); font-style: italic; margin: 0; line-height: 1.75;
}

/* ---------- Bio / Portrait ---------- */
.bio-grid { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: center; }
.bio-image { position: relative; }
.bio-image__frame {
  overflow: hidden; aspect-ratio: 3/4;
  background: var(--bg-card);
}
.bio-image__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio-image__badge {
  position: absolute; bottom: -20px; right: 0;
  background: var(--bg-card); border: 1px solid var(--border-teal);
  padding: 14px 22px; text-align: center;
}
.bio-image__badge strong { display: block; font-family: var(--ff-heading); font-size: 1.4rem; color: var(--teal); }
.bio-image__badge span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

.values-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.values-list li {
  padding: 7px 18px; border: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em;
  transition: all var(--transition);
}
.values-list li:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin: 48px 0; background: var(--border); }
.stat { background: var(--bg-card); padding: 28px 20px; text-align: center; }
.stat__value { font-family: var(--ff-heading); font-size: 2.4rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.stat__label { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Pricing Card ---------- */
.pricing-card {
  border: 1px solid var(--border-teal); padding: 48px 40px;
  text-align: center; position: relative; background: var(--bg-card);
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--teal), var(--gold));
}
.pricing-card__amount { font-family: var(--ff-heading); font-size: 3.8rem; font-weight: 700; color: var(--teal); line-height: 1; margin: 20px 0 6px; }
.pricing-card__period { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 32px; }

/* ---------- Product Cards (Angebote-Seite) ---------- */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--border); }

.product-card {
  background: var(--bg-card); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: background var(--transition);
  position: relative;
}
.product-card:hover { background: rgba(78,104,120,0.95); }

.product-card__cat {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 10px;
}
.product-card__title { font-family: var(--ff-heading); font-size: 1.05rem; color: var(--text); margin-bottom: 10px; font-weight: 600; line-height: 1.3; }
.product-card__desc { font-size: 0.88rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; line-height: 1.7; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.product-card__price { font-family: var(--ff-heading); font-size: 1.3rem; color: var(--teal); font-weight: 700; white-space: nowrap; }
.product-card__price-sub { font-size: 0.72rem; color: var(--text-dim); font-family: var(--ff-body); font-weight: 400; display: block; }
.product-card__cta { color: var(--text-dim); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: all var(--transition); white-space: nowrap; }
.product-card__cta:hover { color: var(--teal); border-color: var(--teal); }

/* Category Header (Angebote) */
.cat-header {
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.cat-header__num { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.cat-header h2 { font-size: clamp(1.4rem, 3vw, 2rem); }

/* ---------- Image Gallery Row ---------- */
.img-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.img-row img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: opacity var(--transition); }
.img-row img:hover { opacity: 0.9; }
.img-row--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Section Image Splits ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split__image { position: relative; }
.split__image img { width: 100%; object-fit: cover; }

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 112px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, rgba(97,255,208,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(224,189,126,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section .lead { margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Contact Form ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 0; padding: 14px 18px; font-family: var(--ff-body);
  font-size: 0.93rem; color: var(--text); transition: all var(--transition); outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(97,255,208,0.5); box-shadow: 0 0 0 3px rgba(97,255,208,0.07);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-msg { padding: 14px 18px; font-size: 0.88rem; display: none; }
.form-msg.success { background: rgba(97,255,208,0.07); border: 1px solid rgba(97,255,208,0.3); color: var(--teal); display: block; }
.form-msg.error { background: rgba(255,54,61,0.07); border: 1px solid rgba(255,54,61,0.3); color: var(--red); display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-card-2); border-top: 1px solid var(--border); padding: 72px 24px 36px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 44px; max-width: var(--max-w); margin: 0 auto; }
.footer__brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 14px; max-width: 260px; line-height: 1.8; }
.footer__logo { font-family: var(--ff-heading); font-size: 1.2rem; color: var(--text); font-weight: 700; }
.footer__logo span { color: var(--teal); }
.footer__nav h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer__nav a:hover { color: var(--teal); }
.footer__bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
}
.footer__bottom p { font-size: 0.8rem; color: var(--text-dim); margin: 0; }

/* ---------- Scroll Animations ---------- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.75s ease; }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---------- Misc ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Mega Menu ---------- */
.nav__drop-wrap { position: relative; }
.nav__drop { display: none; }

/* ---------- Tablet 768px+ ---------- */
@media (min-width: 768px) {
  :root { --section-pad: 108px 32px; }

  .nav__menu { position: static; display: flex; flex-direction: row; background: none; backdrop-filter: none; gap: 28px; align-items: center; }
  .nav__menu > a, .nav__drop-wrap > a { font-size: 0.82rem; font-family: var(--ff-body); letter-spacing: 0.06em; font-weight: 500; color: var(--text); transition: color var(--transition); }
  .nav__menu > a:hover, .nav__menu > a.active, .nav__drop-wrap > a:hover, .nav__drop-wrap > a.active { color: var(--teal); }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }

  /* Mega-Menu: dropdown positions relative to .nav (fixed bar) */
  .nav__drop-wrap { position: static; }

  .nav__drop {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100vw - 40px));
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-top: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 200;
    box-shadow: 0 20px 56px rgba(0,0,0,0.5);
    overflow: visible;
  }
  .nav__drop-wrap:hover .nav__drop { opacity: 1; pointer-events: all; }

  /* Mega header row */
  .nav__mega-header {
    padding: 11px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav__drop-all {
    font-size: 0.68rem; font-weight: 700; font-family: var(--ff-body);
    color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase;
  }
  .nav__drop-all:hover { color: var(--gold); }

  /* 4-column grid */
  .nav__mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .nav__mega-col {
    border-right: 1px solid var(--border);
    padding-bottom: 16px;
  }
  .nav__mega-col:last-child { border-right: none; }

  .nav__drop-sec {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: #94B0BF; padding: 12px 20px 4px;
    border-top: 1px solid var(--border);
  }
  .nav__mega-col > .nav__drop-sec:first-child { border-top: none; padding-top: 12px; }

  .nav__drop a {
    display: block; padding: 6px 20px;
    font-size: 0.78rem; font-family: var(--ff-body);
    color: var(--text-muted); font-weight: 400;
    letter-spacing: 0; text-transform: none;
    transition: all var(--transition);
  }
  .nav__drop a:hover { color: var(--teal); background: rgba(97,255,208,0.04); }

  .nav__drop-wrap > a::after { content: ' ▾'; font-size: 0.55rem; opacity: 0.5; }

  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .offer-cards { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { grid-template-columns: 1fr 1.5fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .qualif-grid { grid-template-columns: repeat(3, 1fr); }
  .img-row { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Desktop 1024px+ ---------- */
@media (min-width: 1024px) {
  :root { --section-pad: 128px 40px; }
  .offer-cards { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { gap: 72px; }
  .hero { padding: 130px 40px 110px; }

  /* Hero split: 2 columns */
  .hero--split .hero__content {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .hero--split .hero__text { flex: 1 1 50%; }
  .hero__portrait {
    display: block;
    flex: 0 0 42%;
    max-width: 42%;
  }
  .hero__portrait img {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
}

/* ---------- Mobile: Abstände & Angebote-Akkordeon ---------- */
@media (max-width: 767px) {
  /* Box-Abstände zwischen Karten auf Mobile */
  .card { margin-bottom: 10px; }
  .card:last-child { margin-bottom: 0; }
  .offer-card { margin-bottom: 10px; }
  .offer-card:last-child { margin-bottom: 0; }
  .product-card { margin-bottom: 10px; }
  .product-card:last-child { margin-bottom: 0; }
  .qualif-grid { gap: 10px; background: transparent; }
  .qualif-item { border: 1px solid var(--border); }
  .stats-row { gap: 10px; background: transparent; }
  .stat { border: 1px solid var(--border); }
  .grid-3 > .card { margin-bottom: 0; }
  .grid-3 { gap: 10px; }
  .grid-2 { gap: 10px; }

  /* Mobile Nav: Angebote-Akkordeon */
  .nav__menu { overflow-y: auto; justify-content: flex-start; padding: 100px 24px 40px; }

  .nav__drop-wrap.mobile-open .nav__drop {
    display: block;
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    background: transparent;
    margin-top: 8px;
    padding: 0;
  }
  .nav__drop-wrap.mobile-open .nav__mega-header { display: none; }
  .nav__drop-wrap.mobile-open .nav__mega-grid {
    display: flex;
    flex-direction: column;
  }
  .nav__drop-wrap.mobile-open .nav__mega-col {
    border-right: none;
    padding-bottom: 0;
  }
  .nav__drop-wrap.mobile-open .nav__drop-sec {
    font-size: 0.62rem;
    color: var(--teal);
    padding: 12px 0 4px;
    border-top: none;
    text-align: center;
    letter-spacing: 0.18em;
  }
  .nav__drop-wrap.mobile-open .nav__mega-col > .nav__drop-sec:first-child { padding-top: 12px; }
  .nav__drop-wrap.mobile-open .nav__drop a {
    font-size: 1rem;
    font-family: var(--ff-heading);
    text-align: center;
    padding: 7px 0;
    color: var(--text-muted);
    display: block;
    letter-spacing: 0;
    font-weight: 400;
  }
  .nav__drop-wrap.mobile-open .nav__drop a:hover { color: var(--teal); background: none; }

  /* Chevron auf dem Angebote-Link */
  .nav__drop-wrap > a::after {
    content: ' ▾';
    font-size: 0.65rem;
    opacity: 0.6;
    display: inline-block;
    transition: transform 0.3s;
  }
  .nav__drop-wrap.mobile-open > a::after { transform: rotate(180deg); }
}
