/* ─────────────────────────────────────────────────────────────
   BewerberTool — Produktseite im 2010er-Stil
   Flat, kein Glassmorphismus, kein Dark-Mode-Toggle, kein Gimmick.
   Solide Farben, klare Sans-Serif, generöse Abstände.
   ───────────────────────────────────────────────────────────── */

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

:root {
    --bg: #ffffff;
    --bg-soft: #f4f6f8;
    --text: #2c3e50;        /* das klassische SaaS-Navy */
    --text-soft: #5e6d7e;
    --muted: #8895a4;
    --border: #e1e5ea;
    --primary: #2e7cd6;     /* anständiges 2010er Blau */
    --primary-dark: #1f5fa8;
    --accent: #e87a2e;      /* gegen-orange */
    --dark: #2c3e50;
    --dark-soft: #34495e;
    --maxw: 1140px;
}

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: "Open Sans", "Segoe UI", Tahoma, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
}
a:hover { text-decoration: underline; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: clamp(20px, 4vw, 36px);
}
.container.narrow { max-width: 800px; }
.center { text-align: center; }

/* ─── Navbar ───────────────────────────────────────────────── */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: var(--primary);
    border-radius: 4px;
    position: relative;
}
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 6px;
    background: #fff;
    border-radius: 2px;
}

.nav {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    color: var(--text-soft);
    padding: 8px 14px;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav-link:hover { background: var(--bg-soft); color: var(--dark); text-decoration: none; }
.nav-link.is-active { color: var(--primary); }
.nav-link--cta {
    background: var(--primary);
    color: #fff !important;
    margin-left: 8px;
}
.nav-link--cta:hover { background: var(--primary-dark); color: #fff; }

/* Burger (Pure CSS) */
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 9px 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}
.nav-burger span {
    display: block;
    height: 2px;
    background: var(--dark);
}

@media (max-width: 720px) {
    .nav-burger { display: flex; }
    .nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s, transform 0.15s;
    }
    .nav-link { padding: 14px 24px; border-top: 1px solid var(--border); border-radius: 0; }
    .nav-link:first-of-type { border-top: 0; }
    .nav-link--cta { margin: 12px 24px 8px; padding: 12px 18px; text-align: center; }
    .nav-toggle:checked ~ .nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    padding-block: clamp(48px, 7vw, 96px);
}
.hero--compact { padding-block: clamp(40px, 5vw, 64px); }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 920px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}
.eyebrow--inverse { color: #8db4e0; }

h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}
.h2-inverse { color: #fff; }

h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.lead {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 24px;
    max-width: 56ch;
}
.lead--inverse { color: rgba(255,255,255,0.85); }

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
    cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-large {
    padding: 14px 30px;
    font-size: 1.05rem;
}
.hero-meta {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Mock-up Bild im Pipeline-Stil */
.hero-art {
    display: flex;
    justify-content: center;
}
.mockup {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(44,62,80,0.08);
    overflow: hidden;
}
.mockup-bar {
    background: #f0f3f6;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 7px;
}
.mockup-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d6dade;
}
.mockup-bar span:nth-child(1) { background: #ed6a5e; }
.mockup-bar span:nth-child(2) { background: #f5bd4f; }
.mockup-bar span:nth-child(3) { background: #61c554; }
.mockup-body {
    padding: 18px;
}
.mockup-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    font-size: 0.9rem;
}
.mockup-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mockup-col {
    background: var(--bg-soft);
    border-radius: 4px;
    padding: 10px 8px;
    min-height: 180px;
}
.mockup-col-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
.mockup-col-title span {
    background: #fff;
    color: var(--dark);
    padding: 1px 5px;
    border-radius: 8px;
    font-weight: 700;
}
.mockup-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 7px 8px;
    font-size: 0.75rem;
    margin-bottom: 5px;
    color: var(--dark);
}
.mockup-card--active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(46,124,214,0.15);
}

/* ─── Band (Zahlen-Streifen) ───────────────────────────────── */
.band {
    padding-block: 40px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.band--alt {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    border-bottom: none;
}
.band-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
}
@media (min-width: 720px) {
    .band-grid { grid-template-columns: repeat(3, 1fr); }
}
.band-num {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.band-text {
    font-size: 0.95rem;
    max-width: 32ch;
    margin: 0 auto;
}

/* ─── Sections ─────────────────────────────────────────────── */
.section {
    padding-block: clamp(56px, 7vw, 96px);
}
.section--dark {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
}
.section em {
    font-style: italic;
    color: var(--dark);
}
.section--dark em { color: #fff; }

/* ─── Persona-Grid ─────────────────────────────────────────── */
.persona-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}
@media (min-width: 800px) {
    .persona-grid { grid-template-columns: repeat(3, 1fr); }
}
.persona {
    background: var(--dark-soft);
    border-radius: 4px;
    padding: 24px;
    border-top: 3px solid var(--accent);
}
.persona-role {
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 10px;
}
.persona p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

/* ─── Feature-Grid (Features-Seite) ────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 720px) {
    .feature-grid { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
}
@media (min-width: 1020px) {
    .feature-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.feature {
    padding: 6px 0;
}
.feature h3 { color: var(--dark); margin-bottom: 6px; }
.feature p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }
.feature code {
    background: #f4f6f8;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0 4px;
    font-family: Menlo, Consolas, monospace;
    font-size: 0.85em;
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}
.feature-icon--blue   { background: #2e7cd6; }
.feature-icon--green  { background: #36a866; }
.feature-icon--orange { background: #e87a2e; }
.feature-icon--purple { background: #8b5cb8; }
.feature-icon--red    { background: #d65947; }
.feature-icon--teal   { background: #2eb6a6; }
.feature-icon--gray   { background: #7b8794; }

/* "Was bewusst nicht drin ist" - Liste */
.not-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 10px;
    max-width: 60ch;
}
.not-list li {
    position: relative;
    padding-left: 30px;
    color: rgba(255,255,255,0.82);
}
.not-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
    background: #1f2d3d;
    color: rgba(255,255,255,0.75);
    padding-block: 48px 24px;
    font-size: 0.92rem;
}
.footer a {
    color: rgba(255,255,255,0.9);
}
.footer a:hover { color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
@media (min-width: 720px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.footer-tag { color: rgba(255,255,255,0.6); max-width: 32ch; }
.footer-headline {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}
.footer-col p { margin-bottom: 4px; }
.footer-baseline {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
