
:root {
  --blue: #063d84;
  --blue-dark: #062f63;
  --ink: #111318;
  --muted: #606875;
  --line: #e5e8ec;
  --soft: #f6f8fa;
  --white: #ffffff;
  --max: 1160px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 42px), var(--max)); margin: 0 auto; }
.skip-link { position:absolute; left:-9999px; top:auto; }
.skip-link:focus { left:16px; top:16px; z-index:100; background:#fff; padding:10px 14px; border:1px solid var(--line); border-radius:8px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(229,232,236,.9);
  backdrop-filter: blur(12px);
}
.navbar { min-height: 82px; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.brand img { width: 178px; height:auto; }
.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { text-decoration:none; font-size:14px; font-weight:650; color:#303640; }
.nav-links a:hover, .nav-links a:focus-visible { color:var(--blue); }
.nav-cta { color:#fff !important; background:var(--blue); padding:11px 17px; border-radius:9px; }
.nav-cta:hover { background:var(--blue-dark); }

.hero { padding: 95px 0 86px; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap:70px; align-items:center; }
.eyebrow, .kicker { color:var(--blue); font-size:13px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.eyebrow { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.eyebrow::before { content:""; width:30px; height:2px; background:var(--blue); }
h1 { margin:0 0 24px; font-size:clamp(42px,6vw,72px); line-height:1.03; letter-spacing:-.045em; }
.lead { margin:0; max-width:680px; color:var(--muted); font-size:clamp(18px,2vw,21px); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:50px; padding:0 20px; border-radius:9px; text-decoration:none; font-size:15px; font-weight:750; transition:.18s ease; }
.button:hover { transform:translateY(-1px); }
.button-primary { background:var(--blue); color:#fff; box-shadow:0 10px 26px rgba(6,61,132,.16); }
.button-primary:hover { background:var(--blue-dark); }
.button-secondary { border:1px solid var(--line); background:#fff; }

.hero-visual { position:relative; min-height:430px; display:grid; place-items:center; }
.hero-visual::before { content:""; position:absolute; width:430px; height:430px; border-radius:50%; border:1px solid #edf0f3; background:radial-gradient(circle at 30% 30%,rgba(6,61,132,.10),transparent 56%),linear-gradient(145deg,#fbfcfd,#f1f4f7); }
.hero-card { position:relative; width:min(100%,455px); padding:46px 40px; background:rgba(255,255,255,.96); border:1px solid var(--line); border-radius:20px; box-shadow:0 30px 80px rgba(18,28,44,.11); }
.hero-card img { width:min(100%,350px); margin:0 auto 27px; }
.hero-card p { margin:0; padding-top:24px; border-top:1px solid var(--line); color:var(--muted); text-align:center; font-size:14px; }

.section { padding:92px 0; }
.section-soft { background:var(--soft); }
.section-heading { max-width:760px; margin-bottom:46px; }
.section-heading h2, .two-col h2, .contact-copy h2 { margin:8px 0 14px; font-size:clamp(31px,4vw,46px); line-height:1.1; letter-spacing:-.035em; }
.section-heading p, .copy p, .contact-copy p { margin:0; color:var(--muted); font-size:18px; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.card { min-height:255px; padding:30px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); }
.card-number { display:grid; place-items:center; width:42px; height:42px; margin-bottom:28px; border-radius:11px; background:#ecf3fb; color:var(--blue); font-weight:850; }
.card h3 { margin:0 0 10px; font-size:20px; }
.card p { margin:0; color:var(--muted); }

.two-col { display:grid; grid-template-columns:.9fr 1.1fr; gap:82px; align-items:start; }
.copy p + p { margin-top:18px; }
.feature-list { display:grid; gap:0; margin-top:30px; }
.feature { display:flex; gap:14px; align-items:flex-start; padding:19px 0; border-top:1px solid var(--line); }
.check { flex:0 0 auto; width:28px; height:28px; display:grid; place-items:center; border-radius:50%; background:#ecf3fb; color:var(--blue); font-weight:900; }
.feature strong { display:block; margin-bottom:2px; }
.feature span { color:var(--muted); font-size:15px; }

.process { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#fff; }
.process-step { padding:28px; border-right:1px solid var(--line); }
.process-step:last-child { border-right:0; }
.process-step small { color:var(--blue); font-weight:850; letter-spacing:.08em; }
.process-step h3 { margin:10px 0 8px; font-size:18px; }
.process-step p { margin:0; color:var(--muted); font-size:15px; }

.offer-box { display:grid; grid-template-columns:1fr auto; gap:42px; align-items:center; padding:46px; border-radius:20px; color:#fff; background:linear-gradient(135deg,var(--blue-dark),var(--blue)); box-shadow:0 20px 55px rgba(6,47,99,.18); }
.offer-box h2 { margin:0 0 10px; font-size:clamp(29px,4vw,41px); letter-spacing:-.03em; line-height:1.12; }
.offer-box p { margin:0; max-width:720px; color:rgba(255,255,255,.8); font-size:17px; }
.offer-box .button { background:#fff; color:var(--blue-dark); white-space:nowrap; }

.contact-grid { display:grid; grid-template-columns:.95fr 1.05fr; gap:70px; align-items:start; }
.contact-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.contact-details { padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; }
.contact-details dl { margin:0; }
.contact-details div { padding:17px 0; border-bottom:1px solid var(--line); }
.contact-details div:first-child { padding-top:0; }
.contact-details div:last-child { border-bottom:0; padding-bottom:0; }
.contact-details dt { margin-bottom:4px; color:var(--muted); font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.contact-details dd { margin:0; font-weight:650; }
.contact-details a { text-decoration:none; }
.contact-details a:hover { color:var(--blue); }

.site-footer { padding:34px 0; border-top:1px solid var(--line); }
.footer-inner { display:flex; justify-content:space-between; align-items:center; gap:28px; }
.footer-inner p { margin:0; color:var(--muted); font-size:14px; }
.footer-links { display:flex; flex-wrap:wrap; gap:20px; }
.footer-links a { color:var(--muted); text-decoration:none; font-size:14px; }
.footer-links a:hover { color:var(--blue); }

.legal { padding:72px 0 90px; }
.legal article { max-width:850px; }
.legal h1 { font-size:clamp(38px,5vw,58px); }
.legal h2 { margin:38px 0 10px; font-size:23px; }
.legal h3 { margin:25px 0 8px; font-size:18px; }
.legal p, .legal li { color:#4e5662; }
.legal address { font-style:normal; }
.legal a { color:var(--blue); }
.note { padding:18px 20px; margin:26px 0; background:#f5f8fc; border-left:4px solid var(--blue); border-radius:8px; color:#424b57; }

/* Verkaufsplattformen */
.shop-heading { margin-bottom: 34px; }
.shop-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.shop-card { display:flex; justify-content:space-between; gap:24px; min-height:220px; padding:32px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; text-decoration:none; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.shop-card:hover, .shop-card:focus-visible { transform:translateY(-2px); border-color:#cfd6df; box-shadow:0 18px 45px rgba(18,28,44,.08); outline:none; }
.shop-label { color:var(--blue); font-size:12px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.shop-card h3 { margin:10px 0 8px; font-size:30px; letter-spacing:-.025em; }
.shop-card p { margin:0; max-width:430px; color:var(--muted); }
.shop-arrow { flex:0 0 auto; display:grid; place-items:center; width:42px; height:42px; border-radius:50%; background:#ecf3fb; color:var(--blue); font-size:21px; font-weight:800; }
.shop-note { margin:18px 0 0; color:var(--muted); font-size:14px; }

@media (max-width:900px) {
  .hero-grid, .two-col, .contact-grid { grid-template-columns:1fr; gap:48px; }
  .cards { grid-template-columns:1fr; }
  .shop-grid { grid-template-columns:1fr; }
  .process { grid-template-columns:1fr 1fr; }
  .process-step { border-bottom:1px solid var(--line); }
  .process-step:nth-child(2) { border-right:0; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-bottom:0; }
  .hero { padding-top:64px; }
  .offer-box { grid-template-columns:1fr; padding:36px 30px; }
}
@media (max-width:650px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .navbar { min-height:72px; }
  .brand img { width:145px; }
  .nav-links a:not(.nav-cta) { display:none; }
  .nav-cta { padding:9px 12px; font-size:13px !important; }
  .hero-visual { min-height:330px; }
  .hero-visual::before { width:315px; height:315px; }
  .hero-card { padding:32px 24px; }
  .section { padding:70px 0; }
  .process { grid-template-columns:1fr; }
  .process-step { border-right:0; border-bottom:1px solid var(--line) !important; }
  .process-step:last-child { border-bottom:0 !important; }
  .footer-inner { flex-direction:column; align-items:flex-start; }
}
