/* ─────────────────────────────────────────────
   SpotOn · Design System
   Pure white, finlayy-inspired structure
   ───────────────────────────────────────────── */

:root {
    --bg:           #FFFFFF;
    --bg-2:         #FAF9F6;
    --bg-3:         #F4F2EC;
    --line:         #ECEAE3;
    --line-2:       #DEDCD3;

    --ink:          #0F0F0F;
    --ink-2:        #555350;
    --ink-3:        #9C9A93;

    --terracotta:   #C4502D;
    --terracotta-2: #A8421F;
    --terracotta-3: #FAE9DF;

    --cafe-accent:    #7A4B2F;
    --cafe-bg:        #F4ECDB;
    --studio-accent:  #1A1A1A;
    --studio-bg:      #FAFAF7;
    --wood-accent:    #2C3F2A;
    --wood-bg:        #ECE6D6;

    --font-display: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  18px;
    --radius-xl:  24px;

    --container:  1240px;
    --pad-x:      clamp(1.25rem, 4vw, 2.5rem);
    --pad-y:      clamp(5rem, 9vw, 9rem);

    --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--terracotta); color: #FFFFFF; }

/* ────────────  Container & Section Primitives  ──────────── */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
}

.section {
    padding-top: var(--pad-y);
    padding-bottom: var(--pad-y);
    position: relative;
}

.section + .section { padding-top: 0; }

.section__head {
    max-width: 760px;
    margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.25rem;
}

.kicker::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--terracotta);
    display: inline-block;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--ink);
    max-width: 18ch;
}

.section__lede {
    font-size: clamp(1rem, 1.4vw, 1.175rem);
    line-height: 1.6;
    color: var(--ink-2);
    margin-top: 1.5rem;
    max-width: 620px;
}

/* ────────────  Logo  ──────────── */

.logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
}

.logo__type { display: inline-block; }

.logo__dot {
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    border-radius: 50%;
    background: var(--terracotta);
    margin: 0 0.05em;
    transform: translateY(0.04em);
    transition: transform 0.4s var(--ease);
}

.logo:hover .logo__dot { transform: translateY(0.04em) scale(1.15); }

/* ────────────  Nav  ──────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.125rem 0;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    padding: 0.75rem 0;
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

.nav__sep { color: var(--ink-3); pointer-events: none; }

.nav__links a {
    position: relative;
    transition: color 0.2s var(--ease);
}

.nav__links a:not(.nav__cta):hover { color: var(--terracotta); }

.nav__cta {
    margin-left: 1rem;
    padding: 0.6rem 1.1rem;
    background: var(--ink);
    color: #FFFFFF;
    border-radius: 999px;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__cta:hover { background: var(--terracotta); transform: translateY(-1px); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

/* ────────────  Buttons  ──────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.5rem;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
    text-align: center;
    will-change: transform;
}

.btn svg { transition: transform 0.3s var(--ease); }

.btn--primary { background: var(--ink); color: #FFFFFF; }
.btn--primary:hover { background: var(--terracotta); transform: translateY(-2px); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #FFFFFF; transform: translateY(-2px); }

.btn--full { width: 100%; }
.btn--lg { padding: 1.1rem 1.75rem; font-size: 16px; }

/* ────────────  Hero  ──────────── */

.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 0 5rem;
    position: relative;
}

.hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    width: 100%;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    padding: 0.45rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-bottom: 2.25rem;
}

.eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--terracotta);
    animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.18); }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 7.5vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin: 0 0 2rem;
    max-width: 18ch;
    color: var(--ink);
}

.hero__title .reveal-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.14em;
    margin-bottom: -0.08em;
}

.hero__sub {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.hero__cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ────────────  Trust Strip  ──────────── */

.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 1.25rem 0;
}

.trust__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem 2.5rem;
}

.trust__item {
    font-size: 14px;
    color: var(--ink-2);
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
}

.trust__item strong {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 16px;
    letter-spacing: -0.02em;
}

/* ────────────  Services  ──────────── */

.services { background: var(--bg); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service {
    padding: 2.5rem 2.25rem 2.5rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    transition: background 0.3s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service:hover { background: var(--bg-2); }

.service__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    color: var(--terracotta);
}

.service__icon svg { width: 100%; height: 100%; }

.service__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.service__desc {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    align-self: flex-start;
    border-bottom: 1px solid var(--line-2);
    padding-bottom: 2px;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service__link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ────────────  48h Feature Block  ──────────── */

.feature { background: var(--bg-2); }

.feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature__copy .kicker { margin-bottom: 1rem; }
.feature__copy .section__title { max-width: 14ch; }

.feature__cta { margin-top: 2rem; }

.feature__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-2);
}

.feature__list li:last-child { border-bottom: 0; }

.feature__list li strong { color: var(--ink); font-weight: 600; }

.feature__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--terracotta);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ────────────  Branchen  ──────────── */

.branchen { background: var(--bg); }

.branchen__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    border-top: 1px solid var(--line);
    padding-top: 3rem;
}

.branchen__label {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.branchen__list {
    display: flex;
    flex-direction: column;
}

.branchen__list li {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    letter-spacing: -0.025em;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.branchen__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    display: inline-block;
    flex-shrink: 0;
}

.branchen__list--neg li {
    color: var(--ink-3);
    text-decoration: line-through;
    text-decoration-color: rgba(156, 154, 147, 0.45);
    text-decoration-thickness: 1.5px;
}

.branchen__list--neg li::before { background: var(--ink-3); }

.branchen__neg-note {
    margin-top: 1.5rem;
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.55;
}

/* ────────────  Pillars / Keine Kompromisse  ──────────── */

.pillars { background: var(--bg-2); }

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}

.pillar:hover { transform: translateY(-4px); border-color: var(--ink); }

.pillar__num {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pillar__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.pillar__desc {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.6;
}

/* ────────────  About / Wir sind SpotOn  ──────────── */

.about { background: var(--bg); }

.about__box {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.about__text p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 1rem;
    max-width: 56ch;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
    margin: 2.25rem 0 2rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about__stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
}

.about__stat-label {
    font-size: 13px;
    color: var(--ink-3);
    letter-spacing: 0.01em;
}

.about__cta { margin-top: 0.5rem; }

.about__team {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about__person {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}

.about__person:hover { transform: translateY(-3px); border-color: var(--ink); }

.about__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background:
        radial-gradient(circle at 30% 30%, var(--terracotta-3), transparent 60%),
        linear-gradient(135deg, var(--bg-3), var(--line-2));
    border: 1px solid var(--line);
}

.about__photo::after {
    content: 'Foto folgt';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    text-align: center;
}

.about__photo--c { background: linear-gradient(135deg, #2C2A26, #555350); }
.about__photo--l { background: linear-gradient(135deg, var(--terracotta), var(--cafe-accent)); }
.about__photo--c::after,
.about__photo--l::after { color: rgba(255, 255, 255, 0.7); }

.about__person figcaption h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.about__person figcaption p {
    font-size: 14px;
    color: var(--terracotta);
    margin-top: 2px;
}

/* ────────────  Prozess  ──────────── */

.prozess { background: var(--bg); }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.step {
    padding: 2.5rem 2rem;
    background: var(--bg);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s var(--ease);
    position: relative;
}

.step:hover { background: var(--bg-2); }

.step__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--terracotta);
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.step__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
    margin-bottom: 0.625rem;
}

.step__desc {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ────────────  Demo Showcase  ──────────── */

.demos { background: var(--bg-2); }

.mockups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.mockup { position: relative; }

.mockup__frame {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 25px 50px -25px rgba(15, 15, 15, 0.18);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.mockup:hover .mockup__frame {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px -30px rgba(15, 15, 15, 0.28);
}

.mockup__chrome {
    background: #F6F5F0;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--line);
}

.mockup__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D8D2C0;
}

.mockup__dot:nth-of-type(1) { background: #E8917A; }
.mockup__dot:nth-of-type(2) { background: #E8C77A; }
.mockup__dot:nth-of-type(3) { background: #A0B884; }

.mockup__url {
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    color: var(--ink-3);
    background: #FFFFFF;
    padding: 3px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-family: var(--font-body);
}

.mockup__viewport {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: var(--bg-3);
}

.mockup__page {
    width: 100%;
    height: 300%;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.mockup__page--cafe { background: var(--cafe-bg); }
.mockup__page--studio { background: var(--studio-bg); }
.mockup__page--tischlerei { background: var(--wood-bg); }

.m-screen {
    height: 380px;
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: relative;
    overflow: hidden;
}

.m-screen--alt { background: rgba(255, 255, 255, 0.5); }
.m-screen--studio { background: #1A1A1A; color: #F5F2EC; }
.m-screen--wood { background: #2C3F2A; color: #FFFFFF; }

.m-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.m-screen--studio .m-nav,
.m-screen--wood .m-nav { border-bottom-color: rgba(255,255,255,0.15); }

.m-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: var(--cafe-accent);
}

.m-logo--studio { color: #F5F2EC; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.m-logo--wood { color: #FFFFFF; font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }

.m-nav-link {
    font-size: 10px;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 12px;
}

.m-screen--studio .m-nav-link,
.m-screen--wood .m-nav-link { color: rgba(255,255,255,0.7); }

.m-kicker {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 4px;
}

.m-screen--studio .m-kicker,
.m-screen--wood .m-kicker { color: rgba(255,255,255,0.55); }

.m-h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-top: 4px;
}

.m-screen--studio .m-h1 { color: #F5F2EC; font-size: 24px; }
.m-screen--wood .m-h1 { color: #FFFFFF; font-size: 22px; }

.m-h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-top: 2px;
}

.m-p {
    font-size: 12px;
    line-height: 1.45;
    color: var(--ink-2);
}

.m-screen--studio .m-p,
.m-screen--wood .m-p { color: rgba(255,255,255,0.75); }

.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 8px 14px;
    background: var(--cafe-accent);
    color: #FFFFFF;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    margin-top: 6px;
}

.m-btn--studio { background: #F5F2EC; color: #1A1A1A; }
.m-btn--wood { background: var(--terracotta); color: #FFFFFF; }
.m-btn--full { align-self: stretch; padding: 11px 14px; font-size: 12px; }

.m-hero-img {
    margin-top: auto;
    height: 130px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 30% 40%, rgba(196, 80, 45, 0.35), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(122, 75, 47, 0.45), transparent 60%),
        linear-gradient(135deg, #A87C53, #5B3B25);
}

.m-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.m-menu-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 7px;
    border-bottom: 1px dashed rgba(122, 75, 47, 0.35);
    font-size: 11px;
}

.m-menu-row span:first-child { color: var(--ink); }
.m-menu-row span:last-child { color: var(--cafe-accent); font-weight: 500; }

.m-formline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 11px;
    color: var(--ink-2);
}

.m-formline--wood { border-bottom-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); }

.m-pill {
    background: rgba(255,255,255,0.55);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.06);
}

.m-pill--wood {
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.2);
}

.m-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 6px;
}

.m-grid--wide { grid-template-columns: 1.5fr 1fr; margin-bottom: 8px; }

.m-img {
    height: 80px;
    border-radius: 6px;
    background: linear-gradient(135deg, #C8B89A, #7A4B2F);
}

.m-img--studio-1 { background: linear-gradient(135deg, #2C2C2C, #6B6B6B); }
.m-img--studio-2 { background: linear-gradient(135deg, #8B7B6B, #C8B89A); }
.m-img--studio-3 { background: linear-gradient(135deg, #4A4540, #8E847A); }
.m-img--studio-4 { background: linear-gradient(135deg, #B0A090, #ECE3D2); }

.m-img--wood-1 { height: 96px; background: linear-gradient(135deg, #6B4A2E, #B58659); }
.m-img--wood-2 { height: 96px; background: linear-gradient(135deg, #8D6741, #C49B6C); }
.m-img--wood-3 { background: linear-gradient(135deg, #C49B6C, #8D6741); }
.m-img--wood-4 { background: linear-gradient(135deg, #6B4A2E, #4A331E); }

.m-cal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.m-cal-day {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m-cal-day > span:first-child {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.m-cal-slot {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: #FFFFFF;
}

.mockup__caption { padding: 1.75rem 0.25rem 0; }

.mockup__tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 500;
}

.mockup__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    margin-top: 0.5rem;
}

.mockup__desc {
    color: var(--ink-2);
    margin-top: 0.5rem;
    font-size: 15px;
    line-height: 1.55;
}

/* ────────────  Pakete  ──────────── */

.pakete { background: var(--bg); }

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.price {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}

.price:hover { transform: translateY(-6px); border-color: var(--ink); }

.price--featured {
    background: var(--ink);
    color: #FFFFFF;
    border-color: var(--ink);
    transform: translateY(-12px);
}

.price--featured:hover { transform: translateY(-16px); }

.price__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: #FFFFFF;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.price__head { margin-bottom: 1.5rem; }

.price__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

.price__pitch {
    color: var(--ink-2);
    margin-top: 0.25rem;
    font-size: 15px;
}

.price--featured .price__pitch { color: rgba(255, 255, 255, 0.65); }

.price__amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
}

.price__from {
    font-weight: 500;
    font-size: 1rem;
    color: var(--ink-3);
    margin-right: 0.4rem;
    vertical-align: 0.6em;
}

.price--featured .price__from { color: rgba(255, 255, 255, 0.55); }

.price__unit {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-3);
    margin-left: 0.25rem;
}

.price--featured .price__unit { color: rgba(255, 255, 255, 0.6); }

.price__list {
    margin-bottom: 2rem;
    flex: 1;
}

.price__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink-2);
}

.price--featured .price__list li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.price--featured .btn--primary {
    background: var(--terracotta);
    color: #FFFFFF;
}

.price--featured .btn--primary:hover { background: #FFFFFF; color: var(--ink); }

/* ────────────  FAQ  ──────────── */

.faq { background: var(--bg-2); }

.faq__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.faq__item {
    border-bottom: 1px solid var(--line);
    padding: 0;
}

.faq__item summary {
    padding: 1.75rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    letter-spacing: -0.02em;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: color 0.25s var(--ease);
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { display: none; }

.faq__item summary::after {
    content: '+';
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--terracotta);
    transition: transform 0.35s var(--ease);
    line-height: 1;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item summary:hover { color: var(--terracotta); }

.faq__item p {
    padding: 0 0 1.75rem;
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.65;
    max-width: 720px;
}

/* ────────────  Closing  ──────────── */

.closing { background: var(--bg); }

.closing__box {
    background: var(--ink);
    color: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing__box::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(196, 80, 45, 0.35) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    z-index: 0;
}

.closing__box > * { position: relative; z-index: 1; }

.closing__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

.closing__lede {
    font-size: clamp(1rem, 1.4vw, 1.175rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.55;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

.closing__box .btn {
    background: #FFFFFF;
    color: var(--ink);
}

.closing__box .btn:hover {
    background: var(--terracotta);
    color: #FFFFFF;
}

.closing__letter {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.closing__letter p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.closing__sign {
    margin-top: 1.5rem !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
}

/* ────────────  Form  ──────────── */

.kontakt { background: var(--bg-2); }

.form {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: 0.02em;
}

.form__group input,
.form__group textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.95rem 1.1rem;
    font: inherit;
    font-size: 16px;
    color: var(--ink);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
    resize: vertical;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--ink);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--ink-3); }

.form__legal {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* ────────────  Footer  ──────────── */

.footer {
    background: var(--ink);
    color: #FFFFFF;
    padding: 4.5rem 0 2rem;
}

.footer .logo { color: #FFFFFF; }

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.footer__col a {
    display: block;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    transition: color 0.2s var(--ease), transform 0.25s var(--ease);
}

.footer__col a:hover { color: var(--terracotta); transform: translateX(3px); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__bottom .logo {
    color: #FFFFFF;
    font-size: 1.25rem;
}

/* ────────────  A11y helpers  ──────────── */

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 var(--radius) 0;
    font-size: 14px;
}

.skip-link:focus { left: 0; }

:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
    border-radius: 4px;
}

[id] { scroll-margin-top: 88px; }

/* ────────────  Hero — reassurance + scroll cue  ──────────── */

.hero__reassure {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 62ch;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink-2);
}

.hero__reassure-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--terracotta-3);
    color: var(--terracotta);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.hero .hero__cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    transition: color 0.25s var(--ease);
}

.hero .hero__cue:hover { color: var(--terracotta); }
.hero .hero__cue svg { animation: cueBounce 2.2s var(--ease) infinite; }

@keyframes cueBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

/* ────────────  Problem / Kennst du das?  ──────────── */

.problem { background: var(--bg-2); }

.problem__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.pain {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}

.pain:hover { transform: translateY(-4px); border-color: var(--ink); }

.pain__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta-3);
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.pain__icon svg { width: 22px; height: 22px; }

.pain__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.pain__desc {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ────────────  Lösung-Bridge (dark band)  ──────────── */

.bridge {
    background: var(--ink);
    color: #FFFFFF;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bridge__inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bridge::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(196, 80, 45, 0.30) 0%, transparent 70%);
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.kicker--light { justify-content: center; }

.bridge__text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.4rem, 2.9vw, 2.15rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.25rem auto 2.25rem;
}

.bridge__text strong { color: #FFFFFF; }

.btn--onlight { background: #FFFFFF; color: var(--ink); }
.btn--onlight:hover { background: var(--terracotta); color: #FFFFFF; transform: translateY(-2px); }
.btn--onlight:hover svg { transform: translateX(3px); }

/* ────────────  Social Proof  ──────────── */

.proof { background: var(--bg); }

.proof__box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.proof__box .kicker { justify-content: center; }

.proof__quote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 1rem auto 2rem;
    max-width: 42ch;
}

.proof__author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.proof__badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--terracotta), var(--cafe-accent));
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.proof__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
}

.proof__role {
    font-size: 13px;
    color: var(--ink-3);
    text-align: left;
    margin-top: 2px;
}

/* ────────────  Pakete reassurance strip  ──────────── */

.pakete__reassure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2rem;
    margin-top: 2.75rem;
}

.pakete__reassure li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--ink-2);
}

.pakete__reassure li span { color: var(--terracotta); font-weight: 700; }

/* ────────────  Kontakt layout  ──────────── */

.kontakt__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

.kontakt__intro .section__title { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }

.kontakt__points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kontakt__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 15px;
    color: var(--ink-2);
}

.kontakt__points li span { color: var(--terracotta); font-weight: 700; }

.kontakt__points a { color: var(--ink); border-bottom: 1px solid var(--line-2); }
.kontakt__points a:hover { color: var(--terracotta); border-color: var(--terracotta); }

.kontakt__grid .form { max-width: 100%; }

.form__opt { color: var(--ink-3); font-weight: 400; }

.form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form__status {
    font-size: 14px;
    font-weight: 500;
    min-height: 1.2em;
    margin-top: 0.25rem;
}

.form__status.is-error { color: var(--terracotta-2); }
.form__status.is-success { color: #2C7A46; }

/* ────────────  Footer brand column + made line  ──────────── */

.footer__grid { grid-template-columns: 1.5fr repeat(4, 1fr); }

.footer__tag {
    margin-top: 1.25rem;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.footer__made { color: rgba(255, 255, 255, 0.4); }

/* ────────────  Sticky Mobile CTA  ──────────── */

.mobilecta { display: none; }

/* ────────────  Legal pages (Impressum / Datenschutz / AGB)  ──────────── */

.legal { padding-top: 9rem; padding-bottom: var(--pad-y); background: var(--bg); }

.legal__inner { max-width: 760px; margin: 0 auto; }

.legal h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
}

.legal__updated { color: var(--ink-3); font-size: 14px; margin-bottom: 2.5rem; }

.legal h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin: 2.75rem 0 0.75rem;
}

.legal h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.75rem 0 0.5rem;
}

.legal p, .legal li { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.legal p { margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--terracotta); border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.legal a:hover { border-color: var(--terracotta); }

.legal .ph {
    background: var(--terracotta-3);
    color: var(--terracotta-2);
    padding: 0.05em 0.4em;
    border-radius: 4px;
    font-size: 0.95em;
    font-weight: 500;
}

.legal__note {
    background: var(--bg-3);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-size: 14.5px;
    color: var(--ink-2);
    margin-bottom: 2.5rem;
}

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 3rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
    padding-bottom: 2px;
}

.legal__back:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ════════════════════════════════════════════════
   MULTI-PAGE COMPONENTS
   ════════════════════════════════════════════════ */

/* ────────────  Nav: dropdown + active state  ──────────── */

.nav__links { gap: 1.5rem; }
.nav__link--active { color: var(--terracotta); }

.nav__item--drop { position: relative; }

.nav__drop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}
.nav__drop-toggle svg { transition: transform 0.25s var(--ease); }
.nav__item--drop:hover .nav__drop-toggle svg,
.nav__item--drop:focus-within .nav__drop-toggle svg { transform: rotate(180deg); }

.nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 320px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 55px -22px rgba(15, 15, 15, 0.22);
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
    z-index: 20;
}
.nav__item--drop:hover .nav__menu,
.nav__item--drop:focus-within .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav__menu::before {
    content: '';
    position: absolute;
    top: -18px; left: -12px; right: -12px; height: 20px;
}
.nav__menu a {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius);
    transition: background 0.2s var(--ease);
}
.nav__menu a:hover { background: var(--bg-2); }
.nav__menu-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--terracotta);
    margin-top: 2px;
    min-width: 18px;
}
.nav__menu-txt { display: flex; flex-direction: column; }
.nav__menu-t { display: block; font-weight: 600; font-size: 14px; color: var(--ink); line-height: 1.3; }
.nav__menu-d { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 2px; line-height: 1.4; }

/* ────────────  Sub-page header  ──────────── */

.pagehead {
    padding: 10rem 0 3.5rem;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}
.pagehead__inner { max-width: 820px; }
.pagehead__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 1.25rem 0 0;
}
.pagehead__lede {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink-2);
    margin-top: 1.5rem;
    max-width: 640px;
}

/* ────────────  Before / After slider  ──────────── */

.ba { position: relative; --pos: 50%; }

.ba__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 40px 80px -34px rgba(15, 15, 15, 0.34);
    aspect-ratio: 16 / 10;
    background: var(--bg-3);
    touch-action: none;
    user-select: none;
}

.ba__side {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.ba__side--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); z-index: 2; }
.ba__side--after  { z-index: 1; }

.ba__handle {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--pos);
    width: 2px;
    background: #FFFFFF;
    transform: translateX(-1px);
    z-index: 3;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}
.ba__grip {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 8px 22px -4px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    gap: 2px;
}
.ba__grip svg { width: 20px; height: 20px; }

.ba__tag {
    position: absolute;
    bottom: 16px;
    top: auto;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 3;
}
.ba__tag--before { left: 16px; background: rgba(15, 15, 15, 0.72); color: #FFFFFF; }
.ba__tag--after  { right: 16px; background: var(--terracotta); color: #FFFFFF; }

.ba__range {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

/* ── Mini-site: AFTER (premium SpotOn look) ── */
.mini { position: absolute; inset: 0; font-family: var(--font-body); }

.mini--after { background: #FFFFFF; display: flex; flex-direction: column; }

.mini__nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: clamp(0.5rem, 2.1%, 1rem) clamp(0.9rem, 3.5%, 1.6rem);
    border-bottom: 1px solid #EEEBE3;
    background: #FFFFFF;
    flex-shrink: 0;
}
.mini__logo {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-size: clamp(0.8rem, 2.4%, 1.15rem);
}
.mini__links { display: flex; gap: clamp(0.6rem, 2.5%, 1.4rem); }
.mini__links span { color: var(--ink-2); font-size: clamp(0.55rem, 1.5%, 0.8rem); font-weight: 500; }

.mini__hero {
    position: relative; flex: 1; min-height: 0;
    background-size: cover; background-position: center;
    display: flex; align-items: flex-end;
}
.mini__hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,0.12) 0%, rgba(15,15,15,0.66) 100%);
}
.mini__hero-inner { position: relative; z-index: 2; padding: clamp(0.9rem, 4%, 2.1rem); }
.mini__kicker {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.5rem, 1.4%, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}
.mini__h {
    font-family: var(--font-display);
    font-weight: 700;
    color: #FFFFFF;
    font-size: clamp(1.1rem, 5.4%, 2.6rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
    max-width: 16ch;
}
.mini__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: clamp(0.5rem, 2.6%, 1.1rem);
    padding: clamp(0.4rem, 1.5%, 0.7rem) clamp(0.8rem, 2.8%, 1.3rem);
    background: var(--terracotta);
    color: #FFFFFF;
    border-radius: 999px;
    font-size: clamp(0.55rem, 1.5%, 0.82rem);
    font-weight: 600;
}

.mini__strip {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr;
    gap: clamp(0.6rem, 2.4%, 1.4rem);
    padding: clamp(0.7rem, 3%, 1.35rem) clamp(0.9rem, 3.5%, 1.6rem);
    background: #FFFFFF;
    border-top: 1px solid #EEEBE3;
    flex-shrink: 0;
}
.mini__cell-t {
    display: block;
    font-size: clamp(0.5rem, 1.4%, 0.7rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.mini__cell-d { font-size: clamp(0.55rem, 1.55%, 0.78rem); color: var(--ink-2); line-height: 1.4; }
.mini__row {
    display: flex; justify-content: space-between; gap: 0.5rem;
    font-size: clamp(0.5rem, 1.45%, 0.74rem); color: var(--ink-2);
    border-bottom: 1px dashed #E6E2D8; padding: 2px 0;
}
.mini__row span:last-child { color: var(--terracotta); font-weight: 600; }

/* ── Mini-site: BEFORE (dated 2009 look) ── */
.mini--before {
    background: #E9E9E9;
    font-family: 'Times New Roman', Times, serif;
    color: #101010;
    padding: 3% 4%;
    overflow: hidden;
}
.mini--before .old-top {
    background: linear-gradient(#123a8f, #0c2a6b);
    color: #FFFFFF;
    text-align: center;
    padding: 3% 2%;
    border: 2px outset #7fa0d8;
}
.mini--before .old-title {
    font-size: clamp(1rem, 4.5%, 2rem);
    font-weight: 700;
    text-shadow: 1px 1px 0 #000;
}
.mini--before .old-sub { font-size: clamp(0.55rem, 1.6%, 0.85rem); font-style: italic; }
.mini--before .old-nav {
    background: #c9c9c9;
    border: 1px solid #999;
    padding: 1.5% 2%;
    margin-top: 2%;
    font-size: clamp(0.5rem, 1.5%, 0.8rem);
    color: #00119e;
    text-decoration: underline;
    display: flex;
    gap: 6%;
    flex-wrap: wrap;
}
.mini--before .old-body {
    margin-top: 3%;
    font-size: clamp(0.55rem, 1.6%, 0.85rem);
    line-height: 1.4;
}
.mini--before .old-body h4 { color: #b40000; font-size: clamp(0.7rem, 2.4%, 1.1rem); margin-bottom: 1%; }
.mini--before .old-counter {
    margin-top: 3%;
    background: #000;
    color: #16d500;
    font-family: 'Courier New', monospace;
    display: inline-block;
    padding: 0.4% 1.5%;
    font-size: clamp(0.5rem, 1.4%, 0.75rem);
    border: 1px solid #16d500;
}
.mini--before .old-blink { color: #b40000; font-weight: 700; }
.mini--before .old-cols { display: flex; gap: 4%; margin-top: 2.5%; }
.mini--before .old-box {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #b8b8b8;
    padding: 2% 2.5%;
}
.mini--before .old-box h5 {
    color: #00119e; text-decoration: underline;
    font-size: clamp(0.55rem, 1.6%, 0.85rem); margin-bottom: 3%;
}
.mini--before .old-box p, .mini--before .old-box span {
    font-size: clamp(0.5rem, 1.5%, 0.78rem); line-height: 1.45; display: block;
}
.mini--before .old-guest { font-style: italic; color: #333; }
.mini--before .old-construct {
    margin-top: 2.5%; text-align: center;
    color: #b40000; font-weight: 700;
    font-size: clamp(0.55rem, 1.6%, 0.9rem);
    text-transform: uppercase; letter-spacing: 0.03em;
}

/* Caption row under the slider */
.ba__caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    font-size: 14px;
    color: var(--ink-3);
}
.ba__caption strong { color: var(--ink); font-weight: 600; }

/* ────────────  Feature modules (Funktionen)  ──────────── */

.fmods { display: flex; flex-direction: column; }

.fmod {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    border-top: 1px solid var(--line);
}
.fmod:first-child { border-top: 0; }
.fmod:nth-child(even) .fmod__media { order: -1; }

.fmod__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--terracotta);
    letter-spacing: 0.02em;
}
.fmod__scene {
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0.85rem 0 1.5rem;
    max-width: 46ch;
    padding-left: 1rem;
    border-left: 2px solid var(--line-2);
}
.fmod__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.fmod__text { color: var(--ink-2); font-size: 16px; line-height: 1.7; max-width: 48ch; }
.fmod__text + .fmod__text { margin-top: 1rem; }

/* ────────────  Preview snippet cards (.snap)  ──────────── */

.snap {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -32px rgba(15, 15, 15, 0.28);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.snap:hover { transform: translateY(-6px); box-shadow: 0 45px 85px -35px rgba(15, 15, 15, 0.34); }

.snap__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    background: #F6F5F0;
    border-bottom: 1px solid var(--line);
}
.snap__dot { width: 9px; height: 9px; border-radius: 50%; background: #D8D2C0; }
.snap__dot:nth-child(1) { background: #E8917A; }
.snap__dot:nth-child(2) { background: #E8C77A; }
.snap__dot:nth-child(3) { background: #A0B884; }
.snap__url {
    margin: 0 auto;
    font-size: 11px;
    color: var(--ink-3);
    background: #FFFFFF;
    padding: 3px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
}
.snap__body { padding: 1.25rem 1.25rem 1.5rem; }
.snap__photo {
    height: 150px;
    background-size: cover;
    background-position: center;
}
.snap__photo--tall { height: 190px; }

.snap__eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
}
.snap__h {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin: 0.4rem 0 0.9rem;
}

/* booking widget */
.snap__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-2);
}
.snap__pill {
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 600;
    color: var(--ink);
    font-size: 12.5px;
}
.snap__cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding: 0.7rem;
    background: var(--terracotta);
    color: #FFFFFF;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
}

/* gallery grid */
.snap__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.snap__grid > span {
    aspect-ratio: 1;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-3);
}

/* reviews */
.snap__stars { color: #E5A21A; font-size: 15px; letter-spacing: 2px; }
.snap__review { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.snap__review p { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-top: 4px; }
.snap__review small { font-size: 11px; color: var(--ink-3); }

/* menu list */
.snap__menu-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px dashed var(--line-2);
    font-size: 13px;
}
.snap__menu-row span:last-child { color: var(--terracotta); font-weight: 600; }

/* seo / google result */
.snap__seo { }
.snap__seo-result { padding: 0.6rem 0; }
.snap__seo-url { font-size: 11px; color: #3a7a3a; }
.snap__seo-title { font-size: 14px; color: #1a4fc4; font-weight: 600; margin: 2px 0; }
.snap__seo-desc { font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }
.snap__seo-result--top {
    background: var(--terracotta-3);
    border-radius: var(--radius);
    padding: 0.7rem;
    margin: 0 -0.3rem;
}
.snap__rank {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 6px;
}

/* hosting status */
.snap__status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink);
}
.snap__status:last-child { border-bottom: 0; }
.snap__dot-ok {
    width: 9px; height: 9px; border-radius: 50%;
    background: #2FA84F;
    box-shadow: 0 0 0 3px rgba(47, 168, 79, 0.16);
    flex-shrink: 0;
}
.snap__status small { margin-left: auto; color: var(--ink-3); font-size: 11px; }

/* Home: slider spacing + snaps section */
.hero .ba { margin: 2.75rem 0 0.5rem; width: 100%; }

.snaps { background: var(--bg-2); }
.snaps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
}
.snaps__cta { display: flex; justify-content: center; margin-top: 3rem; }

/* ────────────  Package cards (no price)  ──────────── */

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.plan {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--ink); }
.plan--featured { background: var(--ink); color: #FFFFFF; border-color: var(--ink); }
.plan__badge {
    align-self: flex-start;
    background: var(--terracotta);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.plan__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.025em;
}
.plan__for { font-size: 14px; color: var(--ink-3); margin-top: 0.3rem; }
.plan--featured .plan__for { color: rgba(255, 255, 255, 0.6); }
.plan__line {
    height: 1px;
    background: var(--line);
    margin: 1.5rem 0;
}
.plan--featured .plan__line { background: rgba(255, 255, 255, 0.14); }
.plan__list { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 1.75rem; }
.plan__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.5;
}
.plan--featured .plan__list li { color: rgba(255, 255, 255, 0.85); }
.plan__list li::before {
    content: '✓';
    color: var(--terracotta);
    font-weight: 700;
    flex-shrink: 0;
}
.plan__price-note {
    font-size: 13px;
    color: var(--ink-3);
    margin-bottom: 1.25rem;
    font-style: italic;
}
.plan--featured .plan__price-note { color: rgba(255, 255, 255, 0.6); }
.plan--featured .btn--outline { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.4); }
.plan--featured .btn--outline:hover { background: #FFFFFF; color: var(--ink); border-color: #FFFFFF; }

/* Two-model explainer (Abo vs Einmalkauf) */
.models { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.model {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--bg-2);
}
.model__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}
.model__h { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.model__d { color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* ════════════════════════════════════════════════
   ITERATION 2: topbar, hero aside, footer, quiz, checklist
   ════════════════════════════════════════════════ */

/* ────────────  Announcement top bar  ──────────── */

.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 42px;
    z-index: 101;
    background: var(--ink);
    color: #FFFFFF;
}
.topbar__inner {
    height: 42px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    font-size: 13.5px;
}
.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-weight: 500;
}
.topbar__link b { color: var(--terracotta); font-weight: 700; }
.topbar__link .topbar__go { border-bottom: 1px solid rgba(255,255,255,0.45); padding-bottom: 1px; }
.topbar__link:hover .topbar__go { border-color: #FFFFFF; }
.topbar__x {
    position: absolute;
    right: var(--pad-x);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 18px;
    line-height: 1;
    padding: 4px;
}
.topbar__x:hover { color: #FFFFFF; }
.has-topbar .nav { top: 42px; }

/* ────────────  Hero two-column top + aside cards  ──────────── */

.hero__top {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    width: 100%;
}
.hero__lead { min-width: 0; }
.hero__aside { display: flex; flex-direction: column; gap: 1rem; }

.herocard {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-2);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.herocard:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: 0 20px 40px -24px rgba(15,15,15,0.25);
}
.herocard__icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--terracotta-3);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.herocard__icon svg { width: 22px; height: 22px; }
.herocard__badge {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
}
.herocard__t {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin: 2px 0 3px;
}
.herocard__d { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.herocard__arrow { margin-left: auto; align-self: center; color: var(--ink-3); transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.herocard:hover .herocard__arrow { color: var(--terracotta); transform: translateX(3px); }

/* ────────────  Footer redesign (rich, watermark)  ──────────── */

.footer { position: relative; overflow: hidden; padding-bottom: 2rem; }

.footer__top {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 3.5rem;
    padding-bottom: 2rem;
}
.footer__statement {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #FFFFFF;
}
.footer__statement span { color: rgba(255,255,255,0.4); }
.footer__company {
    margin-top: 1.75rem;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}
.footer__contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.footer__contact a { color: rgba(255,255,255,0.85); font-size: 15px; transition: color 0.2s var(--ease); }
.footer__contact a:hover { color: var(--terracotta); }

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(5rem, 20vw, 17rem);
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.045);
    user-select: none;
    pointer-events: none;
    margin: 1rem 0 0;
    white-space: nowrap;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.75rem;
    margin-top: 0.5rem;
}

/* ────────────  Quiz (Bedarfscheck)  ──────────── */

.quiz { max-width: 720px; margin: 0 auto; }
.quiz__progress {
    height: 6px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}
.quiz__bar { height: 100%; width: 20%; background: var(--terracotta); border-radius: 999px; transition: width 0.4s var(--ease); }
.quiz__count { font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; margin-bottom: 2rem; }

.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: faqOpen 0.35s var(--ease); }
.quiz__q {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.quiz__hint { color: var(--ink-3); font-size: 14px; margin-bottom: 1.5rem; }
.quiz__options { display: grid; gap: 0.75rem; }
.quiz__opt {
    text-align: left;
    padding: 1.05rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.quiz__opt:hover { border-color: var(--ink); }
.quiz__opt.is-selected { border-color: var(--terracotta); background: var(--terracotta-3); }
.quiz__opt-mark {
    width: 20px; height: 20px;
    border-radius: 6px;
    border: 1.5px solid var(--line-2);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
}
.quiz__opt.is-selected .quiz__opt-mark { background: var(--terracotta); border-color: var(--terracotta); }
.quiz__opt--radio .quiz__opt-mark { border-radius: 50%; }

.quiz__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.quiz__back { font-size: 14px; font-weight: 500; color: var(--ink-2); cursor: pointer; }
.quiz__back:hover { color: var(--terracotta); }
.quiz__back[hidden] { visibility: hidden; }

.quiz__result { display: none; }
.quiz__result.is-active { display: block; animation: faqOpen 0.4s var(--ease); }
.quiz__result-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3.25rem);
}
.quiz__result-badge {
    display: inline-block;
    background: var(--terracotta);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.quiz__result-h {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.quiz__result-p { color: var(--ink-2); font-size: 16px; line-height: 1.65; margin-bottom: 1.5rem; }
.quiz__result-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.5rem 0 2rem; }
.quiz__result-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 15px; color: var(--ink); }
.quiz__result-list li::before { content: '✓'; color: var(--terracotta); font-weight: 700; }
.quiz__result-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ────────────  Demo checklist  ──────────── */

.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
    background: var(--bg);
}
.check:hover { border-color: var(--ink); }
.check input { accent-color: var(--terracotta); width: 17px; height: 17px; flex-shrink: 0; }
.check:has(input:checked) { border-color: var(--terracotta); background: var(--terracotta-3); }

.radios { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 14.5px;
    background: var(--bg);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.radio input { accent-color: var(--terracotta); }
.radio:has(input:checked) { border-color: var(--terracotta); background: var(--terracotta-3); }

.form__hint { font-size: 13px; color: var(--ink-3); margin-top: -0.25rem; }
.form__prefill {
    background: var(--terracotta-3);
    border: 1px solid var(--terracotta);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    font-size: 14px;
    color: var(--terracotta-2);
    margin-bottom: 1.5rem;
    display: none;
}
.form__prefill.is-active { display: block; }

.form__prefill-edit {
    margin-left: 0.5rem;
    font: inherit;
    font-weight: 600;
    color: var(--terracotta-2);
    text-decoration: underline;
    cursor: pointer;
}

/* ────────────  Founders (Über uns)  ──────────── */

.founders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.founder {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.founder:hover { transform: translateY(-4px); border-color: var(--ink); }
.founder__photo {
    width: 92px; height: 92px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--line);
    position: relative;
}
.founder__photo::after {
    content: 'Foto folgt';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); text-align: center;
}
.founder__photo--c { background: linear-gradient(135deg, #2C2A26, #555350); }
.founder__photo--l { background: linear-gradient(135deg, var(--terracotta), var(--cafe-accent)); }
.founder__role {
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--terracotta);
}
.founder__name {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.6rem; letter-spacing: -0.025em;
    margin: 0.25rem 0 0.75rem;
}
.founder__bio { color: var(--ink-2); font-size: 15px; line-height: 1.65; margin-bottom: 1rem; }
.founder__does { display: flex; flex-direction: column; gap: 0.4rem; }
.founder__does li { display: flex; gap: 0.5rem; font-size: 14px; color: var(--ink-2); }
.founder__does li::before { content: '→'; color: var(--terracotta); font-weight: 700; }

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */

@media (max-width: 1080px) {
    .mockups { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .mockup__viewport { height: 420px; }
    .m-screen { height: 420px; }

    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .service { min-height: 250px; }

    .feature__grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .pillars__grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .about__box { grid-template-columns: 1fr; gap: 2.5rem; }
    .about__team { flex-direction: row; }
    .about__person { flex: 1; }

    .steps { grid-template-columns: repeat(2, 1fr); }

    .pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .price--featured { transform: none; }
    .price--featured:hover { transform: translateY(-6px); }

    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .nav__links {
        position: fixed;
        top: 0; right: 0;
        width: min(86vw, 360px);
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--line);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        font-size: 1.5rem;
    }
    .nav__links.is-open { transform: translateX(0); }
    .nav__links a { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
    .nav__sep { display: none; }
    .nav__cta { font-size: 1rem; margin-top: 1rem; margin-left: 0; }
    .nav__burger { display: flex; }
    .nav__burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
    .nav__burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

    .hero { min-height: auto; padding: 8rem 0 4rem; }

    .services__grid { grid-template-columns: 1fr; }
    .branchen__split { grid-template-columns: 1fr; gap: 2rem; }
    .about__team { flex-direction: column; }
    .form__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 520px) {
    .steps { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .closing__box { padding: 2.5rem 1.5rem; text-align: left; }
    .closing__title, .closing__lede { margin-left: 0; margin-right: 0; }
    .about__stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ─────────────────────────────────────────────
   Responsive — new sections (appended last for correct precedence)
   ───────────────────────────────────────────── */

@media (max-width: 1080px) {
    .problem__grid { grid-template-columns: repeat(2, 1fr); }
    .kontakt__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .fmod { grid-template-columns: 1fr; gap: 2rem; }
    .fmod:nth-child(even) .fmod__media { order: 0; }
    .fmod__media { max-width: 520px; }
    .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .models { grid-template-columns: 1fr; }
    .snaps__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .hero__top { grid-template-columns: 1fr; gap: 2.25rem; }
    .footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .footer__cols { grid-template-columns: repeat(2, 1fr); }
    .checks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobilecta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        z-index: 90;
        padding: 1rem 1.5rem;
        background: var(--ink);
        color: #FFFFFF;
        border-radius: 999px;
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 12px 30px -8px rgba(15, 15, 15, 0.4);
    }
    body { padding-bottom: 5.5rem; }
    .hero .hero__cue { display: none; }

    /* Dropdown becomes inline inside the mobile drawer */
    .nav__menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 0;
        padding: 0.4rem 0 0.6rem 0.75rem;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
    .nav__menu a { padding: 0.5rem 0; }
    .nav__menu-d { display: none; }
    .nav__item--drop .nav__drop-toggle svg { display: none; }
    .pagehead { padding: 8rem 0 2.5rem; }
    .plans { grid-template-columns: 1fr; }
    .founders__grid { grid-template-columns: 1fr; }
    .founder { flex-direction: column; gap: 1rem; }
}

@media (max-width: 520px) {
    .problem__grid { grid-template-columns: 1fr; }
    .bridge__text { font-size: 1.35rem; }
}
