/* =============================================
   notebook4all GmbH — Design System
   ============================================= */

/* ── LOKALE FONTS ──────────────────────────── */
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/dm-sans-v17-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/dm-sans-v17-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/dm-sans-v17-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/dm-sans-v17-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/space-grotesk-v22-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/space-grotesk-v22-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/space-grotesk-v22-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/space-grotesk-v22-latin-700.woff2') format('woff2'); }
/* Fonts werden lokal via @font-face geladen (siehe oben) – kein externer Google-Fonts-Import (DSGVO/Performance) */

/* ── RESET & BASE ──────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #E8401C;
  --brand-dark:  #C43015;
  --brand-light: #FDF1EE;
  --black:       #0D0D0D;
  --white:       #FFFFFF;
  --gray-bg:     #F7F6F4;
  --gray-text:   #6B6B6B;
  --gray-border: #E2E0DB;
  --section-pad: 100px;
  --max-w:       1160px;
  --radius:      12px;
  --radius-sm:   8px;
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
/* Text-Links (Fließtext) erkennbar unterstreichen – Navigation/Buttons/Logo bleiben ohne */
p a, li a, label a, .faq-a-inner a, .auftrag-terms a, .newsticker a { text-decoration: underline; text-underline-offset: 2px; }

/* ── INFO BAR ──────────────────────────────── */
.info-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--black);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 7px 0;
}
.info-bar-inner {
  max-width: calc(var(--max-w) + 64px);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.info-bar-left,
.info-bar-middle,
.info-bar-right { display: flex; align-items: center; gap: 5px; }
.info-bar-middle { gap: 16px; }
.info-bar-item { display: flex; align-items: center; gap: 5px; }
.info-bar-item svg { width: 14px; height: 14px; fill: var(--brand); flex-shrink: 0; }
.info-bar-item strong { color: white; }
.info-bar a { color: rgba(255,255,255,.75); transition: color .2s; }
.info-bar a:hover { color: white; }
.info-bar-mobile-br { display: none; }

/* ── NEWSTICKER ────────────────────────────── */
.newsticker { background: var(--brand); color: white; font-size: 13px; font-weight: 500; padding: 7px 0; overflow: hidden; white-space: nowrap; }
.newsticker-inner { display: inline-block; animation: ticker 60s linear infinite; padding-left: 100%; }
.newsticker-inner:hover { animation-play-state: paused; }
.newsticker-sep { margin: 0 40px; opacity: .5; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ── URLAUBS-BANNER ────────────────────────── */
.urlaub-banner { background: #1a1a1a; color: white; font-size: 14px; font-weight: 500; padding: 10px 32px; text-align: center; display: none; border-bottom: 2px solid var(--brand); }
.urlaub-banner.aktiv { display: block; }

/* ── NAVIGATION ────────────────────────────── */
nav {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 102;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
}
.nav-inner {
  max-width: calc(var(--max-w) + 64px);
  margin: 0 auto;
  padding: 0 32px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
/* Logo Desktop */
.logo-nav { height: 46px; width: auto; display: block; }
/* Logo Footer */
.logo-footer { height: 52px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-text); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }

/* ── BUTTONS ───────────────────────────────── */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s; border: none; }
.btn-primary { background: var(--brand); color: white !important; }
.btn-success, .btn-success:hover { background: #16a34a !important; color: white !important; transform: none; cursor: default; }

/* „Nach oben“-Button */
.back-to-top { position: fixed; bottom: 24px; right: 24px; z-index: 95; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--brand); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s, transform .25s, visibility .25s, background .2s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-dark); }
.back-to-top svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-secondary:hover { background: var(--brand-light); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-white { background: white; color: var(--black); }
.btn-white:hover { background: #f0f0f0; }
.btn-ghost { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-fb { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--black); border-radius: var(--radius-sm); transition: all .2s; flex-shrink: 0; margin-right: -24px; }
.btn-fb:hover { background: #222; transform: translateY(-1px); }

/* ── BURGER MENÜ ───────────────────────────── */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; background: none; border: none; padding: 4px; position: relative; z-index: 103; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--black); transition: color .2s; }
.nav-mobile a:hover { color: var(--brand); }
.nav-mobile .btn-primary { font-size: 18px; padding: 16px 40px; }
.nav-mobile-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; cursor: pointer; background: none; border: none; font-size: 32px; color: var(--black); line-height: 1; }
.nav-mobile-info { text-align: center; font-size: 14px; color: var(--gray-text); line-height: 1.8; margin-top: 8px; padding-top: 24px; border-top: 1px solid var(--gray-border); width: 80%; }
.nav-mobile-info a { color: var(--black); font-size: 16px; font-weight: 600; }
.nav-mobile-legal { display: flex; gap: 12px; font-size: 12px; color: var(--gray-text); padding-top: 12px; flex-wrap: wrap; justify-content: center; }
.nav-mobile-legal a { color: var(--gray-text); }
.nav-mobile-legal a:hover { color: var(--brand); }
.nav-mobile-legal-sep { color: var(--gray-text); font-size: 12px; }
.nav-mobile-btn-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.nav-mobile-btn-row .btn-fb { width: 56px; height: 56px; flex-shrink: 0; margin-right: 0; }

/* ── LAYOUT HELPERS ────────────────────────── */
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; display: block; }
.section-h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; letter-spacing: -.3px; }
.section-sub { font-size: 17px; color: var(--gray-text); max-width: 560px; line-height: 1.65; margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.link-white { color: white; text-decoration: underline; }
.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; }
.honeypot { display: none; }

/* ── FOCUS / BARRIEREFREIHEIT ──────────────── */
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* ── HERO ──────────────────────────────────── */
#hero { background-color: var(--black); background-image: linear-gradient(90deg, rgba(13,13,13,.88) 0%, rgba(13,13,13,.50) 50%, rgba(13,13,13,.52) 100%), url('images/notebook.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; color: white; padding: 120px 32px; overflow: hidden; position: relative; }
#hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232,64,28,.18) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,64,28,.15); border: 1px solid rgba(232,64,28,.3); border-radius: 100px; padding: 6px 16px; font-size: 13px; color: #ff8066; font-weight: 500; margin-bottom: 28px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.hero-h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 58px); font-weight: 700; line-height: 1.1; margin-bottom: 24px; letter-spacing: -.5px; }
.hero-h1 span { color: var(--brand); }
.hero-p { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-claim { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.4); }
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hero-badges-wrap { display: flex; flex-direction: row; gap: 10px; justify-content: flex-end; align-items: stretch; margin-bottom: -32px; position: relative; z-index: 2; }
.hero-since { background: var(--brand); border-radius: 12px; padding: 14px 18px; text-align: center; min-width: 100px; display: flex; flex-direction: column; justify-content: center; }
.hero-since strong { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: white; line-height: 1; }
.hero-since span { font-size: 11px; color: rgba(255,255,255,.8); margin-top: 3px; display: block; }
.hero-rating { background: white; border-radius: 12px; padding: 12px 16px; text-align: center; min-width: 100px; }
.hero-rating-stars { color: #F59E0B; font-size: 12px; letter-spacing: 2px; margin-bottom: 3px; }
.hero-rating strong { display: block; font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--black); line-height: 1; }
.hero-rating span { font-size: 10px; color: var(--gray-text); margin-top: 2px; display: block; }
.hero-card { background: rgba(255,255,255,.07); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 32px; }
.hero-card-title { font-family: var(--font-head); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.service-pill { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(255,255,255,.06); border-radius: 10px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,.08); }
.service-pill:last-child { margin-bottom: 0; }
.service-pill-dot { width: 32px; height: 32px; border-radius: 8px; background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-pill-dot svg { width: 16px; height: 16px; fill: white; }
.service-pill-name { font-size: 14px; font-weight: 500; color: white; }
.service-pill-price { margin-left: auto; font-size: 13px; color: rgba(255,255,255,.5); white-space: nowrap; }

/* ── STATS ─────────────────────────────────── */
#stats { background: var(--white); padding: var(--section-pad) 32px; border-bottom: 1px solid var(--gray-border); }
.stats-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-num span { color: var(--brand); }
.stat-label { font-size: 15px; color: var(--gray-text); line-height: 1.4; }

/* ── LEISTUNGEN ────────────────────────────── */
#leistungen { background: var(--gray-bg); padding: var(--section-pad) 32px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--gray-border); transition: all .3s; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.08); border-color: var(--brand); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; background: var(--brand-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 24px; height: 24px; fill: var(--brand); }
.service-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--gray-text); line-height: 1.6; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--brand); }
.service-card-link svg { width: 16px; height: 16px; fill: var(--brand); transition: transform .2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── ABLAUF ────────────────────────────────── */
#ablauf { background: var(--white); padding: var(--section-pad) 32px; }
.prozess-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 56px; }
.prozess-steps::before { content: ''; position: absolute; top: 28px; left: 56px; right: 56px; height: 1px; background: var(--gray-border); z-index: 0; }
.prozess-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--white); border: 2px solid var(--gray-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--gray-text); transition: all .3s; }
.prozess-step:hover .step-num { background: var(--brand); border-color: var(--brand); color: white; }
.step-title { font-family: var(--font-head); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--gray-text); line-height: 1.55; }

/* ── WARUM WIR ─────────────────────────────── */
#warum { background: var(--black); color: white; padding: var(--section-pad) 32px; }
.warum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.warum-text .section-label { color: #ff8066; }
.warum-text .section-h2 { color: white; }
.warum-h2 { font-size: clamp(24px, 3vw, 34px); }
.warum-text .section-sub { color: rgba(255,255,255,.6); margin-bottom: 40px; }
.warum-points { display: flex; flex-direction: column; gap: 20px; }
.warum-point { display: flex; gap: 16px; align-items: flex-start; }
.warum-point-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(232,64,28,.2); border: 1px solid rgba(232,64,28,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.warum-point-icon svg { width: 18px; height: 18px; fill: var(--brand); }
.warum-point-text h4 { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: white; margin-bottom: 4px; }
.warum-point-text p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.55; }
.warum-visual { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 40px; }
.warum-metric { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.warum-metric:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.warum-metric-label { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.warum-metric-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.warum-metric-fill { height: 100%; border-radius: 3px; background: var(--brand); }
.warum-metric-val { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: white; }
.warum-highlight-box { margin-top: 32px; padding: 20px; background: rgba(232,64,28,.15); border-radius: var(--radius); border: 1px solid rgba(232,64,28,.25); }
.warum-box-label { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.warum-box-value { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: white; }
.warum-box-note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 4px; }
.warum-rating-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px; text-align: center; margin-bottom: 20px; }
.warum-rating-stars { color: #F59E0B; font-size: 22px; letter-spacing: 3px; margin-bottom: 8px; }
.warum-rating-num { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: white; }
.warum-rating-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.warum-rating-link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--brand); text-decoration: underline; }

/* ── FAQ ───────────────────────────────────── */
#faq { background: var(--gray-bg); padding: var(--section-pad) 32px; }
.faq-wrap { max-width: 800px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; gap: 16px; }
.faq-q-text { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--black); line-height: 1.35; }
.faq-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.faq-icon svg { width: 14px; height: 14px; fill: none; stroke: var(--gray-text); stroke-width: 2; transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--brand); border-color: var(--brand); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 15px; color: var(--gray-text); line-height: 1.7; }

/* ── FOOTER CTA ────────────────────────────── */
.footer-cta-section { background: var(--brand); padding: 80px 32px; text-align: center; }
.footer-cta-section h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: white; margin-bottom: 16px; letter-spacing: -.3px; }
.footer-cta-section p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 36px; }
.footer-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────── */
footer { background: var(--black); color: white; padding: 80px 32px 40px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; align-items: start; }
.footer-brand .nav-logo { display: inline-block; line-height: 0; margin-top: -6px; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,.5); margin-top: -8px; line-height: 1.65; max-width: 280px; }
.footer-partner-logo { margin-top: 12px; opacity: .6; filter: brightness(0) invert(1); width: auto; height: auto; max-width: 200px; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── PAGE HERO (Unterseiten) ───────────────── */
.page-hero { background: var(--black); color: white; padding: 80px 32px; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero .section-label { color: #ff8066; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -.5px; color: white; }

/* ── REPARATUREN ───────────────────────────── */
.rep-section { padding: var(--section-pad) 32px; background: var(--white); }
.no-top-pad { padding-top: 56px; }
.rep-grid { display: flex; flex-direction: column; gap: 0; margin-top: 0; }
.rep-item { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--gray-border); }
.rep-item:first-child { padding-top: 0; }
.rep-item:last-child { border-bottom: none; }
.rep-item.reverse { direction: rtl; }
.rep-item.reverse > * { direction: ltr; }
.rep-visual { background: var(--gray-bg); border-radius: var(--radius); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-border); }
.rep-visual-icon { width: 80px; height: 80px; background: var(--brand-light); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.rep-visual-icon svg { width: 40px; height: 40px; fill: var(--brand); }
.rep-tag { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.rep-content h2 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.rep-content p { font-size: 16px; color: var(--gray-text); line-height: 1.7; margin-bottom: 20px; }
.rep-price-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: white; border-radius: var(--radius-sm); padding: 10px 18px; font-family: var(--font-head); font-size: 16px; font-weight: 600; }
.rep-price-badge span { color: var(--brand); font-size: 20px; }
.rep-list { color: var(--gray-text); margin: 0 0 20px 20px; line-height: 1.9; font-size: 16px; }

/* ── PREISE ────────────────────────────────── */
.preise-intro { max-width: calc(var(--max-w) + 64px); margin: 0 auto; padding: var(--section-pad) 32px; }
.preise-notice { background: var(--brand-light); border: 1px solid rgba(232,64,28,.2); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 56px; display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--black); }
.preise-notice svg { width: 24px; height: 24px; fill: var(--brand); flex-shrink: 0; }
.preise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.preis-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius); padding: 28px 24px; transition: all .25s; position: relative; overflow: hidden; }
.preis-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.preis-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.preis-card:hover::before { transform: scaleX(1); }
.preis-icon { width: 40px; height: 40px; background: var(--brand-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.preis-icon svg { width: 20px; height: 20px; fill: var(--brand); }
.preis-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.preis-desc { font-size: 14px; color: var(--gray-text); margin-bottom: 20px; line-height: 1.55; }
.preis-amount { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--brand); }
.preis-amount small { font-size: 14px; font-weight: 400; color: var(--gray-text); margin-left: 4px; }
.preise-footer-note { text-align: center; font-size: 15px; color: var(--gray-text); padding: 24px 0; border-top: 1px solid var(--gray-border); margin-top: 8px; }

/* ── KONTAKT ───────────────────────────────── */
.kontakt-wrap { max-width: calc(var(--max-w) + 64px); margin: 0 auto; padding: var(--section-pad) 32px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.info-block { display: flex; flex-direction: column; gap: 32px; }
.kontakt-foto { width: 100%; height: auto; display: block; border-radius: var(--radius); border: 1px solid var(--gray-border); }
.info-card { background: var(--gray-bg); border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-border); display: flex; gap: 18px; align-items: flex-start; }
.info-card-icon { width: 44px; height: 44px; background: var(--brand-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card-icon svg { width: 22px; height: 22px; fill: var(--brand); }
.info-card h4 { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--gray-text); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.info-card p { font-size: 15px; color: var(--black); line-height: 1.7; }
.info-card a { color: var(--brand); }
.form-card { background: var(--gray-bg); border-radius: var(--radius); padding: 40px; border: 1px solid var(--gray-border); }
.form-card h2 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.form-card .form-intro { font-size: 15px; color: var(--gray-text); margin-bottom: 32px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--black); transition: border-color .2s; outline: none; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--brand); }
.form-group textarea { height: 130px; resize: vertical; }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--brand); flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--gray-text); line-height: 1.5; }
.form-check a { color: var(--brand); }
.form-note { font-size: 13px; color: var(--gray-text); margin-top: 12px; text-align: left; }
.auftragsformular-box { background: var(--black); border-radius: var(--radius); padding: 28px; margin-top: 32px; display: flex; align-items: center; gap: 20px; }
.auftragsformular-box svg { width: 36px; height: 36px; fill: var(--brand); flex-shrink: 0; }
.auftragsformular-box h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.auftragsformular-box p { font-size: 14px; color: rgba(255,255,255,.5); }
.auftragsformular-box a { color: var(--brand); font-weight: 600; }
.form-msg { display: none; margin-top: 16px; padding: 16px; border-radius: var(--radius-sm); font-weight: 500; text-align: center; }
.form-msg-success { background: #e8f5e9; color: #2e7d32; }
.form-msg-error { background: #ffebee; color: #c62828; }

/* ── KONTAKT INFO CARDS ────────────────────── */
.kontakt-box-wrap { background: var(--gray-bg); padding: var(--section-pad) 32px; }
.kontakt-box { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kontakt-info-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--gray-border); text-align: center; }
.kontakt-info-card .info-icon { width: 52px; height: 52px; background: var(--brand-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.kontakt-info-card .info-icon svg { width: 26px; height: 26px; fill: var(--brand); }
.kontakt-info-card h4 { font-family: var(--font-head); font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--gray-text); text-transform: uppercase; letter-spacing: .5px; }
.kontakt-info-card p { font-size: 15px; line-height: 1.65; color: var(--black); }
.kontakt-info-card a { color: var(--brand); }

/* ── LEGAL ─────────────────────────────────── */
.legal-wrap { max-width: calc(var(--max-w) + 64px); margin: 0 auto; padding: calc(var(--section-pad) - 18px) 32px var(--section-pad); }
.legal-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 56px; border-bottom: 1px solid var(--gray-border); }
.legal-tab { padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--gray-text); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s; }
.legal-tab:hover { color: var(--black); }
.legal-tab.active { color: var(--brand); border-bottom-color: var(--brand); }
.legal-section { display: none; }
.legal-section.active { display: block; }
.legal-section h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 32px; }
.legal-section h3 { font-family: var(--font-head); font-size: 17px; font-weight: 600; margin: 28px 0 12px; }
.legal-section p { color: var(--gray-text); margin-bottom: 16px; line-height: 1.75; }
.legal-section ul { color: var(--gray-text); margin: 0 0 16px 20px; line-height: 1.75; }
.legal-section ul li { margin-bottom: 8px; }
.legal-section table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.legal-section table td { padding: 8px 0; color: var(--gray-text); font-size: 15px; vertical-align: top; }
.legal-section table td:first-child { font-weight: 600; color: var(--black); width: 120px; }
.legal-section strong { color: var(--black); }
.legal-section a { color: var(--brand); text-decoration: underline; }

/* ── RESPONSIVE 1024px ─────────────────────── */
@media (max-width: 1024px) {
  #hero { background-image: linear-gradient(rgba(13,13,13,.90), rgba(13,13,13,.82)), url('images/notebook-mobile.webp'); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .warum-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .prozess-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prozess-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .kontakt-wrap { grid-template-columns: 1fr; gap: 48px; }
  .preise-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-box { grid-template-columns: 1fr; }
  .rep-item, .rep-item.reverse { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
}

/* ── RESPONSIVE 768px ──────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Nav */
  .nav-burger { display: flex; }
  .nav-links { display: none !important; }
  /* Logo Mobile */
  .logo-nav { height: 38px; }

  /* Info-Bar: Öffnungszeiten links, Tel-/Mail-Icon-Buttons rechts */
  .info-bar-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 14px; }
  .info-bar-left { flex: 1 1 0; min-width: 0; flex-direction: column; align-items: flex-start; gap: 2px; }
  .info-bar-left .info-bar-item { align-items: flex-start; }
  .info-bar-left .info-bar-item span { font-size: 11px; }
  .info-bar-middle { flex-direction: row; flex-wrap: nowrap; gap: 7px; flex-shrink: 0; }
  .info-bar-middle .info-bar-item {
    width: 32px; height: 32px; justify-content: center; padding: 0; gap: 0;
    background: rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
  }
  .info-bar-middle .info-bar-item:active { background: rgba(255,255,255,.22); }
  .info-bar-middle .info-bar-item svg { width: 16px; height: 16px; fill: #fff; }
  .info-bar-label { display: none; }
  .info-bar-right { display: none; }
  .info-bar-mobile-br { display: block; }
  .info-bar-break { display: none; }

  /* Hero */
  .hero-badges-wrap { position: relative; z-index: 2; flex-direction: row; justify-content: flex-end; margin-bottom: -24px; gap: 8px; }
  .hero-since { padding: 10px 14px; }
  .hero-since strong { font-size: 18px; }
  .hero-rating { padding: 10px 12px; }
  .hero-rating strong { font-size: 15px; }

  /* Stats - Font kleiner damit nichts abgeschnitten wird */
  .stats-inner { grid-template-columns: 1fr; gap: 0; padding: 0 12px; }
  .stats-inner .stat-item { padding: 28px 0; border-bottom: 1px solid var(--gray-border); }
  .stats-inner .stat-item:first-child { padding-top: 0; }
  .stats-inner .stat-item:last-child { padding-bottom: 0; border-bottom: none; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 13px; }

  /* Service Pills - einzeilig erzwingen */
  .hero-card { padding: 20px; }
  .service-pill { padding: 10px 12px; gap: 8px; flex-wrap: nowrap; }
  .service-pill-name { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .service-pill-price { font-size: 11px; white-space: nowrap; flex-shrink: 0; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .prozess-steps { grid-template-columns: 1fr; }
  .preise-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-check-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}

/* =============================================
   AUFTRAGSSEITE (auftrag.html)
   ============================================= */
.auftrag-wrap { max-width: calc(var(--max-w) + 64px); margin: 0 auto; padding: 56px 32px var(--section-pad); }
.auftrag-hint { display: flex; gap: 14px; align-items: flex-start; background: var(--brand-light); border: 1px solid #f3d8d0; border-radius: var(--radius); padding: 18px 20px; margin-bottom: 32px; }
.auftrag-hint svg { width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: var(--brand); stroke-width: 2; margin-top: 2px; }
.auftrag-hint p { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin: 0; }

.auftrag-card h2 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.form-section-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin: 32px 0 16px; padding-top: 24px; border-top: 1px solid var(--gray-border); }

/* Zwei Checkbox-Optionen nebeneinander */
.form-check-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.form-check-row .form-check { margin-bottom: 0; }

/* Checkbox mit Inline-Eingabefeld (Bios-/Windowspasswort) */
.form-check-inline { align-items: center; gap: 10px; flex-wrap: wrap; }
.form-check-inline label { font-size: 14px; color: var(--black); font-weight: 500; margin: 0; }
.form-check-inline .inline-input { flex: 1; min-width: 160px; width: auto; padding: 8px 12px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--black); outline: none; }
.form-check-inline .inline-input:focus { border-color: var(--brand); }
.textarea-sm { height: 90px !important; }

/* Rechtstext */
.auftrag-terms { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin: 28px 0; }
.auftrag-terms p { margin-bottom: 10px; }
.auftrag-terms p:last-child { margin-bottom: 0; }

/* Datum / Unterschrift */
.auftrag-signature { display: flex; gap: 32px; margin: 28px 0 8px; flex-wrap: wrap; }
.sig-field { flex: 1 1 160px; display: flex; align-items: baseline; gap: 8px; }
.sig-field-wide { flex: 2 1 240px; }
.sig-label-inline { font-size: 14px; color: var(--black); white-space: nowrap; }
.sig-line { flex: 1; border-bottom: 1.5px solid var(--black); height: 1.4em; }

/* Aktionen */
.auftrag-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.auftrag-actions .btn { display: inline-flex; align-items: center; }
.btn-print-icon { margin-right: 8px; }
.btn-outline { background: transparent; color: var(--black) !important; border: 1.5px solid var(--gray-border); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand) !important; transform: translateY(-1px); }

/* Sichtbarkeit Bildschirm / Druck */
.print-only { display: none; }

/* =============================================
   DRUCK-STYLES
   ============================================= */
@media print {
  @page { size: A4 portrait; margin: 18mm 14mm 12mm; }

  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .info-bar, nav, .nav-mobile, .nav-burger, footer, .urlaub-banner, .page-hero,
  .auftrag-hint, .auftrag-actions, .form-note, .no-print { display: none !important; }

  html, body {
    width: 100% !important; max-width: 100% !important;
    margin: 0 !important; padding: 0 !important;
    overflow: visible !important;
    background: #fff !important; color: #000 !important;
    font-size: 11px; line-height: 1.35;
  }

  .auftrag-wrap { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 6mm 8mm 0 !important; }
  .auftrag-card { border: none !important; background: #fff !important; padding: 0 !important; border-radius: 0 !important; }

  .print-only { display: block !important; }
  .print-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding-bottom: 12px; margin-bottom: 20px; border-bottom: 2px solid #000; }
  .print-logo { width: 170px; height: auto; }
  .print-header-address { font-size: 9px; line-height: 1.5; text-align: right; color: #000; }

  .auftrag-card h2 { font-size: 15px; margin-bottom: 12px; }
  .form-section-title { font-size: 12px; margin: 12px 0 6px; padding-top: 8px; }

  /* Zweispaltig erzwingen (unabhängig vom mobilen Breakpoint) */
  .form-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 22px !important; }
  .form-check-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 22px !important; margin-bottom: 5px !important; }

  .form-group { margin-bottom: 6px !important; page-break-inside: avoid; }
  .form-group label, .form-check-inline label { font-size: 11px !important; color: #000 !important; margin-bottom: 1px !important; }

  .form-group input, .inline-input {
    border: none !important; border-bottom: 1px solid #000 !important; border-radius: 0 !important;
    background: transparent !important; padding: 0 2px !important; height: 17px !important;
    font-size: 12px !important; color: #000 !important;
  }
  .form-group textarea {
    border: 1px solid #000 !important; border-radius: 0 !important; background: transparent !important;
    font-size: 12px !important; color: #000 !important;
  }
  #fehler { height: 56px !important; }
  #ruecksendeadresse { height: 60px !important; }

  .form-check { margin-bottom: 4px; page-break-inside: avoid; }
  .form-check label { font-size: 11px !important; color: #000 !important; }
  .form-check a { color: #000 !important; text-decoration: underline; }
  .form-check input[type="checkbox"] { width: 12px; height: 12px; accent-color: #000; }

  .auftrag-terms { font-size: 9px; line-height: 1.35; color: #000 !important; margin: 10px 0; page-break-inside: avoid; }
  .auftrag-terms p { margin-bottom: 5px; }
  .auftrag-signature { margin-top: 18px; page-break-inside: avoid; }
  .sig-line { border-bottom-color: #000 !important; }
}
