/* abaleo – palanx.com Vorschau */
:root {
    --cyan: #00a7e1;
    --cyan-dark: #0077a8;
    --ink: #16212b;
    --ink-soft: #43535f;
    --bg: #ffffff;
    --bg-alt: #f2f7fa;
    --line: #dde7ee;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(22, 33, 43, .10);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Segoe UI", -apple-system, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

a { color: var(--cyan-dark); text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand img { height: 40px; display: block; }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.main-nav a:hover { color: var(--cyan); }
.nav-logout { color: var(--ink-soft) !important; font-weight: 400 !important; font-size: .85rem !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center 65%; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(10, 25, 40, .82) 25%, rgba(0, 130, 190, .45) 70%, rgba(0, 167, 225, .25));
}
.hero-content { position: relative; color: #fff; padding: 90px 24px; }
.hero-kicker {
    text-transform: uppercase; letter-spacing: .18em; font-size: .8rem;
    color: #9adcf5; font-weight: 700; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 15ch; margin-bottom: 20px; }
.hero-lead { font-size: 1.15rem; max-width: 52ch; color: #e6f3fa; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-block; padding: 14px 28px; border-radius: 999px;
    font-weight: 700; font-size: .95rem; transition: all .2s;
}
.btn-primary { background: var(--cyan); color: #fff; }
.btn-primary:hover { background: #21b7ec; transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(255, 255, 255, .7); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .15); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: linear-gradient(160deg, #0d1e2b, #103a52); color: #fff; }
.section-kicker {
    text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
    color: var(--cyan); font-weight: 700; margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
.section-lead { max-width: 68ch; color: var(--ink-soft); margin-bottom: 40px; }
.section-dark .section-lead { color: #b9d2e0; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 30px; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 24px; box-shadow: var(--shadow); transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 1.9rem; margin-bottom: 12px; }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { font-size: .93rem; color: var(--ink-soft); }

/* ---------- Split (Parksysteme) ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; padding: 18px; }
.tier { margin-top: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.tier h4 { color: var(--cyan-dark); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; margin-bottom: 8px; }
.tier ul { list-style: none; }
.tier li { padding: 4px 0 4px 24px; position: relative; font-size: .95rem; color: var(--ink-soft); }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

/* ---------- Feature grid (IT-Parking) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.feature {
    display: flex; flex-direction: column; gap: 4px;
    background: var(--bg-alt); border-left: 4px solid var(--cyan);
    border-radius: 8px; padding: 18px 20px;
}
.feature strong { font-size: 1rem; }
.feature span { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Referenzen ---------- */
.refs { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 36px; }
.ref {
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius); padding: 26px 24px;
}
.ref-num { font-size: 2rem; font-weight: 800; color: var(--cyan); display: block; margin-bottom: 6px; }
.ref h3 { font-size: 1.05rem; margin-bottom: 8px; }
.ref p { font-size: .9rem; color: #b9d2e0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 30px; }
.contact-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 12px; color: var(--cyan-dark); }
.contact-card p { margin-bottom: 10px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo { height: 30px; }
.site-footer p { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Login-Gate ---------- */
.gate-body {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, #0d1e2b 0%, #10465f 60%, #00a7e1 130%);
    padding: 24px;
}
.gate-card {
    background: #fff; border-radius: 20px; box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    padding: 48px 44px; max-width: 420px; width: 100%; text-align: center;
}
.gate-logo { max-width: 240px; width: 100%; margin-bottom: 26px; }
.gate-card h1 { font-size: 1.5rem; margin-bottom: 10px; }
.gate-sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 26px; }
.gate-error {
    background: #fdecec; color: #b3261e; border: 1px solid #f5c6c6;
    border-radius: 8px; padding: 10px 14px; font-size: .9rem; margin-bottom: 18px;
}
.gate-card input[type="password"] {
    width: 100%; padding: 14px 16px; font-size: 1rem;
    border: 1.5px solid var(--line); border-radius: 10px; margin-bottom: 14px;
    outline: none; transition: border-color .2s;
}
.gate-card input[type="password"]:focus { border-color: var(--cyan); }
.gate-card button {
    width: 100%; padding: 14px; font-size: 1rem; font-weight: 700;
    background: var(--cyan); color: #fff; border: none; border-radius: 10px;
    cursor: pointer; transition: background .2s;
}
.gate-card button:hover { background: #21b7ec; }
.gate-foot { margin-top: 26px; font-size: .78rem; color: #9aa8b2; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .split { grid-template-columns: 1fr; }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; background: #fff; padding: 20px 24px;
        border-bottom: 1px solid var(--line); gap: 16px;
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .section { padding: 64px 0; }
}
