/* ===== RUHE – Website Stylesheet ===== */

/* Self-hosted Inter (variable) – kein Google-Fonts-Aufruf */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

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

:root {
  --blue: #1a3c6e;
  --blue-deep: #12294c;
  --blue-light: #2a5298;
  --blue-pale: #e8edf5;
  --orange: #e85d1a;
  --orange-pale: #fdf0e8;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-300: #ced4da;
  --gray-500: #8a929c;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --ink: #16202e;
  --font: 'Inter Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(18,41,76,.06), 0 2px 8px rgba(18,41,76,.05);
  --shadow: 0 4px 14px rgba(18,41,76,.08), 0 10px 34px rgba(18,41,76,.07);
  --maxw: 1120px;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── CONSTRUCTION RIBBON ── */
.ribbon { background: var(--orange); color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .01em; text-align: center; padding: 8px 16px; }
.ribbon strong { font-weight: 800; }

/* ── HEADER ── */
.topbar { position: sticky; top: 0; z-index: 50; }
header { position: relative; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--gray-200); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.langswitch { display: inline-flex; border: 1px solid var(--gray-300); border-radius: 8px; overflow: hidden; flex: none; }
.langswitch button { font-family: var(--font); font-size: .78rem; font-weight: 700; letter-spacing: .03em; padding: 7px 11px; background: #fff; color: var(--gray-600); border: none; cursor: pointer; transition: background .15s, color .15s; }
.langswitch button + button { border-left: 1px solid var(--gray-300); }
.langswitch button:hover { background: var(--blue-pale); color: var(--blue); }
.langswitch button.active { background: var(--blue); color: #fff; }
.langswitch-mobile { display: none; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-mark { width: 40px; height: 40px; border-radius: 10px; background: var(--blue); display: grid; place-items: center; box-shadow: var(--shadow-sm); flex: none; }
.logo-mark svg { width: 24px; height: 24px; }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word .rt { font-weight: 900; font-size: 1.5rem; letter-spacing: .04em; color: var(--blue); }
.logo-word .rt em { color: var(--orange); font-style: normal; }
.logo-word .cl { font-size: .58rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-600); margin-top: 4px; }

.menu { display: flex; align-items: center; gap: 6px; }
.menu a { font-size: .92rem; font-weight: 600; color: var(--gray-800); padding: 8px 14px; border-radius: 8px; transition: background .15s, color .15s; }
.menu a:hover { background: var(--blue-pale); color: var(--blue); }
.menu a.cta { background: var(--orange); color: #fff; margin-left: 6px; }
.menu a.cta:hover { background: #cf4f14; color: #fff; }

.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; color: var(--blue); padding: 8px 14px; border-radius: 8px; transition: background .15s; }
.back-link:hover { background: var(--blue-pale); }
.back-link svg { width: 18px; height: 18px; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--gray-200); border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; stroke: var(--blue); }

/* ── HERO ── */
.hero { position: relative; background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; right: -140px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.05); animation: drift1 15s ease-in-out infinite; }
.hero::after { content: ""; position: absolute; right: 40px; bottom: -160px; width: 340px; height: 340px; border-radius: 50%; background: rgba(232,93,26,.16); animation: drift2 18s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-22px,18px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(18px,-16px); } }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 84px 0 32px; }
.hero-text { max-width: 620px; }
.hero-badges { position: relative; z-index: 1; padding-bottom: 84px; }

.hero-visual { position: relative; height: 420px; display: grid; place-items: center; }
.hv-glow { position: absolute; inset: 6%; background: radial-gradient(circle at 50% 50%, rgba(232,93,26,.4), transparent 62%); filter: blur(40px); z-index: 0; }
.logo-cluster { position: relative; z-index: 1; width: 300px; height: 300px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.hv-tile { position: relative; border-radius: 26px; display: grid; place-items: center; background: linear-gradient(155deg, rgba(255,255,255,.14), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px); box-shadow: 0 20px 44px rgba(0,0,0,.3); }
.hv-tile svg { width: 62px; height: 62px; stroke: #fff; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hv-tile.accent { background: var(--orange); border-color: rgba(255,255,255,.22); box-shadow: 0 20px 44px rgba(232,93,26,.45); }
.hv-1 { animation: inTL 2.4s cubic-bezier(.22,1,.36,1) .15s both; }
.hv-2 { animation: inTR 2.4s cubic-bezier(.22,1,.36,1) .35s both; }
.hv-3 { animation: inBL 2.4s cubic-bezier(.22,1,.36,1) .55s both; }
.hv-4 { animation: inBR 2.4s cubic-bezier(.22,1,.36,1) .75s both; }
.cluster-plus { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; transform: translate(-50%,-50%); background: var(--orange); border-radius: 11px; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(232,93,26,.55); z-index: 3; animation: plusPop .8s cubic-bezier(.34,1.56,.64,1) 2.65s both; }
.cluster-plus svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2.6; stroke-linecap: round; }
@keyframes inTL { 0% { transform: translate(-90px,-90px) scale(.55); opacity: 0; } 100% { transform: translate(0,0) scale(1); opacity: 1; } }
@keyframes inTR { 0% { transform: translate(90px,-90px) scale(.55); opacity: 0; } 100% { transform: translate(0,0) scale(1); opacity: 1; } }
@keyframes inBL { 0% { transform: translate(-90px,90px) scale(.55); opacity: 0; } 100% { transform: translate(0,0) scale(1); opacity: 1; } }
@keyframes inBR { 0% { transform: translate(90px,90px) scale(.55); opacity: 0; } 100% { transform: translate(0,0) scale(1); opacity: 1; } }
@keyframes breatheTL { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-9px,-9px); } }
@keyframes breatheTR { 0%,100% { transform: translate(0,0); } 50% { transform: translate(9px,-9px); } }
@keyframes breatheBL { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-9px,9px); } }
@keyframes breatheBR { 0%,100% { transform: translate(0,0); } 50% { transform: translate(9px,9px); } }
@keyframes plusPop { 0% { transform: translate(-50%,-50%) scale(0); opacity: 0; } 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; } }
@keyframes pulseAccent { 0%,100% { box-shadow: 0 20px 44px rgba(232,93,26,.45); } 50% { box-shadow: 0 20px 60px rgba(232,93,26,.75); } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #ffd9c4; margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 900; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p.lead { font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .96rem; padding: 14px 26px; border-radius: 10px; cursor: pointer; border: none; transition: transform .12s, background .15s, box-shadow .15s; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(232,93,26,.35); }
.btn-primary:hover { background: #cf4f14; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }

.badges { display: flex; flex-wrap: nowrap; gap: 8px; }
.badge { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 600; white-space: nowrap; color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 7px 11px; border-radius: 999px; }
.badge svg { width: 13px; height: 13px; stroke: var(--orange); }

/* ── SECTION SHELL ── */
section.block { padding: 84px 0; }
.sec-head { max-width: 640px; margin-bottom: 46px; }
.sec-eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.sec-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; color: var(--blue); line-height: 1.14; }
.sec-head p { margin-top: 14px; color: var(--gray-600); font-size: 1.05rem; }

/* ── SERVICES ── */
.group-label { display: flex; align-items: center; gap: 12px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin: 8px 0 22px; }
.group-label::after { content: ""; flex: 1; height: 1px; background: var(--gray-200); }
.group-label span.dot { width: 10px; height: 10px; border-radius: 3px; background: var(--orange); flex: none; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px 24px; transition: transform .15s, box-shadow .15s, border-color .15s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-pale); }
.card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-pale); display: grid; place-items: center; margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.card p { font-size: .92rem; color: var(--gray-600); }

.services-note { margin-top: 34px; font-size: .92rem; color: var(--gray-600); background: var(--gray-50); border: 1px dashed var(--gray-300); border-radius: var(--radius); padding: 16px 20px; }

/* ── PAKETE ── */
.pakete { background: var(--gray-50); }
html[lang="en"] .tier.featured::before { content: "Popular"; }
.wip-note { display: flex; align-items: center; gap: 12px; background: var(--orange-pale); border: 1px solid #f4c9ac; color: #9a4a1a; border-radius: var(--radius); padding: 14px 18px; font-size: .92rem; font-weight: 600; margin-bottom: 34px; }
.wip-note svg { width: 20px; height: 20px; stroke: var(--orange); flex: none; }

/* ── ADRESSATEN / FÜR WEN ── */
.who .sec-head h2 span { color: var(--orange); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.who-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px 22px; transition: transform .15s, box-shadow .15s, border-color .15s; }
.who-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-pale); }
.who-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-pale); display: grid; place-items: center; margin-bottom: 16px; }
.who-card .ic svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.who-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.who-card p { font-size: .9rem; color: var(--gray-600); }
.who-card .scenario { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--gray-200); font-size: .84rem; font-style: italic; color: var(--blue); }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.faq-item[open] { border-color: var(--blue-pale); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; color: var(--blue); font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--orange); flex: none; transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--gray-50); }
.faq-a { padding: 0 22px 20px; color: var(--gray-600); font-size: .95rem; line-height: 1.65; }

/* ── DIFFERENZIERUNG ── */
.unterschied { background: var(--blue-deep); color: #fff; }
.unterschied .diff-title { color: #fff; margin-top: 0; }
.unterschied .diff-title::after { background: rgba(255,255,255,.18); }
.diff-title { display: flex; align-items: center; gap: 12px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin: 44px 0 22px; }
.diff-title::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--orange); flex: none; }
.diff-title::after { content: ""; flex: 1; height: 1px; background: var(--gray-200); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 24px 22px; box-shadow: 0 12px 30px rgba(0,0,0,.10); }
.diff-item .di-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--orange-pale); display: grid; place-items: center; flex: none; }
.diff-item .di-ic svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.diff-item h4 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.diff-item p { font-size: .9rem; color: var(--gray-600); }

/* ── MEHRSPRACHIG-BAND ── */
.multi-band { margin-top: 24px; background: var(--blue); color: #fff; border-radius: var(--radius-lg); padding: 34px 40px; display: flex; align-items: center; gap: 28px; position: relative; overflow: hidden; }
.multi-band::after { content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%; background: rgba(232,93,26,.16); }
.multi-band .mb-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex: none; position: relative; z-index: 1; }
.multi-band .mb-icon svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.multi-band .mb-text { position: relative; z-index: 1; }
.multi-band .mb-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #ffd9c4; margin-bottom: 8px; }
.multi-band .mb-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.multi-band .mb-desc { color: rgba(255,255,255,.82); font-size: .98rem; max-width: 720px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--orange); box-shadow: 0 14px 40px rgba(232,93,26,.14); position: relative; }
.tier.featured::before { content: "Beliebt"; position: absolute; top: -12px; left: 26px; background: var(--orange); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.tier .tname { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.tier .ttitle { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.tier p.tdesc { font-size: .94rem; color: var(--gray-600); margin-bottom: 20px; }
.tier ul { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 11px; }
.tier li { display: flex; gap: 10px; font-size: .92rem; color: var(--gray-800); }
.tier li svg { width: 18px; height: 18px; stroke: var(--orange); flex: none; margin-top: 2px; }
.tier .price { margin-top: auto; font-size: .9rem; font-weight: 600; color: var(--gray-500); }

/* ── EINSATZGEBIET ── */
.region-flex { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.region-card { background: var(--blue); color: #fff; border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden; }
.region-card::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(232,93,26,.18); }
.region-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; position: relative; z-index: 1; }
.region-card p { color: rgba(255,255,255,.82); position: relative; z-index: 1; }
.region-list { list-style: none; margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.region-list li { font-size: .84rem; font-weight: 600; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 7px 13px; border-radius: 999px; }
.region-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; color: var(--blue); line-height: 1.14; }
.region-copy p { margin-top: 14px; color: var(--gray-600); font-size: 1.05rem; }

/* ── KONTAKT ── */
.kontakt { background: var(--blue-deep); color: #fff; }
.kontakt .sec-head h2 { color: #fff; }
.kontakt .sec-eyebrow { color: #ffd9c4; }
.kontakt .sec-eyebrow::before { background: var(--orange); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; }
.contact-item .cic { width: 46px; height: 46px; border-radius: 11px; background: rgba(232,93,26,.18); display: grid; place-items: center; flex: none; }
.contact-item .cic svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item .clabel { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 5px; }
.contact-item .cval { font-size: 1.06rem; font-weight: 600; color: #fff; word-break: break-word; }
.contact-item .cval a:hover { color: var(--orange); }
.contact-hint { font-size: .86rem; color: rgba(255,255,255,.6); padding: 2px 4px; }

/* ── FORMULAR ── */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.form-card h3 { color: var(--blue); font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.form-card .fsub { color: var(--gray-600); font-size: .92rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 7px; }
.field label .req { color: var(--orange); }
.field input, .field textarea {
  font-family: var(--font); font-size: .96rem; color: var(--ink);
  border: 1px solid var(--gray-300); border-radius: 10px; padding: 12px 14px; background: #fff;
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,93,26,.15); }
.field input.err, .field textarea.err { border-color: #d64545; box-shadow: 0 0 0 3px rgba(214,69,69,.12); }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 4px 0 20px; }
.consent input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--orange); cursor: pointer; }
.consent label { font-size: .85rem; color: var(--gray-600); line-height: 1.5; }
.consent a { color: var(--orange); font-weight: 600; text-decoration: underline; }
.consent.err label { color: #d64545; }

.form-status { margin-top: 14px; font-size: .9rem; font-weight: 600; }
.form-status.ok { color: #1f8a4c; }
.form-status.bad { color: #d64545; }
.form-note { margin-top: 12px; font-size: .8rem; color: var(--gray-500); }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ── FOOTER ── */
footer { background: #0d1f3a; color: rgba(255,255,255,.7); padding: 48px 0 30px; font-size: .9rem; }
.foot-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 26px; align-items: flex-start; }
.foot-brand .fb-word { font-weight: 900; font-size: 1.35rem; letter-spacing: .04em; color: #fff; }
.foot-brand .fb-word em { color: var(--orange); font-style: normal; }
.foot-logo { display: inline-flex; background: #fff; border-radius: 12px; padding: 10px 12px; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.foot-logo img { height: 52px; width: auto; display: block; }
.foot-brand p { margin-top: 14px; max-width: 340px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links a:hover { color: var(--orange); }
.foot-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ── RECHTSSEITEN (Impressum / Datenschutz) ── */
.legal-hero { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; padding: 60px 0 54px; }
.legal-hero .eyebrow { color: #ffd9c4; }
.legal-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -.02em; }
.legal { max-width: 800px; margin: 0 auto; padding: 60px 24px 90px; }
.legal h2 { font-size: 1.25rem; font-weight: 800; color: var(--blue); margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin: 24px 0 8px; }
.legal p { margin-bottom: 14px; color: var(--gray-800); }
.legal ul { margin: 0 0 16px 20px; color: var(--gray-800); }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--orange); text-decoration: underline; }
.legal .lead-block { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 8px; }
.legal .placeholder { color: #c24a12; font-weight: 700; background: var(--orange-pale); padding: 1px 6px; border-radius: 5px; }
.legal .disclaimer { margin-top: 40px; font-size: .86rem; color: var(--gray-600); border-top: 1px solid var(--gray-200); padding-top: 20px; }
.legal .updated { font-size: .86rem; color: var(--gray-500); margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) { .badges { flex-direction: column; align-items: flex-start; } }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .badges { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 860px) {
  .grid, .tiers, .who-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .region-flex { grid-template-columns: 1fr; }
  .multi-band { flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px; }
}
@media (max-width: 620px) {
  .langswitch-desktop { display: none; }
  .menu { display: none; }
  .burger { display: inline-flex; }
  .menu.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: #fff; border-bottom: 1px solid var(--gray-200); padding: 12px 24px 18px; }
  .menu.open a { padding: 12px 14px; }
  .menu.open a.cta { margin-left: 0; text-align: center; }
  .menu.open .langswitch-mobile { display: flex; align-self: flex-start; margin: 10px 14px 2px; }
  .menu.open .langswitch-mobile button { min-width: 52px; min-height: 44px; font-size: .88rem; }
  .grid, .tiers, .who-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 60px 0 68px; }
  section.block { padding: 60px 0; }
  .foot-top { flex-direction: column; }
  .form-card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 6px; }

.en-only { display: none; }
html[lang="en"] .en-only { display: block; }
.legal-notice { background: var(--blue-pale); border: 1px solid #cdd8ea; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 28px; color: var(--blue); font-size: .92rem; }

/* MVP-Ergänzungen: CTAs und aufklappbare Paketdetails */
.section-cta{margin-top:36px;padding:22px 24px;border-radius:var(--radius);background:var(--blue-soft,#eef5fa);display:flex;align-items:center;justify-content:space-between;gap:24px}
.section-cta p{margin:0;color:var(--blue);font-weight:650;line-height:1.55}
.section-cta .btn{flex:none}
.package-details{margin-top:28px;background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-lg);overflow:hidden}
.package-details summary{cursor:pointer;list-style:none;padding:20px 24px;font-weight:750;color:var(--blue);display:flex;justify-content:space-between;align-items:center}
.package-details summary::-webkit-details-marker{display:none}
.package-details summary::after{content:"+";font-size:1.5rem;color:var(--orange)}
.package-details[open] summary::after{content:"−"}
.package-details-body{padding:0 24px 24px}
.package-table-wrap{overflow-x:auto;margin:0 0 28px}
.package-table{width:100%;border-collapse:collapse;min-width:920px;font-size:.88rem;line-height:1.45}
.package-table th,.package-table td{border:1px solid var(--gray-200);padding:12px 14px;vertical-align:top;text-align:left}
.package-table thead th{background:var(--blue);color:#fff;font-weight:750}
.package-table tbody th{background:var(--gray-50);color:var(--ink);width:21%;font-weight:700}
.package-table td{background:#fff;color:var(--gray-700)}
.package-details-body h3{font-size:1.1rem;color:var(--blue);margin:4px 0 16px}
.package-addons{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.package-addons div{display:flex;flex-direction:column;gap:4px;padding:14px 16px;background:var(--gray-50);border-radius:10px}
.package-addons strong{color:var(--ink)}
.package-addons span{font-size:.9rem;color:var(--gray-600);line-height:1.45}
.package-note{margin-top:18px;font-size:.84rem;color:var(--gray-600);line-height:1.55}
.tier .price strong{display:inline-block;color:var(--blue);font-size:1.02rem;margin-bottom:3px}
@media(max-width:760px){.section-cta{flex-direction:column;align-items:flex-start}.package-addons{grid-template-columns:1fr}.section-cta .btn{width:100%;justify-content:center}}
/* Einsatzgebiet – kompakte, einheitliche Darstellung */
.area .sec-head{margin-bottom:28px}
.area-card{background:var(--blue);border-radius:var(--radius-lg);padding:30px 32px;box-shadow:0 14px 36px rgba(26,60,110,.12)}
.area-tags{display:flex;flex-wrap:wrap;gap:12px}
.area-tags span{display:inline-flex;align-items:center;min-height:40px;padding:9px 16px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.24);color:#fff;font-size:.9rem;font-weight:700;line-height:1.25}
@media(max-width:640px){.area-card{padding:24px 20px}.area-tags{gap:9px}.area-tags span{width:100%;justify-content:center}}


/* Nach-oben-Button */
.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(18, 41, 76, .28);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease, background-color .2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--blue-light); }
.back-to-top:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.back-to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) {
  .back-to-top { width: 44px; height: 44px; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

/* ── Navigation mit Untermenü und robustem Mobilmenü ── */
.menu-group { position: relative; display: flex; align-items: center; }
.menu-group > a { padding-right: 6px; }
.submenu-toggle {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: none;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
}
.submenu-toggle:hover { background: var(--blue-pale); color: var(--blue); }
.submenu-toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.menu-group.open .submenu-toggle svg { transform: rotate(180deg); }
.submenu {
  display: none;
  position: absolute;
  z-index: 120;
  top: calc(100% + 7px);
  left: 0;
  min-width: 220px;
  flex-direction: column;
  padding: 8px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.submenu a { display: block; white-space: nowrap; padding: 10px 12px; }
.menu a[aria-current="page"], .foot-links a[aria-current="page"] { color: var(--orange); }

@media (min-width: 761px) {
  .menu-group:hover .submenu,
  .menu-group:focus-within .submenu,
  .menu-group.open .submenu { display: flex; }
}

@media (max-width: 760px) {
  body.menu-open { overflow: hidden; }
  .langswitch-desktop { display: none; }
  .burger { display: inline-flex; position: relative; z-index: 131; }
  .menu { display: none; }
  .menu.open {
    display: flex;
    position: absolute;
    z-index: 130;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px calc(18px + env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
    box-shadow: 0 18px 34px rgba(18, 41, 76, .18);
  }
  .menu.open > a { padding: 12px 14px; }
  .menu.open a.cta { margin-left: 0; text-align: center; }
  .menu-group { display: grid; grid-template-columns: 1fr 44px; width: 100%; }
  .menu-group > a { padding: 12px 14px; }
  .submenu-toggle { width: 44px; height: 44px; align-self: center; }
  .menu .submenu { display: none !important; position: static; grid-column: 1 / -1; min-width: 0; margin: 0 0 4px 12px; padding: 4px 0 4px 10px; border: 0; border-left: 2px solid var(--blue-pale); border-radius: 0; box-shadow: none; }
  .menu .menu-group.open .submenu { display: flex !important; }
  .submenu a { white-space: normal; padding: 10px 12px; }
  .menu.open .langswitch-mobile { display: flex; align-self: flex-start; margin: 10px 14px 2px; }
  .menu.open .langswitch-mobile button { min-width: 52px; min-height: 44px; font-size: .88rem; }
}

/* ── Unterseite Leistungsbeispiele ── */
.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); }
.page-hero::after { content: ""; position: absolute; right: -90px; bottom: -150px; width: 330px; height: 330px; border-radius: 50%; background: rgba(232,93,26,.18); }
.page-hero-inner { position: relative; z-index: 1; max-width: 850px; padding-top: 76px; padding-bottom: 76px; }
.page-hero h1 { max-width: 760px; margin: 12px 0 18px; font-size: clamp(2.35rem, 5vw, 4.2rem); line-height: 1.06; letter-spacing: -.035em; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.7vw, 1.18rem); }
@media (max-width: 620px) {
  .page-hero-inner { padding-top: 56px; padding-bottom: 56px; }
}

/* ── 404-Fehlerseite ── */
.error-hero { padding: 72px 0 64px; }
.error-hero .error-sub { max-width: 560px; margin: 14px 0 0; color: rgba(255,255,255,.82); line-height: 1.6; }
.error-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.error-actions .btn { text-decoration: none; }
.error-page { position: relative; }
.error-page .error-code { position: absolute; top: -6px; right: 0; font-size: 6.5rem; font-weight: 800; line-height: 1; color: var(--gray-200); user-select: none; pointer-events: none; }
.legal .lead-block p:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .error-page .error-code { position: static; font-size: 4.2rem; margin-bottom: 6px; }
}

