/* ════════════════════════════════════════════════════════════
   PIXELSCHNITZEL — PUBLIC WEBSITE STYLES
   ════════════════════════════════════════════════════════════ */

:root {
    --ps-green: #95C11F;
    --ps-green-dark: #7AA316;
    --ps-green-soft: #E7F2C8;
    --ps-ink: #1A1C18;
    --ps-ink-2: #3D3D3D;
    --ps-mute: #7A7D74;
    --ps-line: #E5E6E2;
    --ps-paper: #F5F5F1;
    --ps-cream: #FAFAF6;
    --ps-rust:  #B5503C;

    --pad-x: clamp(20px, 4.4vw, 64px);
    --h1-size: clamp(44px, 6.4vw, 96px);
    --h2-size: clamp(32px, 4.4vw, 64px);
    --lead-size: clamp(17px, 1.4vw, 22px);
    --body-size: clamp(15px, 1vw, 17px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--ps-cream); }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: transparent;
    color: var(--ps-ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, .btn { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.serif { font-family: 'Instrument Serif', 'Times New Roman', serif; }

/* ─── LOGO ─── */N
.logo { display: block; width: auto; border: none; outline: none; border:0 !important;
    background: transparent !important;background-color:transparent; }
.logo.nav    { height: 48px; }
.logo.footer { height: 56px; }

.section   { padding-inline: var(--pad-x); }
.container { max-width: 1600px; margin-inline: auto; }

/* ════════ NAV ════════ */
.nav {
    position: sticky;
    top: 0;
    background: var(--ps-cream);
    z-index: 10;
    padding-top: 10px;
}
.nav-inner {
    height: 84px;
    padding-inline: var(--pad-x);
    max-width: 1600px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border ersetzt durch inset shadow — so kann das Logo-Element ihn lokal abdecken */
    box-shadow: inset 0 -1px 0 var(--ps-line);
}
/* Logo-Wrapper: streckt sich auf volle Nav-Höhe und überdeckt den inset-Border */
.nav-logo-wrap {
    align-self: stretch;
    display: flex;
    align-items: center;
    background: var(--ps-cream);
    padding-right: 16px;
    position: relative;
    z-index: 1;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 36px);
    font-size: 15px;
    color: var(--ps-ink-2);
    font-weight: 500;
}
.nav-links a {
    position: relative;
    padding-block: 6px;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--ps-ink); }
.nav-links a.active {
    color: var(--ps-ink);
    font-weight: 600;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--ps-green-dark);
    border-radius: 1px;
}

/* ─── Nav Dropdown ─── */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-item > a::after {
    content: '⌄';
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    transform: translateY(-2px);
    opacity: 0.7;
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    padding: 12px;
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(26, 28, 24, 0.10);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
    z-index: 20;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -20px; left: 0; right: 0;
    height: 20px;
}
.nav-dropdown a {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ps-ink-2);
    border-radius: 10px;
    transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:hover {
    background: var(--ps-paper);
    color: var(--ps-ink);
}
.nav-dropdown a .sub {
    display: block;
    font-size: 12px;
    color: var(--ps-mute);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0;
}
.nav-cta {
    background: var(--ps-ink);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* ─── Nav Actions (right side) ─── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Unified icon-only button — Phone / WhatsApp / LinkedIn */
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--ps-line);
    background: transparent;
    color: var(--ps-ink-2);
    flex-shrink: 0;
    transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}
.nav-icon:hover { transform: translateY(-1px); }
.nav-icon-phone:hover    { color: var(--ps-green-dark); border-color: var(--ps-green-dark); background: var(--ps-green-soft); }
.nav-icon-whatsapp:hover { color: #128C7E;            border-color: #128C7E;            background: rgba(37,211,102,0.12); }
.nav-icon-linkedin:hover { color: #0A66C2;            border-color: #0A66C2;            background: #E8F0FE; }
.nav-icon svg { display: block; flex-shrink: 0; }

/* ─── Mobile Nav Burger ─── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1.5px solid var(--ps-line);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.nav-burger span {
    display: block;
    height: 2px;
    background: var(--ps-ink);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ─── Mobile Nav Panel ─── */
.nav-mobile-panel {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid var(--ps-line);
    padding: 16px var(--pad-x) 24px;
    gap: 4px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
}
.nav-mobile-panel.is-open { display: flex; }
.nav-mobile-panel > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ps-ink-2);
    padding: 10px 0;
    border-bottom: 1px solid var(--ps-line);
    text-decoration: none;
}
.nav-mobile-group {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--ps-line);
    padding-bottom: 4px;
}
.nav-mobile-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ps-mute);
    padding: 12px 0 4px;
}
.nav-mobile-group a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ps-ink-2);
    padding: 8px 0 8px 12px;
    text-decoration: none;
    border-left: 2px solid var(--ps-line);
    margin-left: 2px;
}
.nav-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
}
.nav-mobile-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.nav-mobile-icons .nav-icon {
    width: 48px;
    height: 48px;
}
.nav-mobile-phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--ps-ink);
    text-decoration: none;
    text-align: center;
}

/* ════════ HERO ════════ */
.hero {
    padding: clamp(48px, 6vw, 88px) var(--pad-x) clamp(56px, 6vw, 88px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1600px;
    margin-inline: auto;
}
.eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ps-mute);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--ps-mute);
}
.hero h1 {
    font-size: var(--h1-size);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin: 0;
    text-wrap: balance;
}
.hero h1 em {
    color: var(--ps-green-dark);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
}
.hero-lead {
    font-size: var(--lead-size);
    line-height: 1.5;
    color: var(--ps-ink-2);
    max-width: 540px;
    margin-top: 28px;
    text-wrap: pretty;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* ════════ BUTTONS ════════ */
.btn {
    border-radius: 999px;
    padding: 16px 26px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--ps-ink); color: white; }
.btn-ghost   { background: transparent; color: var(--ps-ink); border: 1px solid var(--ps-ink); }
.btn-green   { background: var(--ps-green); color: var(--ps-ink); }

/* ════════ PAGE ANIMATIONS ════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0);    }
}

/* Hero text — staggered on page load */
.hero > div > * {
    animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero > div > *:nth-child(1) { animation-delay: 0.05s; }
.hero > div > *:nth-child(2) { animation-delay: 0.22s; }
.hero > div > *:nth-child(3) { animation-delay: 0.40s; }
.hero > div > *:nth-child(4) { animation-delay: 0.55s; }
.hero > div > *:nth-child(5) { animation-delay: 0.70s; }
.hero-image {
    animation: fadeInRight 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

/* Scroll reveal utility */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.10s; }
[data-reveal-delay="2"] { transition-delay: 0.22s; }
[data-reveal-delay="3"] { transition-delay: 0.34s; }

@media (prefers-reduced-motion: reduce) {
    .hero > div > *, .hero-image, [data-reveal] {
        animation: none; transition: none; opacity: 1; transform: none;
    }
}

/* ════════ TRUST ROW ════════ */
.trust-row {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ps-mute);
    font-size: 13px;
    letter-spacing: 0.04em;
    flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars span {
    width: 36px; height: 36px;
    border-radius: 999px;
    border: 2px solid var(--ps-cream);
    margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }

/* ════════ HERO IMAGE ════════ */
.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: min(72vh, 640px);
    border-radius: 24px;
    overflow: hidden;
    background: #1F2118;
    justify-self: end;
    width: clamp(0px, 100%, 560px);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    position: absolute;
    left: 20px; right: 20px; bottom: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    gap: 12px;
}
.hero-badge .label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ps-mute);
    font-weight: 600;
}
.hero-badge .title { font-size: 16px; font-weight: 600; margin-top: 4px; }
.hero-badge .icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 999px;
    background: var(--ps-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ════════ TRUST STRIP — scrolling marquee ════════ */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    border-top: 1px solid var(--ps-line);
    border-bottom: 1px solid var(--ps-line);
    padding: 26px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
    will-change: transform;
}
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-item {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--ps-ink-2);
}
.marquee-item::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--ps-green);
    flex-shrink: 0;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ════════ GENERIC SECTION ════════ */
.section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    font-weight: 700;
    margin-bottom: 20px;
}
h2 {
    font-size: var(--h2-size);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin: 0;
    text-wrap: balance;
}
h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.section-meta {
    font-size: 13px;
    color: var(--ps-mute);
    letter-spacing: 0.04em;
}
.section-lead {
    font-size: var(--lead-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    max-width: 720px;
    margin-top: 24px;
    text-wrap: pretty;
}

/* ════════ SERVICES GRID — Bento Motion ════════ */
.services { margin-top: clamp(80px, 10vw, 140px); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.service {
    padding: 40px 36px 44px;
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.2s;
    will-change: transform;
    transform-style: preserve-3d;
    --mx: 50%;
    --my: 50%;
}
.service::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle 220px at var(--mx) var(--my),
        rgba(149, 193, 31, 0.13),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
}
.service:hover {
    box-shadow: 0 20px 48px rgba(26, 28, 24, 0.10);
    border-color: rgba(149, 193, 31, 0.35);
}
.service:hover::after { opacity: 1; }
.service-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    color: var(--ps-green-dark);
}
.service-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-ink-2);
    margin-top: 24px;
    font-weight: 600;
}
.service-title {
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.15;
    font-weight: 600;
    margin: 12px 0 0;
    letter-spacing: -0.015em;
}
.service-body {
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    margin-top: 16px;
}
.service-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid var(--ps-ink);
    padding-bottom: 4px;
}

/* ════════ KI / DARK BLOCK ════════ */
.ki { margin-top: clamp(80px, 10vw, 160px); }
.ki-inner {
    background: var(--ps-ink);
    color: white;
    border-radius: 32px;
    padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
    position: relative;
    overflow: hidden;
}
.ki-glow {
    position: absolute;
    right: -120px; top: -120px;
    width: 420px; height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(149, 193, 31, 0.35), transparent 65%);
    pointer-events: none;
}
.ki-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    position: relative;
}
.ki .section-eyebrow { color: var(--ps-green); }
.ki h2 { color: white; }
.ki h2 em { color: var(--ps-green); }
.ki-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 24px;
    max-width: 480px;
}
.ki-actions { margin-top: 32px; }
.ki-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.ki-stat {
    padding: clamp(20px, 2.5vw, 36px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.ki-stat-k {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    color: var(--ps-green);
}
.ki-stat-v {
    font-size: clamp(13px, 1vw, 14px);
    color: rgba(255, 255, 255, 0.65);
    margin-top: 14px;
    line-height: 1.4;
}

/* ════════ REFERENZEN ════════ */
.refs { margin-top: clamp(80px, 10vw, 160px); }
.refs .section-head { margin-bottom: 48px; }
.ref-link {
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--ps-ink);
    padding-bottom: 4px;
}
.refs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ref-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--ps-line);
}
.ref-image {
    aspect-ratio: 4 / 3;
    position: relative;
    background-image: repeating-linear-gradient(135deg, #E2E4DD 0 8px, #ECEDE7 8px 16px);
}
.ref-image img { width: 100%; height: 100%; object-fit: cover; }
.ref-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ps-ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.ref-body { padding: 24px; }
.ref-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ps-mute);
    letter-spacing: 0.06em;
}
.ref-name {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 600;
    margin: 10px 0 0;
    letter-spacing: -0.01em;
}
.ref-cta {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ps-green-dark);
}

/* ════════ PREISE (Fragment) ════════ */
.preise { margin-top: clamp(80px, 10vw, 140px); }
.preise-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(24px, 3vw, 64px);
    margin-bottom: clamp(36px, 4vw, 56px);
    align-items: end;
}
.preise-head h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 400; color: var(--ps-green-dark);
}
.preise-lead {
    font-size: var(--lead-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    margin: 0;
    text-wrap: pretty;
}
.preise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.preise-card {
    background: #FFFFFF;
    border: 1px solid var(--ps-line);
    border-radius: 22px;
    padding: 32px 30px 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.preise-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(26, 28, 24, 0.08);
}
.preise-card-accent {
    background: linear-gradient(160deg, #FFFFFF 0%, rgba(231, 242, 200, 0.45) 100%);
    border-color: rgba(149, 193, 31, 0.5);
    box-shadow: 0 12px 32px rgba(149, 193, 31, 0.12);
}
.preise-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.preise-tag::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--ps-green);
    border-radius: 50%;
}
.preise-k {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.2vw, 48px);
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--ps-ink);
    margin-top: 4px;
}
.preise-k-soft {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(26px, 2.6vw, 38px);
    color: var(--ps-green-dark);
    letter-spacing: -0.015em;
}
.preise-body {
    margin: 4px 0 0;
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
}
.preise-foot {
    margin-top: clamp(36px, 5vw, 64px);
    padding: clamp(28px, 4vw, 48px);
    background: var(--ps-paper);
    border-radius: 24px;
}
.preise-foot-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
}
.preise-foot-cell { display: flex; flex-direction: column; gap: 10px; }
.preise-foot-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    font-weight: 700;
}
.preise-foot-cell p {
    margin: 0;
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
}
.preise-foot-cell strong { color: var(--ps-ink); font-weight: 600; }
.preise-cta {
    margin-top: clamp(28px, 3.5vw, 40px);
    padding-top: 24px;
    border-top: 1px solid var(--ps-line);
}
@media (max-width: 1024px) {
    .preise-head { grid-template-columns: 1fr; }
    .preise-grid { grid-template-columns: 1fr; }
    .preise-foot-points { grid-template-columns: 1fr; }
}

/* ════════ CTA BLOCK ════════ */
.cta { margin-top: clamp(80px, 10vw, 160px); }
.cta-inner {
    background: var(--ps-green);
    border-radius: 32px;
    padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 72px);
    position: relative;
    overflow: hidden;
}
.cta-watermark {
    position: absolute;
    right: clamp(20px, 4vw, 60px); top: 32px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(120px, 18vw, 240px);
    color: rgba(26, 28, 24, 0.08);
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
}
.cta-inner .content { position: relative; max-width: 720px; }
.cta .section-eyebrow { color: var(--ps-ink); }
.cta h2 { color: var(--ps-ink); }
.cta-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
    color: rgba(26, 28, 24, 0.75);
    margin-top: 24px;
    max-width: 540px;
}

/* ════════ METHOD STEPS (für Pillar-Pages) ════════ */
.method { margin-top: clamp(80px, 10vw, 160px); }
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.method-step {
    padding: 32px 28px 36px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--ps-line);
}
.method-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--ps-green-dark);
    font-weight: 600;
}
.method-step-title {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 600;
    margin: 16px 0 12px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.method-step-body {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.55;
}

/* ════════ FEATURE LIST ════════ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    gap: 14px;
}
.feature-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.55;
}
.feature-list li::before {
    content: '✓';
    color: var(--ps-green-dark);
    font-weight: 700;
    line-height: 1.55;
}

/* ════════ FAQ ════════ */
.faq { margin-top: clamp(80px, 10vw, 160px); }
.faq-list {
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--ps-line);
}
.faq-item {
    border-bottom: 1px solid var(--ps-line);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--ps-green-dark);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 820px;
}

/* ════════ TWO-COL TEXT BLOCK ════════ */
.two-col {
    margin-top: clamp(80px, 10vw, 160px);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.two-col-side .section-eyebrow { margin-bottom: 12px; }
.two-col-side h2 { font-size: clamp(28px, 3.4vw, 44px); }
.two-col-main p {
    font-size: var(--lead-size);
    line-height: 1.6;
    color: var(--ps-ink-2);
    margin: 0 0 24px;
}
.two-col-main p:last-child { margin-bottom: 0; }

/* ════════ FOOTER ════════ */
footer {
    margin-top: clamp(80px, 8vw, 120px);
    padding: 56px var(--pad-x) 48px;
    border-top: 1px solid var(--ps-line);
    max-width: 1600px;
    margin-inline: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-address {
    font-size: 14px;
    color: var(--ps-ink-2);
    line-height: 1.6;
    margin-top: 20px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.footer-col ul { padding: 0; margin: 0; list-style: none; }
.footer-col li { font-size: 14px; color: var(--ps-ink-2); margin-bottom: 8px; }
.footer-col li a:hover { color: var(--ps-green-dark); }
.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--ps-line);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ps-mute);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }

/* ════════ BREADCRUMB ════════ */
.crumb {
    max-width: 1600px;
    margin-inline: auto;
    padding: 20px var(--pad-x) 0;
    font-size: 13px;
    color: var(--ps-mute);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.crumb a:hover { color: var(--ps-ink); }
.crumb .sep { color: var(--ps-line); }
.crumb .current { color: var(--ps-ink); font-weight: 600; }

/* ════════ HERO ASIDE (für Pillar-Pages) ════════ */
.hero-aside {
    display: grid;
    gap: 20px;
    justify-self: end;
    width: clamp(0px, 100%, 560px);
}
.hero-aside-image {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    background: #1F2118;
}
.hero-aside-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-aside-badge {
    position: absolute;
    left: 16px; bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ps-ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
}
.hero-aside-body {
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    padding: 24px 26px;
}
.hero-aside-body h3 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ps-mute);
    font-weight: 600;
}
.hero-aside-body .quote {
    margin-top: 14px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.3;
    color: var(--ps-ink);
}
.hero-aside-body .by {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-aside-body .by-avatar {
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--ps-ink);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
}
.hero-aside-body .by-name { font-size: 14px; font-weight: 600; }
.hero-aside-body .by-role { font-size: 12px; color: var(--ps-mute); margin-top: 2px; }

/* ════════ MYTHEN-GRID ════════ */
.mythen { margin-top: clamp(80px, 10vw, 140px); }
.myth-intro {
    font-size: var(--lead-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    max-width: 760px;
    margin: 0 0 48px;
    text-wrap: pretty;
}
.myth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.myth {
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.myth-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-rust);
}
.myth-quote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.35;
    color: var(--ps-ink-2);
    border-left: 3px solid var(--ps-rust);
    padding-left: 16px;
}
.myth-real { margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--ps-line); }
.myth-real-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    margin-bottom: 10px;
}
.myth-real-text {
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink);
}

/* ════════ IMAGE BREAK ════════ */
.image-break {
    margin-top: clamp(80px, 10vw, 140px);
    padding-inline: var(--pad-x);
    max-width: 1600px;
    margin-inline: auto;
}
.image-break-inner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    background: var(--ps-ink);
}
.image-break-inner img { width: 100%; height: 100%; object-fit: cover; }
.image-break-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26, 28, 24, 0.85) 0%, rgba(26, 28, 24, 0.4) 50%, transparent 100%);
}
.image-break-caption {
    position: absolute;
    left: clamp(24px, 4vw, 56px);
    right: clamp(24px, 4vw, 56px);
    bottom: clamp(28px, 4vw, 48px);
    color: white;
}
.image-break-eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ps-green);
    font-weight: 700;
    margin-bottom: 16px;
}
.image-break-title {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0;
    max-width: 900px;
}
.image-break-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ps-green);
}

/* ════════ WARUM-GRID ════════ */
.warum { margin-top: clamp(80px, 10vw, 140px); }
.warum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.warum-card {
    background: var(--ps-paper);
    border-radius: 20px;
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.warum-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 40px;
    line-height: 1;
    color: var(--ps-green-dark);
}
.warum-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-ink-2);
    margin-top: 18px;
}
.warum-title {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 8px 0 12px;
}
.warum-body {
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    margin: 0;
}

/* ════════ DELIVERABLES ════════ */
.deliver { margin-top: clamp(80px, 10vw, 140px); }
.deliver-inner {
    background: var(--ps-ink);
    color: white;
    border-radius: 32px;
    padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
    position: relative;
    overflow: hidden;
}
.deliver-inner .section-eyebrow { color: var(--ps-green); }
.deliver-inner h2 { color: white; }
.deliver-inner h2 em { color: var(--ps-green); }
.deliver-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 48px;
}
.deliver-card {
    padding: 28px 24px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.deliver-icon {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 36px;
    line-height: 1;
    color: var(--ps-green);
}
.deliver-title {
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 600;
    margin: 20px 0 10px;
    color: white;
    letter-spacing: -0.01em;
}
.deliver-body {
    font-size: var(--body-size);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ════════ WANN-LIST ════════ */
.wann { margin-top: clamp(80px, 10vw, 140px); }
.wann-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.wann-list { display: grid; gap: 1px; background: var(--ps-line); border-top: 1px solid var(--ps-line); border-bottom: 1px solid var(--ps-line); }
.wann-item {
    background: var(--ps-cream);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: center;
}
.wann-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--ps-green-dark);
    line-height: 1;
}
.wann-text {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.45;
    color: var(--ps-ink);
    font-weight: 500;
}

/* ════════ PROZESS-CARDS ════════ */
.prozess { margin-top: clamp(80px, 10vw, 140px); }
.prozess-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.prozess-grid--three { grid-template-columns: repeat(3, 1fr); }
.prozess-card {
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prozess-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
}
.prozess-title {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 8px 0 0;
    line-height: 1.15;
}
.prozess-meta {
    font-size: 13px;
    color: var(--ps-mute);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
}
.prozess-body {
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    margin: 8px 0 0;
}

/* ════════ FAQ GRID (Variant) ════════ */
.faq-grid {
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--ps-line);
}
.faq-grid .q {
    border-bottom: 1px solid var(--ps-line);
}
.faq-grid .q summary {
    cursor: pointer;
    list-style: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.faq-grid .q summary::-webkit-details-marker { display: none; }
.faq-grid .q summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--ps-green-dark);
    flex-shrink: 0;
}
.faq-grid .q[open] summary::after { content: '–'; }
.faq-grid .q .a {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 820px;
}

/* ════════ WAKEUP (Dark Hook Section) ════════ */
.wakeup { margin-top: clamp(80px, 10vw, 140px); }
.wakeup-inner {
    background: var(--ps-ink);
    color: white;
    border-radius: 32px;
    padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 72px);
    position: relative;
    overflow: hidden;
}
.wakeup-inner .section-eyebrow { color: var(--ps-rust); }
.wakeup-inner h2 { color: white; max-width: 900px; }
.wakeup-inner h2 em { color: var(--ps-rust); }
.wakeup-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.wakeup-item {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    gap: 18px;
}
.wakeup-bullet {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 999px;
    background: var(--ps-rust);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.wakeup-text {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}
.wakeup-text strong {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: var(--ps-green);
    font-weight: 600;
}

/* ════════ VS-TABELLE (Cloud vs. Lokal) ════════ */
.vs { margin-top: clamp(80px, 10vw, 140px); }
.vs-table {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 24px;
    overflow: hidden;
}
.vs-cell {
    padding: 22px 24px;
    border-bottom: 1px solid var(--ps-line);
    border-right: 1px solid var(--ps-line);
    display: flex;
    align-items: center;
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.45;
}
.vs-cell:nth-child(3n) { border-right: none; }
.vs-table > .vs-cell:nth-last-child(-n+3) { border-bottom: none; }
.vs-cell.vs-head {
    background: var(--ps-paper);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--ps-ink);
}
.vs-cell.vs-head .vs-head-sub {
    display: block;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
    color: var(--ps-mute);
}
.vs-cell.vs-label {
    font-weight: 600;
    color: var(--ps-ink);
}
.vs-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.vs-pill.vs-bad  { background: rgba(181, 80, 60, 0.12); color: var(--ps-rust); }
.vs-pill.vs-good { background: var(--ps-green-soft); color: var(--ps-green-dark); }
.vs-pill.vs-mid  { background: var(--ps-paper); color: var(--ps-ink-2); }

/* ════════ USE-CASES (Branchen) ════════ */
.usecases { margin-top: clamp(80px, 10vw, 140px); }
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.usecase {
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.18s;
}
.usecase:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(26, 28, 24, 0.08);
}
.usecase-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--ps-green-soft);
    color: var(--ps-green-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}
.usecase-branch {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    margin-top: 6px;
}
.usecase-title {
    font-size: clamp(19px, 1.6vw, 22px);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0;
}
.usecase-body {
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    margin: 0;
}
.usecase-quote {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--ps-line);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--ps-ink);
    line-height: 1.4;
}

/* ════════ TECH-STACK ════════ */
.stack { margin-top: clamp(80px, 10vw, 140px); }
.stack-layers {
    display: grid;
    gap: 12px;
}
.stack-layer {
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    padding: 28px 32px;
    background: white;
    display: grid;
    grid-template-columns: 140px 1fr 1.4fr;
    gap: 32px;
    align-items: center;
}
.stack-layer-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    color: var(--ps-green-dark);
}
.stack-layer-title {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 6px;
    line-height: 1.2;
}
.stack-layer-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ps-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.stack-layer-body {
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
}
.stack-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.stack-chip {
    background: var(--ps-paper);
    color: var(--ps-ink);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ════════ TCO-RECHNUNG ════════ */
.tco { margin-top: clamp(80px, 10vw, 140px); }
.tco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.tco-card {
    padding: 36px 32px 40px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--ps-line);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tco-card.tco-bad {
    background: var(--ps-paper);
    border-color: var(--ps-line);
}
.tco-card.tco-good {
    background: var(--ps-ink);
    color: white;
    border-color: transparent;
}
.tco-card.tco-good .tco-body { color: rgba(255, 255, 255, 0.7); }
.tco-card.tco-good .tco-line { border-color: rgba(255, 255, 255, 0.12); }
.tco-card.tco-good .tco-row { color: rgba(255, 255, 255, 0.85); }
.tco-card.tco-good .tco-total-k { color: var(--ps-green); }
.tco-card.tco-good .tco-tag { color: var(--ps-green); }
.tco-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-rust);
}
.tco-title {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.15;
}
.tco-body {
    font-size: 14px;
    color: var(--ps-ink-2);
    line-height: 1.5;
    margin: 0;
}
.tco-lines {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}
.tco-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--ps-line);
    font-size: 14px;
}
.tco-line:last-child { border-bottom: none; padding-bottom: 0; }
.tco-row { color: var(--ps-ink); }
.tco-val { font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.tco-total {
    margin-top: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--ps-line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.tco-total-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'JetBrains Mono', monospace;
    color: var(--ps-mute);
    font-weight: 600;
}
.tco-total-k {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    color: var(--ps-ink);
}
.tco-disclaimer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--ps-mute);
    font-style: italic;
    text-align: center;
}

/* ════════ SETUP CHOICE (3 Karten) ════════ */
.setup-choice { margin-top: clamp(80px, 10vw, 140px); }
.setup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.setup-card {
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 24px;
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.setup-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(26, 28, 24, 0.06);
}
.setup-card.setup-card-highlight {
    background: var(--ps-ink);
    color: white;
    border-color: transparent;
}
.setup-card-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
}
.setup-card-highlight .setup-card-tag { color: var(--ps-green); }
.setup-card-title {
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 4px 0 0;
    line-height: 1.1;
}
.setup-card-lead {
    font-size: var(--body-size);
    line-height: 1.55;
    color: var(--ps-ink-2);
    margin: 0 0 8px;
}
.setup-card-highlight .setup-card-lead { color: rgba(255, 255, 255, 0.75); }
.setup-card-meta {
    display: grid;
    gap: 14px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--ps-line);
}
.setup-card-highlight .setup-card-meta { border-top-color: rgba(255, 255, 255, 0.12); }
.setup-card-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: baseline;
}
.setup-card-row span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ps-mute);
    font-weight: 600;
}
.setup-card-highlight .setup-card-row span { color: rgba(255, 255, 255, 0.55); }
.setup-card-row strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-ink);
    line-height: 1.45;
}
.setup-card-highlight .setup-card-row strong { color: white; }
.setup-footnote {
    margin-top: 32px;
    font-size: 14px;
    color: var(--ps-mute);
    line-height: 1.55;
    max-width: 880px;
    text-wrap: pretty;
}

/* ════════ MANIFEST ════════ */
.manifest { margin-top: clamp(80px, 10vw, 140px); }
.manifest-inner {
    padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
    background: var(--ps-paper);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}
.manifest-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.manifest-statement {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.3;
    color: var(--ps-ink);
    margin: 0;
    max-width: 760px;
}
.manifest-statement em { color: var(--ps-green-dark); }
.manifest-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}
.manifest-points li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
}
.manifest-points li::before {
    content: '→';
    color: var(--ps-green-dark);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}
.manifest-points strong {
    display: block;
    font-size: clamp(17px, 1.4vw, 19px);
    font-weight: 600;
    color: var(--ps-ink);
    margin-bottom: 4px;
}
.manifest-points span {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.5;
}

/* ════════ BIG STATS ════════ */
.bigstats { margin-top: clamp(80px, 10vw, 140px); }
.bigstats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-top: 1px solid var(--ps-ink);
}
.bigstat {
    padding: 36px 28px 40px 0;
    border-right: 1px solid var(--ps-line);
}
.bigstat:last-child { border-right: none; padding-right: 0; }
.bigstat-k {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(54px, 6vw, 88px);
    line-height: 0.95;
    color: var(--ps-green-dark);
    letter-spacing: -0.02em;
}
.bigstat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-mute);
    font-weight: 600;
    margin-top: 24px;
}
.bigstat-body {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.5;
    margin: 12px 0 0;
}

/* ════════ TIMELINE ════════ */
.timeline { margin-top: clamp(80px, 10vw, 140px); }
.timeline-list {
    position: relative;
    display: grid;
    gap: 32px;
}
.timeline-list::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--ps-line);
}
.timeline-item {
    display: grid;
    grid-template-columns: 56px 200px 1fr;
    gap: 24px;
    align-items: start;
    position: relative;
}
.timeline-dot {
    width: 32px; height: 32px;
    border-radius: 999px;
    background: var(--ps-green);
    border: 4px solid var(--ps-cream);
    box-shadow: 0 0 0 2px var(--ps-line);
    margin-left: 0;
    flex-shrink: 0;
    margin-top: 4px;
}
.timeline-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    font-weight: 600;
    padding-top: 8px;
}
.timeline-content h3 {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 10px;
    line-height: 1.2;
}
.timeline-content p {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
}

/* ════════ LOGO WALL ════════ */
.logowall { margin-top: clamp(60px, 8vw, 100px); }
.logowall-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--ps-line);
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    overflow: hidden;
}
.logowall-item {
    background: var(--ps-cream);
    aspect-ratio: 4 / 2;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(18px, 1.8vw, 26px);
    color: var(--ps-ink-2);
    text-align: center;
    padding: 12px;
    transition: background 0.18s, color 0.18s;
}
.logowall-item:hover { background: var(--ps-paper); color: var(--ps-ink); }

/* ════════ JOB CARDS ════════ */
.jobs { margin-top: clamp(80px, 10vw, 140px); }
.jobs-list {
    display: grid;
    gap: 12px;
}
.job {
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.job:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(26, 28, 24, 0.06);
}
.job-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: var(--ps-mute);
    margin-bottom: 8px;
}
.job-meta .dot { width: 4px; height: 4px; background: var(--ps-mute); border-radius: 999px; }
.job-title {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
    line-height: 1.2;
}
.job-body {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.55;
    margin: 0;
    max-width: 640px;
}
.job-cta {
    background: var(--ps-ink);
    color: white;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* ════════ VALUE CARDS ════════ */
.values { margin-top: clamp(80px, 10vw, 140px); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.value-card {
    background: var(--ps-paper);
    border-radius: 24px;
    padding: 36px 32px 40px;
    display: flex; flex-direction: column; gap: 12px;
    position: relative;
    overflow: hidden;
}
.value-card-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
}
.value-card-title {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 8px 0 6px;
    line-height: 1.15;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
}
.value-card-body {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.55;
    margin: 0;
}

/* ════════ CASE HERO ════════ */
.case-hero {
    margin-top: 24px;
    padding-inline: var(--pad-x);
    max-width: 1600px;
    margin-inline: auto;
}
.case-hero-image {
    aspect-ratio: 21 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: var(--ps-ink);
}
.case-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.case-meta-strip {
    margin-top: -1px;
    padding: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-bottom: 1px solid var(--ps-line);
    padding-bottom: 32px;
}
.case-meta-cell .case-meta-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-mute);
    font-weight: 600;
    margin-bottom: 8px;
}
.case-meta-cell .case-meta-val {
    font-size: clamp(17px, 1.4vw, 19px);
    font-weight: 600;
    color: var(--ps-ink);
    line-height: 1.3;
}

/* ════════ CASE STORY BLOCKS ════════ */
.case-story { margin-top: clamp(80px, 10vw, 140px); }
.case-story-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--ps-line);
}
.case-story-grid:last-child { border-bottom: none; }
.case-story-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    font-weight: 600;
    padding-top: 8px;
}
.case-story-body h3 {
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    line-height: 1.2;
}
.case-story-body p {
    font-size: var(--lead-size);
    line-height: 1.6;
    color: var(--ps-ink-2);
    margin: 0 0 18px;
}
.case-story-body p:last-child { margin-bottom: 0; }
.case-story-body ul {
    margin: 0; padding: 0; list-style: none;
    display: grid; gap: 12px;
}
.case-story-body ul li {
    padding-left: 24px;
    position: relative;
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.55;
}
.case-story-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ps-green-dark);
    font-weight: 700;
}

/* ════════ PULL QUOTE ════════ */
.pullquote {
    margin-top: clamp(60px, 8vw, 100px);
    padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 80px);
    background: var(--ps-green-soft);
    border-radius: 32px;
    text-align: center;
}
.pullquote-text {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    color: var(--ps-ink);
    max-width: 920px;
    margin: 0 auto;
    letter-spacing: -0.015em;
}
.pullquote-by {
    margin-top: 24px;
    font-size: 13px;
    color: var(--ps-ink-2);
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ════════ CONTACT-FORM ════════ */
.contact-grid {
    margin-top: clamp(40px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
}
.contact-info {
    display: grid;
    gap: 28px;
    align-content: start;
}
.contact-block-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-green-dark);
    margin-bottom: 8px;
}
.contact-block-val {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.contact-block-val a:hover { color: var(--ps-green-dark); }
.contact-block-sub {
    font-size: 14px;
    color: var(--ps-mute);
    margin-top: 6px;
    line-height: 1.5;
}
.form-card {
    background: white;
    border: 1px solid var(--ps-line);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 48px);
}
.form-row {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ps-mute);
    margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--ps-line);
    border-radius: 12px;
    background: var(--ps-cream);
    font-family: inherit;
    font-size: 15px;
    color: var(--ps-ink);
    transition: border-color 0.15s, background 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--ps-green-dark);
    background: white;
}
.form-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}
.form-disclaimer {
    margin-top: 8px;
    font-size: 12px;
    color: var(--ps-mute);
    line-height: 1.5;
}
.form-disclaimer a { text-decoration: underline; }

.form-notice {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}
.form-notice--success {
    background: var(--ps-green-soft);
    color: var(--ps-green-dark);
    border: 1px solid var(--ps-green);
}
.form-notice--error {
    background: #fef2f0;
    color: var(--ps-rust);
    border: 1px solid #e8bdb7;
}
.form-notice--error a { color: var(--ps-rust); }

.form-slots-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ps-mute);
    margin: 8px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--ps-line);
}
.form-optional {
    font-weight: 400;
    color: var(--ps-mute);
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

/* ════════ BOOK CARD ════════ */
.book-grid {
    margin-top: clamp(40px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 64px);
    align-items: start;
}
.book-stub {
    background: var(--ps-ink);
    color: white;
    border-radius: 24px;
    padding: clamp(40px, 5vw, 64px);
    aspect-ratio: 4 / 5;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
}
.book-stub-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ps-green);
    font-weight: 700;
}
.book-stub-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 18px 0 0;
}
.book-stub-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ps-green);
}
.book-stub-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.book-stub-meta .k {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--ps-green);
    line-height: 1;
}
.book-stub-meta .v {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
    line-height: 1.4;
}

/* ════════ LEGAL ════════ */
.legal { padding-top: 24px; }
.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) var(--pad-x);
}
.legal-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-top: 56px;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.legal-content h2:first-of-type { margin-top: 32px; }
.legal-content h3 {
    font-size: clamp(20px, 1.6vw, 22px);
    margin-top: 36px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.legal-content p, .legal-content li {
    font-size: var(--body-size);
    color: var(--ps-ink-2);
    line-height: 1.65;
    margin: 0 0 16px;
}
.legal-content ul { padding-left: 24px; }
.legal-content strong { color: var(--ps-ink); }
.legal-content a { color: var(--ps-green-dark); text-decoration: underline; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; align-items: start; }
    .hero-image { width: 100%; max-height: 60vh; justify-self: stretch; }
    .hero-aside { width: 100%; justify-self: stretch; }
    .ki-grid { grid-template-columns: 1fr; }
    .method-grid, .warum-grid, .deliver-grid, .prozess-grid, .prozess-grid--three { grid-template-columns: 1fr 1fr; }
    .two-col, .wann-grid, .tco-grid { grid-template-columns: 1fr; }
    .myth-grid, .usecases-grid, .wakeup-grid, .values-grid, .bigstats-grid, .setup-grid { grid-template-columns: 1fr 1fr; }
    .logowall-grid { grid-template-columns: repeat(3, 1fr); }
    .manifest-grid, .case-meta-strip, .case-story-grid, .contact-grid, .book-grid { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 40px 1fr; }
    .timeline-date { grid-column: 2; padding-top: 0; }
    .timeline-content { grid-column: 2; }
    .book-stub { aspect-ratio: auto; }
    .job { grid-template-columns: 1fr; gap: 16px; }
    .form-row.two { grid-template-columns: 1fr; }
    .stack-layer { grid-template-columns: 80px 1fr; }
    .stack-layer .stack-chips { grid-column: 2; }
    .vs-table { grid-template-columns: 1fr; }
    .vs-cell { border-right: none; }
    .vs-cell.vs-head:nth-child(1) { display: none; }
    .vs-cell.vs-label::before { content: '— '; color: var(--ps-mute); }
}
@media (max-width: 1180px) {
    .nav-icon { width: 38px; height: 38px; border-radius: 9px; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .nav-burger { display: flex; }
    .services-grid, .refs-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .marquee-wrapper { --marquee-speed: 20s; }
    .footer-grid { gap: 32px; }
}
@media (max-width: 640px) {
    .services-grid, .refs-grid, .footer-grid, .method-grid, .warum-grid, .deliver-grid, .prozess-grid, .prozess-grid--three, .myth-grid, .usecases-grid, .wakeup-grid, .values-grid, .bigstats-grid, .case-meta-strip, .setup-grid {
        grid-template-columns: 1fr;
    }
    .logowall-grid { grid-template-columns: repeat(2, 1fr); }
    .bigstat { border-right: none; border-bottom: 1px solid var(--ps-line); padding-bottom: 28px; }
    .stack-layer { grid-template-columns: 1fr; gap: 16px; }
    .marquee-item { justify-content: flex-start; }
    .hero-actions .btn, .ki-actions .btn { flex: 1; justify-content: center; }
    .ki-stats { grid-template-columns: 1fr; }
    .nav-cta { padding: 9px 16px; font-size: 13px; }
    .logo.nav { height: 32px; }
    .image-break-inner { aspect-ratio: 4 / 5; }
}

/* ════════ MOBILE POLISH ════════ */
@media (max-width: 640px) {
    /* Prevent iOS auto-zoom on focus by holding input font-size ≥ 16px */
    .form-field input,
    .form-field select,
    .form-field textarea { font-size: 16px; }

    /* Full-width CTAs in the home hero */
    .home-cta-row { width: 100%; }
    .home-cta-row .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }

    /* Generic btn touch padding on phones */
    .btn { padding: 14px 22px; }

    /* Hero card sits inside the visual on phones, no off-canvas overflow */
    .hero-card {
        right: 12px;
        bottom: -18px;
        width: clamp(220px, 78%, 320px);
        transform: rotate(-1deg);
        padding: 16px 18px;
    }
    .hero-card .v { font-size: 19px; }

    /* Stage padding tighter on small screens */
    .home-stage { padding-top: clamp(28px, 5vw, 56px); }

    /* Footer bottom row stacks neatly */
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-bottom-links { gap: 18px; }

    /* CTA watermark stops dominating tiny screens */
    .cta-watermark { font-size: clamp(96px, 28vw, 160px); top: 16px; }

    /* Trinity pillar visuals slim down */
    .pillar-visual { aspect-ratio: 16 / 9; }

    /* Manifest grid stack */
    .home-manifest-grid { grid-template-columns: 1fr; gap: 28px; }

    /* Founder card grows readable */
    .home-founder-mono-big { font-size: clamp(88px, 28vw, 132px); }
}

/* Burger active-state cross — set by JS via aria-expanded */
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Larger touch targets in the mobile nav panel */
@media (max-width: 900px) {
    .nav-mobile-panel > a {
        padding: 14px 4px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    .nav-mobile-group a {
        padding: 12px 0 12px 14px;
        font-size: 15px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-mobile-label { padding: 16px 0 6px; }
    .nav-mobile-footer .btn,
    .nav-mobile-footer .nav-mobile-phone {
        padding: 14px 22px;
        font-size: 16px;
        text-align: center;
    }
}

/* ── Hero word rotator ──────────────────────────────── */
.hero-rotate {
    display: inline-block;
    white-space: nowrap;
}
.hero-rotate > span {
    display: inline-block;
    will-change: transform, opacity;
}

