/* ═══════════════════════════════════
   LOCAL FONTS – OSION
   ═══════════════════════════════════ */

/* DM Sans */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/dm-sans/dm-sans-300.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 300;
    src: url('/fonts/dm-sans/dm-sans-300-italic.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/dm-sans/dm-sans-400.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/dm-sans/dm-sans-500.woff2') format('woff2');
    font-display: swap;
}

/* Syne */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/syne/syne-700.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    src: url('/fonts/syne/syne-800.woff2') format('woff2');
    font-display: swap;
}
/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── DESIGN TOKENS ── */
:root {
    --bg:      #f4f6fb;
    --surface: #ffffff;
    --accent:  #0057ff;
    --accent2: #00c8b4;
    --text:    #0a0f1e;
    --muted:   #6b7280;
    --border:  rgba(0, 87, 255, .12);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── GRID OVERLAY (Hintergrund-Raster) ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 87, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 255, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* ── CANVAS HINTERGRUND (nur index) ── */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── SEITENLAYOUT ── */
.page {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown .6s ease both;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--text);
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--accent2);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: .6; }
}

/* Nav-Badge (Index) */
.badge-nav {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .9rem;
    border: 1.5px solid var(--accent);
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .04em;
}

.badge-nav span.dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.2s step-start infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* Zurück-Link (Unterseiten) */
.nav-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.nav-back:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    letter-spacing: -.02em;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .8rem;
    transition: color .2s;
}

.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════
   FLOATING ORBS (Index-Hintergrund)
   ══════════════════════════════════════════════════ */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    animation: drift 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 380px; height: 380px;
    background: rgba(0, 87, 255, .07);
    top: -100px; right: -80px;
    animation-duration: 12s;
}

.orb-2 {
    width: 300px; height: 300px;
    background: rgba(0, 200, 180, .06);
    bottom: 100px; left: -80px;
    animation-duration: 9s;
    animation-delay: -4s;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 40px) scale(1.1); }
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════
   HERO (Index)
   ══════════════════════════════════════════════════ */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    gap: 2rem;
}

.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem 1.2rem;
    background: linear-gradient(135deg, rgba(0, 87, 255, .08), rgba(0, 200, 180, .08));
    border: 1px solid rgba(0, 87, 255, .2);
    border-radius: 99px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    animation: fadeUp .7s .2s ease both;
}

.construction-badge svg { animation: spin 4s linear infinite; }

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    animation: fadeUp .7s .35s ease both;
    max-width: 820px;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
    animation: fadeUp .7s .5s ease both;
}

/* ── PROGRESS BAR ── */
.progress-wrap {
    width: min(420px, 90vw);
    animation: fadeUp .7s .65s ease both;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .6rem;
}

.progress-bar {
    height: 6px;
    background: rgba(0, 87, 255, .1);
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 99px;
    animation: fillBar 2s 1s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes fillBar { to { width: 72%; } }

/* ══════════════════════════════════════════════════
   SECTION LAYOUT (Index)
   ══════════════════════════════════════════════════ */
.section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-desc {
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* ── SERVICES GRID ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible { animation: fadeUp .5s ease forwards; }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 87, 255, .1);
    border-color: rgba(0, 87, 255, .3);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 87, 255, .03), rgba(0, 200, 180, .03));
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.icon-blue   { background: rgba(0, 87, 255, .1); }
.icon-teal   { background: rgba(0, 200, 180, .1); }
.icon-indigo { background: rgba(99, 102, 241, .1); }
.icon-amber  { background: rgba(245, 158, 11, .1); }

.service-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.service-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto;
    max-width: 1100px;
}

/* ══════════════════════════════════════════════════
   TEAM / TRUST SECTION (Index)
   ══════════════════════════════════════════════════ */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.trust-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.trust-text p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .9rem;
}

.achievement-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
}

/* ── STATS PANEL ── */
.stats-panel {
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.2rem;
    background: var(--bg);
    border-radius: 16px;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .3rem;
}

/* ══════════════════════════════════════════════════
   TEAM / PILLAR CARDS (Index)
   ══════════════════════════════════════════════════ */
.team-section { padding-bottom: 2rem; }

.team-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.team-intro-text .section-tag {
    display: inline-block;
    margin-bottom: .7rem;
}

.team-intro-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.team-intro-text p {
    color: var(--muted);
    line-height: 1.7;
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pillar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 0;
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-template-rows: 1fr;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
    align-items: stretch;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    opacity: 0;
    transition: opacity .3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 87, 255, .09);
    border-color: rgba(0, 87, 255, .25);
}

.pillar-card:hover::after { opacity: 1; }

.pillar-left {
    grid-column: 1;
    grid-row: 1;
    background: rgba(0, 87, 255, .025);
    border-right: 1px solid var(--border);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.pillar-header {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: .15rem;
}

.pillar-eyebrow {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: .25rem;
}

.pillar-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.pillar-intro {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    padding: 0;
    border: none;
}

.pillar-right {
    grid-column: 2;
    grid-row: 1;
    padding: 2.2rem 2rem;
    display: flex;
    align-items: center;
}

.pillar-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.pillar-point {
    display: flex;
    gap: .75rem;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--text);
}

.pp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .15rem;
}

.pillar-point strong { color: var(--text); }

/* ══════════════════════════════════════════════════
   CTA BLOCK (Index)
   ══════════════════════════════════════════════════ */
.cta-block {
    background: linear-gradient(135deg, #5d729b 0%, #001950 50%, #01c6dc 100%);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    color: #fff;
    margin: 0 auto 5rem;
    max-width: 1100px;
    width: calc(100% - 4rem);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.cta-block::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.cta-block h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-block p {
    opacity: .85;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-email {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(8px);
    padding: .9rem 1.8rem;
    border-radius: 99px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background .25s, transform .25s;
}

.cta-email:hover {
    background: rgba(255, 255, 255, .25);
    transform: scale(1.04);
}

/* ══════════════════════════════════════════════════
   RECHTSSEITEN (Impressum & Datenschutz)
   ══════════════════════════════════════════════════ */
.legal-main {
    flex: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.page-tag {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: .75rem;
}

.legal-main h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: .5rem;
}

.legal-updated {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 3rem;
}

/* ── Inhaltsverzeichnis (Datenschutz) ── */
.toc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
}

.toc h2 {
    font-family: 'Syne', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.toc ol {
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.toc a {
    color: var(--accent);
    text-decoration: none;
    font-size: .9rem;
    transition: opacity .2s;
}

.toc a:hover { opacity: .7; }

/* ── Karte (wiederverwendbar auf Rechtsseiten) ── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.card h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1rem;
    background: linear-gradient(var(--accent), var(--accent2));
    border-radius: 99px;
    flex-shrink: 0;
}

.card h3 {
    font-family: 'Syne', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.5rem 0 .6rem;
}

.card p,
.card address {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.8;
    font-style: normal;
}

.card p + p { margin-top: .75rem; }

.card ul {
    margin-top: .75rem;
    padding-left: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card li {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.7;
}

.card a { color: var(--accent); text-decoration: none; }
.card a:hover { text-decoration: underline; }

/* ── Definitionsliste (Impressum) ── */
.info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: .4rem 1rem;
    font-size: .95rem;
}

.info-row dt {
    color: var(--muted);
    font-weight: 500;
}

.info-row dd { color: var(--text); }

.info-row dd a { color: var(--accent); text-decoration: none; }

/* ── Hervorgehobene Box ── */
.highlight {
    background: linear-gradient(135deg, rgba(0, 87, 255, .05), rgba(0, 200, 180, .05));
    border: 1px solid rgba(0, 87, 255, .15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.highlight p { font-size: .88rem !important; }

/* ══════════════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════════════ */
.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;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – TABLET (≤ 900px)
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    nav          { padding: 1.2rem 2rem; }
    .hero        { padding: 5rem 1.5rem 3.5rem; }
    .section     { padding: 4rem 1.5rem; }
    .cta-block   { padding: 3rem 2rem; width: calc(100% - 3rem); margin-bottom: 4rem; }
    footer       { padding: 1.5rem 2rem; }
    .stats-panel { padding: 1.8rem; }
    .legal-main  { padding: 3rem 1.5rem 4rem; }
    .card        { padding: 2rem 1.75rem; }
    .toc         { padding: 1.5rem 1.75rem; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – PILLAR CARDS (≤ 820px)
   ══════════════════════════════════════════════════ */
@media (max-width: 820px) {
    .pillar-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .pillar-left {
        grid-column: 1;
        grid-row: 1;
        border-right: none;
        border-bottom: 1px solid var(--border);
        justify-content: flex-start;
    }
    .pillar-right {
        grid-column: 1;
        grid-row: 2;
    }
    .team-intro { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 680px)
   ══════════════════════════════════════════════════ */
@media (max-width: 680px) {
    /* Layout */
    nav          { padding: 1rem 1.25rem; }
    footer       { padding: 1.5rem 1.25rem; flex-direction: column; align-items: flex-start; gap: .6rem; }
    footer span  { white-space: normal !important; font-size: .78rem; }
    .legal-main  { padding: 2.5rem 1.25rem 4rem; }

    /* Badge */
    .badge-nav   { font-size: .72rem; padding: .3rem .75rem; }

    /* Hero */
    .hero        { padding: 4rem 1.25rem 2.5rem; gap: 1.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-subtitle br { display: none; }

    /* Sections */
    .section     { padding: 3rem 1.25rem; }
    .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid  { grid-template-columns: 1fr; }

    /* CTA */
    .cta-block   { padding: 2.5rem 1.5rem; width: calc(100% - 2.5rem); border-radius: 20px; margin-bottom: 3rem; }
    .cta-block h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
    .cta-block p  { font-size: .9rem; }
    .cta-email   { font-size: .9rem; padding: .8rem 1.4rem; }

    /* Stats */
    .stats-panel { padding: 1.25rem; gap: .75rem; }
    .stat        { padding: 1rem .75rem; }
    .stat-num    { font-size: 1.5rem; }

    /* Team */
    .team-intro  { gap: 1.5rem; margin-bottom: 2rem; }

    /* Pillars */
    .pillar-card { border-radius: 16px; }
    .pillar-left,
    .pillar-right { padding: 1.5rem 1.25rem; }
    .pillar-title { font-size: .95rem; }
    .pillar-intro { font-size: .85rem; }

    /* Rechtsseiten */
    .card        { padding: 1.5rem 1.25rem; border-radius: 16px; }
    .info-row    { grid-template-columns: 1fr; gap: .1rem .5rem; }
    .info-row dt { font-size: .82rem; color: var(--accent); }
    .toc         { padding: 1.25rem; }

    /* Footer links */
    .footer-links { gap: 1rem; }
}
