/* --------- Design Tokens --------- */
:root {
    --clr-primary: #0095FF;
    /* Blau */
    --clr-ink: #404756;
    /* Dunkelgrau */
    --clr-muted: #DEF2F0;
    /* Grau-Blau */
    --clr-accent: #3A8E88;
    /* Pink hell */
    --clr-accent-dark: #1f504d;
    /* Pink dunkel */
    --clr-bg: #ffffff;
    --clr-bg-soft: #f6f8fb;

    --radius: 16px;
    --shadow: 0 6px 20px rgba(0, 0, 0, .08);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, .12);
}

/* --------- Base --------- */
* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--clr-ink);
    background: var(--clr-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block
}

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

.content {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .content {
        width: 90%;
    }
}

section {
    padding: 72px 0
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin: 0 0 16px
}

h1 {
    font-size: clamp(32px, 4vw, 56px);
    letter-spacing: -0.02em
}

h2 {
    font-size: clamp(24px, 3vw, 36px)
}

h3 {
    font-size: clamp(18px, 2vw, 22px)
}

p {
    margin: 0 0 14px
}

/* --------- Skip Link (A11y) --------- */
.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 16px;
    top: 12px;
    width: auto;
    height: auto;
    z-index: 2000;
    background: #fff;
    border: 2px solid var(--clr-primary);
    padding: 8px 12px;
    border-radius: 8px
}

/* --------- Buttons --------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
    white-space: nowrap;
}

.btn.primary {
    background: var(--clr-primary);
    color: #fff
}

.btn.primary:hover {
    filter: brightness(.95);
    transform: translateY(-1px)
}

.btn.ghost {
    border-color: var(--clr-muted);
    color: var(--clr-ink);
    background: #fff
}

.btn.ghost:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary)
}

/* --------- Header --------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eef1f6;
    transition: box-shadow .25s ease, backdrop-filter .25s ease, background-color .25s ease;
}

header.scrolled {
    box-shadow: var(--shadow);
    backdrop-filter: saturate(1.2) blur(4px);
    background: rgba(255, 255, 255, .96);
}

.nav {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--clr-ink)
}

.brand img {
    width: 43px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px
}

.menu a {
    color: var(--clr-ink);
    font-weight: 500;
    position: relative
}

.menu a.active {
    color: var(--clr-primary)
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 3px;
    background: var(--clr-primary);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 0
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--clr-ink);
    display: block;
    border-radius: 2px
}

/* --------- Mobile-Navi (fix) --------- */
.mobile {
    display: none;
}

/* global versteckt */
.mobile a {
    color: var(--clr-ink);
    font-weight: 500
}

.mobile a.active {
    color: var(--clr-primary)
}

/* --------- Hero --------- */
.hero {
    background: linear-gradient(0deg, #fff, #fafdff)
}

.hero .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px
}

.hero .copy {
    flex: 1 1 440px
}

.hero .visual {
    flex: 1 1 380px;
    display: flex;
    justify-content: center
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #e6ebf2;
    border-radius: 999px;
    color: #51607a;
    background: #fff
}

.hero h1 strong {
    color: var(--clr-primary)
}

.hero .cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px
}

.mock {
    width: 100%;
    max-width: 540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #eef1f6;
    background: #fff
}

.mock .bar {
    height: 44px;
    background: var(--clr-bg-soft);
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0 12px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dot.red {
    background: #ff5f57
}

.dot.yellow {
    background: #febc2e
}

.dot.green {
    background: #27c93f
}

.mock .screen {
    padding: 24px
}

.badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px
}

.badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e6ebf2;
    font-size: 14px;
    color: #51607a
}

/* --------- Benefits --------- */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.card {
    flex: 1 1 260px;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow)
}

.ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px
}

/* --------- Services --------- */
.services .row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px
}

.service {
    flex: 1 1 340px;
    border: 1px solid #eef1f6;
    border-radius: var(--radius);
    padding: 24px;
    background: #fff
}

.service ul {
    padding-left: 18px;
    margin: 10px 0
}

.service ul li {
    margin: 6px 0
}

/* --------- Prozess --------- */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.step {
    flex: 1 1 240px;
    border-radius: var(--radius);
    background: var(--clr-bg-soft);
    padding: 18px;
    border: 1px solid #e8edf5
}

.step .num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px
}

/* --------- Preise --------- */
.pricing {
    background: linear-gradient(0deg, #fff, #fbfcff)
}

.tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.tier {
    flex: 1 1 300px;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.price {
    font-size: 32px;
    font-weight: 700
}

.tier .cta {
    margin-top: auto
}

/* --------- Referenzen --------- */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.shot {
    flex: 1 1 25%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef1f6;
    background: #fff;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

@media screen and (max-width: 768px) {
    .shot {
        flex: 1 1 100%;
        margin-bottom: 0;
    }
}

.shot .ph {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f2f5fb, #e8ecf5)
}

/* --------- Testimonials --------- */
.quotes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.quote {
    flex: 1 1 320px;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 20px;
    background: #fff; 
    margin: 40px 0;
}

.quote .name {
    font-weight: 600;
    margin-top: 8px
}

/* --------- FAQ --------- */
.faq .item {
    border-top: 1px solid #e8edf5;
    padding: 16px 0
}

.faq .item:first-child {
    border-top: 0
}

/* --------- Kontakt --------- */
.contact .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px
}

form {
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

input,
textarea,
select {
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    outline: none;
    background: #fff
}

textarea {
    min-height: 140px;
    resize: vertical
}

.contact .aside {
    flex: 1 1 320px;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 20px;
    background: #fff
}

/* --------- Footer --------- */
footer {
    border-top: 1px solid #eef1f6;
    background: #fff
}

.foot {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0
}

.foot small {
    color: #6b768e
}

/* --------- Utilities --------- */
.kicker {
    color: #6b768e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.muted {
    color: #6b768e
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e6ebf2
}

.tag .dotx {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.tag.pink .dotx {
    background: var(--clr-accent)
}

.tag.blue .dotx {
    background: var(--clr-primary)
}

.center {
    text-align: center
}

.spacer {
    height: 8px
}

/* --------- Responsive --------- */
@media (max-width: 920px) {
    .menu {
        display: none
    }

    .burger {
        display: flex
    }

    .mobile {
        display: none;
        /* bleibt standardmäßig zu */
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }

    .mobile.open {
        /* wird per JS geöffnet */
        display: flex;
    }

    .mobile a {
        padding: 10px 0;
        border-top: 1px solid #eef1f6
    }

    .mobile a:first-child {
        border-top: 0
    }
}