:root {
    --ink: #0f1620;
    --ink-2: #1b2531;
    --red: #e63946;
    --red-dark: #c92c39;
    --muted: #f4f6f8;
    --line: #e4e8ec;
    --text: #2a3340;
    --text-soft: #5a6572;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 18px 40px -18px rgba(15, 22, 32, .35);
    --container: 1180px;
    --head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.i { width: 16px; height: 16px; fill: currentColor; vertical-align: -3px; margin-right: 6px; }

h1, h2, h3, h4 { font-family: var(--head); line-height: 1.05; color: var(--ink); font-weight: 700; letter-spacing: .5px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--head); font-weight: 600; font-size: 1.05rem; letter-spacing: .8px;
    text-transform: uppercase; padding: 14px 28px; border-radius: 999px;
    cursor: pointer; border: 2px solid transparent; transition: .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); }
.btn--block { width: 100%; }

/* Topbar */
.topbar { background: var(--ink); color: #c7ced6; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__left { display: flex; gap: 22px; }
.topbar a:hover { color: #fff; }

/* Header */
.header {
    position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); transition: .3s;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand__logo { height: 48px; width: auto; }
.brand__logo--light { display: none; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: var(--head); font-weight: 600; font-size: 1.05rem; letter-spacing: .6px; text-transform: uppercase; color: var(--ink); transition: color .2s; }
.nav a:not(.nav__cta):hover { color: var(--red); }
.nav__cta { color: #fff; padding: 11px 22px; font-size: .95rem; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative; color: #fff; overflow: hidden;
    background:
        linear-gradient(120deg, rgba(15,22,32,.92) 0%, rgba(15,22,32,.55) 100%),
        url("https://placehold.co/1600x900/1b2531/0f1620?text=+") center/cover no-repeat;
}
.hero__content { position: relative; padding: 110px 24px 96px; max-width: 780px; }
.hero__kicker { font-family: var(--head); text-transform: uppercase; letter-spacing: 3px; color: var(--red); font-weight: 600; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); color: #fff; }
.hero h1 span { color: var(--red); }
.hero__lead { font-size: 1.15rem; color: #d5dbe1; max-width: 620px; margin: 22px 0 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero__badges div { display: flex; flex-direction: column; }
.hero__badges strong { font-family: var(--head); font-size: 2.2rem; color: #fff; line-height: 1; }
.hero__badges span { font-size: .9rem; color: #aeb7c1; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* USP */
.usp { background: var(--ink-2); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); }
.usp__item { background: var(--ink-2); padding: 34px 26px; color: #fff; }
.usp__icon { width: 40px; height: 40px; fill: var(--red); margin-bottom: 14px; }
.usp__item h3 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; }
.usp__item p { color: #9aa4b0; font-size: .95rem; }

/* Sections */
.section { padding: 92px 0; }
.section--muted { background: var(--muted); }
.section__head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.eyebrow { font-family: var(--head); text-transform: uppercase; letter-spacing: 3px; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.section__head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section__sub { color: var(--text-soft); margin-top: 14px; font-size: 1.05rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 28px; transition: .25s ease; position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--red); transition: width .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon { width: 58px; height: 58px; border-radius: 14px; background: rgba(230,57,70,.1); display: grid; place-items: center; margin-bottom: 18px; }
.card__icon svg { width: 30px; height: 30px; fill: var(--red); }
.card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); }

/* Split (Über uns) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split__stat {
    position: absolute; right: -14px; bottom: -14px; background: var(--red); color: #fff;
    padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 190px;
}
.split__stat strong { font-family: var(--head); font-size: 2.4rem; display: block; line-height: 1; }
.split__stat span { font-size: .85rem; }
.split__text h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin: 8px 0 16px; }
.split__text p { color: var(--text-soft); }
.ticks { list-style: none; margin: 22px 0 30px; }
.ticks li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--text); }
.ticks li::before {
    content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
    background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: 260px; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
    position: absolute; left: 0; bottom: 0; width: 100%; padding: 16px;
    background: linear-gradient(transparent, rgba(15,22,32,.85)); color: #fff;
    font-family: var(--head); font-size: 1.2rem; letter-spacing: .5px;
}

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 10px 30px -22px rgba(15,22,32,.4); }
.stars { color: var(--red); letter-spacing: 3px; margin-bottom: 12px; }
.testimonial p { font-size: 1.05rem; color: var(--text); font-style: italic; }
.testimonial footer { margin-top: 16px; font-family: var(--head); font-weight: 600; color: var(--ink); letter-spacing: .5px; }

/* CTA */
.cta { background: var(--red); color: #fff; padding: 60px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta p { color: rgba(255,255,255,.9); margin-top: 6px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin: 8px 0 14px; }
.contact__info > p { color: var(--text-soft); }
.contact__list { list-style: none; margin-top: 26px; }
.contact__list li { display: flex; gap: 14px; margin-bottom: 20px; }
.contact__list .i { width: 24px; height: 24px; fill: var(--red); flex: none; margin-top: 2px; }
.contact__list strong { color: var(--ink); font-family: var(--head); letter-spacing: .5px; }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
    font-family: var(--body); font-size: .98rem; background: #fbfcfd; transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(230,57,70,.12); background: #fff; }
.field textarea { resize: vertical; }
.form__note { margin-top: 14px; font-size: .95rem; font-weight: 600; min-height: 1.2em; }
.form__note.ok { color: #1c8a4d; }
.form__note.err { color: var(--red); }

/* Footer */
.footer { background: var(--ink); color: #9aa4b0; padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer h4 { color: #fff; font-size: 1.25rem; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a:hover { color: var(--red); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; }
.footer__hint { color: #6b7683; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
    .usp__grid { grid-template-columns: repeat(2, 1fr); }
    .cards, .gallery, .testimonials { grid-template-columns: repeat(2, 1fr); }
    .split, .contact { grid-template-columns: 1fr; }
    .split__stat { right: 16px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .hide-sm { display: none; }
    .nav {
        position: fixed; inset: 78px 0 auto 0; background: var(--ink); flex-direction: column;
        align-items: stretch; gap: 0; padding: 10px 24px 24px; transform: translateY(-140%);
        transition: transform .35s ease; box-shadow: var(--shadow);
    }
    .nav.open { transform: translateY(0); }
    .nav a { color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .nav__cta { text-align: center; margin-top: 14px; border-bottom: 0; }
    .burger { display: block; }
    .cards, .gallery, .testimonials, .field-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__content { padding: 72px 24px 64px; }
    .section { padding: 64px 0; }
}

@media (max-width: 460px) {
    .usp__grid { grid-template-columns: 1fr; }
    .hero__badges { gap: 26px; }
}
