@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/poppins-400.woff2") format("woff2");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("fonts/poppins-500.woff2") format("woff2");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("fonts/poppins-600.woff2") format("woff2");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/poppins-700.woff2") format("woff2");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("fonts/poppins-800.woff2") format("woff2");
}

:root {
    --brand: #6528f7;
    --brand-dark: #5511f8;
    --near-black: #0d0614;
    --ink: #0f172a;
    --muted: #454f5e;
    --white: #fff;
    --surface-soft: #f2f0fe;
    --surface-accent: #d8d8f5;
    --line: rgba(15, 23, 42, .12);
    --line-soft: rgba(255, 255, 255, .14);
    --shadow: 0 24px 60px rgba(13, 6, 20, .18);
    --radius: 16px;
    --radius-sm: 10px;
    --shell: min(1180px, calc(100% - 40px));
    --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
    margin: 0;
    overflow-x: clip;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 {
    margin: 0;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.12;
    color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.2rem; }
p { margin: 0; }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(64px, 8vw, 112px); }
.skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 100;
    padding: 10px 14px; border-radius: var(--radius-sm); background: var(--brand); color: var(--white);
    transform: translateY(-150%); font-weight: 700; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    color: var(--brand); font-size: .76rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 2px; border-radius: 2px; background: var(--brand); content: ""; }
.button {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px;
    padding: 0 26px; border: 1px solid var(--brand); border-radius: 999px;
    background: var(--brand); color: var(--white); font-weight: 700; text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    cursor: pointer;
}
.button:hover, .button:focus-visible { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(101, 40, 247, .28); outline: 0; }
.button-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .45); }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255, 255, 255, .12); border-color: var(--white); color: var(--white); box-shadow: none; }
.button-outline { background: transparent; color: var(--brand); }
.button-outline:hover, .button-outline:focus-visible { background: var(--brand); color: var(--white); }
.button-small { min-height: 40px; padding-inline: 18px; font-size: .85rem; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 50;
    display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 24px;
    padding: 10px max(20px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(13, 6, 20, .88); color: var(--white); backdrop-filter: blur(14px);
    transition: background .25s ease, min-height .25s ease;
}
.site-header.is-scrolled { min-height: 74px; background: rgba(13, 6, 20, .98); }
.site-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.site-brand-mark { display: block; height: 34px; width: auto; flex: 0 0 auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { display: inline-flex; min-height: 44px; align-items: center; padding: 9px 12px; color: rgba(255, 255, 255, .78); font-size: .92rem; font-weight: 600; text-decoration: none; border-radius: var(--radius-sm); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); outline: 0; }
.site-nav .nav-cta { margin-left: 10px; padding: 11px 20px; background: var(--brand); color: var(--white); border-radius: 999px; font-weight: 700; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--white); background: var(--brand-dark); }
.nav-toggle { display: none; position: relative; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, .28); border-radius: var(--radius-sm); background: transparent; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    position: absolute; left: 13px; right: 13px; top: 23px; height: 2px; border-radius: 2px; background: var(--white); content: "";
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { top: -7px; left: 0; right: 0; }
.nav-toggle span::after { top: 7px; left: 0; right: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero (Home) */
.hero {
    position: relative; overflow: hidden;
    padding-block: clamp(140px, 18vw, 200px) clamp(64px, 8vw, 100px);
    background:
        radial-gradient(1100px 620px at 82% -10%, rgba(101, 40, 247, .55), transparent 60%),
        linear-gradient(180deg, var(--near-black), #150a24 70%);
    color: var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.hero .eyebrow { color: var(--surface-accent); }
.hero .eyebrow::before { background: var(--surface-accent); }
.hero h1 { color: var(--white); max-width: 13ch; }
.hero-lead { max-width: 480px; margin-top: 22px; color: rgba(255, 255, 255, .74); font-size: clamp(1rem, 1.3vw, 1.14rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; margin: 40px 0 0; padding: 0; list-style: none; }
.hero-chips li {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .82); font-size: .82rem; font-weight: 600;
}
.hero-chips li::before { color: var(--surface-accent); content: "✓"; font-weight: 800; }
.hero-visual { position: relative; }
.hero-visual::before {
    position: absolute; z-index: 0; inset: 8% -12% auto auto; width: 68%; aspect-ratio: 1;
    border-radius: 50%; background: radial-gradient(circle, rgba(101, 40, 247, .45), transparent 70%);
    content: ""; filter: blur(6px);
}
.hero-visual img { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45)); }

/* Feature strip */
.feature-strip { background: var(--surface-soft); }
.feature-strip .section-shell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--surface-accent); border-radius: var(--radius); overflow: hidden; margin-block: -34px; box-shadow: var(--shadow); position: relative; z-index: 3; }
.feature-strip div { display: grid; gap: 4px; place-content: center; padding: 28px 20px; background: var(--white); text-align: center; }
.feature-strip strong { font-size: 1.05rem; }
.feature-strip span { color: var(--muted); font-size: .84rem; }

/* Services */
.services { background: var(--white); }
.services.section-alt { background: var(--surface-soft); }
.section-intro { display: grid; grid-template-columns: 1.1fr .8fr; gap: 48px; align-items: end; margin-bottom: 48px; }
.section-intro > p { max-width: 560px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
    position: relative; display: flex; flex-direction: column; padding: 30px 26px; height: 100%;
    background: var(--surface-soft); border: 1px solid var(--surface-accent); border-radius: var(--radius);
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.service-card:hover { background: var(--near-black); color: var(--white); transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover p, .service-card:hover .service-sub li { color: rgba(255, 255, 255, .68); }
.service-card:hover .service-icon { background: rgba(255, 255, 255, .1); color: var(--surface-accent); }
.service-icon { display: grid; width: 56px; height: 56px; place-items: center; margin-bottom: 22px; border-radius: var(--radius-sm); background: var(--white); color: var(--brand); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card > p { color: var(--muted); font-size: .92rem; }
.service-sub { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.service-sub li { padding-left: 20px; position: relative; color: var(--muted); font-size: .86rem; }
.service-sub li::before { position: absolute; left: 0; top: 2px; color: var(--brand); content: "→"; }
.service-card:hover .service-sub li::before { color: var(--surface-accent); }
.service-detail { margin-top: 16px !important; padding-top: 16px; border-top: 1px solid var(--surface-accent); }
.service-card:hover .service-detail { border-top-color: rgba(255, 255, 255, .18); }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--brand); font-size: .85rem; font-weight: 700; text-decoration: none; }
.service-card:hover a { color: var(--surface-accent); }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-grid article { padding: 24px 20px; border: 1px solid var(--line); border-radius: var(--radius); }
.benefit-grid span { display: inline-grid; width: 34px; height: 34px; place-items: center; margin-bottom: 14px; border-radius: 50%; background: var(--surface-soft); color: var(--brand); font-weight: 800; }
.benefit-grid h3 { font-size: 1rem; margin-bottom: 6px; }
.benefit-grid p { color: var(--muted); font-size: .86rem; }

.faq-list { display: grid; gap: 18px; max-width: 820px; }
.faq-list article { padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-soft); }
.faq-list h3 { font-size: 1.05rem; margin-bottom: 10px; }
.faq-list p { color: var(--muted); font-size: .92rem; }

/* About */
.about-hero { position: relative; overflow: hidden; padding-block: clamp(140px, 16vw, 176px) 72px; background: linear-gradient(180deg, var(--near-black), #150a24); color: var(--white); }
.about-hero-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about-hero .eyebrow { color: var(--surface-accent); }
.about-hero .eyebrow::before { background: var(--surface-accent); }
.about-hero h1 { color: var(--white); }
.about-hero-lead { max-width: 560px; margin-top: 20px; color: rgba(255, 255, 255, .74); font-size: 1.05rem; }
.about-portrait { position: relative; width: min(320px, 100%); margin-inline: auto; }
.about-portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-portrait::after {
    position: absolute; z-index: -1; inset: 14px -14px auto auto; width: 100%; aspect-ratio: 1;
    border-radius: var(--radius); border: 2px solid var(--brand); content: "";
}

.craft { background: var(--white); }
.craft-grid { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.craft-visual img { width: 100%; height: clamp(320px, 34vw, 420px); object-fit: cover; border-radius: var(--radius); }
.craft-copy .lead { max-width: 600px; margin-top: 18px; color: var(--muted); font-size: 1.02rem; }
.benefit-list { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.benefit-list article { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.benefit-list article > span { color: var(--brand); font-weight: 800; }
.benefit-list h3 { font-size: .98rem; }
.benefit-list p { margin-top: 5px; color: var(--muted); font-size: .86rem; }
.text-link { display: inline-flex; gap: 12px; margin-top: 26px; color: var(--brand); font-weight: 700; text-decoration: none; }

/* Page hero (services / referenzen / contact / legal generic) */
.page-hero { position: relative; padding-block: clamp(140px, 16vw, 176px) 64px; background: linear-gradient(180deg, var(--near-black), #150a24); color: var(--white); }
.page-hero .section-shell { max-width: 760px; }
.page-hero .eyebrow { color: var(--surface-accent); }
.page-hero .eyebrow::before { background: var(--surface-accent); }
.page-hero h1 { color: var(--white); }
.page-hero p:not(.eyebrow) { max-width: 640px; margin-top: 18px; color: rgba(255, 255, 255, .72); }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.legal-hero { padding: clamp(140px, 16vw, 168px) 0 56px; background: linear-gradient(180deg, var(--near-black), #150a24); color: var(--white); }
.legal-hero .section-shell { max-width: 760px; }
.legal-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.6vw, 2.9rem); }
.legal-hero p { max-width: 640px; margin-top: 16px; color: rgba(255, 255, 255, .68); }
.legal-content { display: grid; gap: 16px; padding-block: 56px 96px; }
.legal-content article { padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-soft); }
.legal-content h2 { margin-bottom: 10px; font-size: 1.3rem; }
.legal-content p { color: var(--muted); white-space: pre-line; }
.placeholder-alert { padding: 16px 18px; border-left: 4px solid var(--brand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--surface-soft); color: #3d1f7a; font-size: .92rem; }

.cta-band { text-align: center; max-width: 640px; margin-inline: auto; }
.cta-band .eyebrow { justify-content: center; }
.cta-band p { margin-top: 16px; color: var(--muted); }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Referenzen */
.reference-list { display: grid; gap: 56px; }
.reference-card { display: grid; gap: 24px; }
.reference-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.reference-head h2 { font-size: 1.5rem; }
.reference-head span { color: var(--muted); font-size: .85rem; font-weight: 600; }
.reference-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.reference-gallery img { width: 100%; height: 210px; object-fit: cover; object-position: top; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.reference-gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; }
.reference-note { padding: 14px 16px; border-radius: var(--radius-sm); background: var(--surface-soft); color: var(--muted); font-size: .85rem; }

/* Contact */
.contact { background: var(--surface-soft); }
.contact-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; margin-top: 18px; color: var(--muted); }
.contact-options { display: grid; margin-top: 30px; border-top: 1px solid var(--surface-accent); }
.contact-options a { display: grid; gap: 2px; padding: 16px 0; border-bottom: 1px solid var(--surface-accent); text-decoration: none; }
.contact-options a:hover strong { color: var(--brand); }
.contact-options span { color: var(--brand); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-options strong { font-size: 1rem; overflow-wrap: anywhere; }
.contact-options small { color: var(--muted); }
.contact-form { display: grid; gap: 16px; padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { display: grid; gap: 7px; color: var(--ink); font-size: .78rem; font-weight: 700; }
input, textarea, select {
    width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--surface-accent); border-radius: var(--radius-sm);
    background: var(--surface-soft); color: var(--ink);
}
input:focus, textarea:focus, select:focus { border-color: var(--brand); outline: 3px solid rgba(101, 40, 247, .18); }
textarea { min-height: 130px; resize: vertical; }
.check-row { display: grid; grid-template-columns: 19px 1fr; align-items: start; gap: 10px; font-weight: 500; line-height: 1.5; }
.check-row input { width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--brand); }
.check-row a { font-weight: 700; color: var(--brand); }
.form-note { color: var(--muted); }
.honeypot { position: absolute; left: -10000px; }

.site-flash { position: fixed; z-index: 60; top: 96px; right: 20px; max-width: 440px; padding: 14px 18px; border-radius: var(--radius-sm); background: var(--brand); color: var(--white); box-shadow: var(--shadow); font-weight: 700; }
.site-flash-error { background: #f4d9d1; color: #7a2b16; }

.site-footer {
    display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 28px; align-items: start;
    padding: 48px max(20px, calc((100vw - 1180px) / 2)); background: var(--near-black); color: var(--white);
}
.footer-brand { display: flex; gap: 13px; align-items: center; }
.footer-brand .site-brand-mark { height: 30px; }
.footer-brand p { margin-top: 2px; }
.footer-brand p, .site-footer address, .footer-meta span, .footer-note { color: rgba(255, 255, 255, .55); font-size: .8rem; font-style: normal; }
.site-footer address a, .footer-meta a { color: var(--white); text-decoration: none; }
.site-footer address a:hover, .footer-meta a:hover { color: var(--surface-accent); }
.footer-meta { display: grid; gap: 6px; text-align: right; }
.footer-note { grid-column: 1/-1; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .1); }

.call-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 40; display: flex; align-items: center; gap: 10px;
    height: 54px; padding: 0 20px 0 16px; border-radius: 999px;
    background: var(--brand); color: var(--white); box-shadow: 0 14px 32px rgba(13, 6, 20, .35);
    font-size: .85rem; font-weight: 700; text-decoration: none;
}
.call-float:hover, .call-float:focus-visible { background: var(--brand-dark); outline: 0; }
.call-float svg { width: 20px; height: 20px; }

.cookie-banner {
    position: fixed; inset: auto 16px 16px; z-index: 70; display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
    max-width: 420px; padding: 12px 14px; border-radius: var(--radius-sm); background: var(--near-black); color: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow); font-size: .78rem; line-height: 1.4;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { flex: 1 1 220px; margin: 0; }
.cookie-banner .button-small { min-height: 34px; padding-inline: 14px; }
.cookie-banner a { color: var(--surface-accent); text-decoration: underline; }

@media (max-width: 1050px) {
    .site-nav a:not(.nav-cta) { padding-inline: 8px; font-size: .84rem; }
    .service-grid, .benefit-grid, .feature-strip .section-shell { grid-template-columns: repeat(2, 1fr); }
    .hero-grid, .about-hero-grid, .craft-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 420px; margin-inline: auto; }
    .about-portrait { order: -1; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 960px) {
    :root { --shell: min(100% - 32px, 680px); }
    html { scroll-padding-top: 90px; }
    .site-header { min-height: 78px; }
    .site-header.is-scrolled { min-height: 78px; }
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed; inset: 78px 0 0; display: none; align-content: start; overflow-y: auto;
        padding: 24px max(20px, calc((100vw - 680px) / 2)) calc(40px + env(safe-area-inset-bottom));
        background: rgba(13, 6, 20, .99); overscroll-behavior: contain;
    }
    .site-nav.is-open { display: grid; }
    .site-nav a, .site-nav a:not(.nav-cta) { padding: 15px 8px; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 1rem; border-radius: 0; }
    .site-nav .nav-cta { margin: 18px 0 0; justify-content: center; }
    .section-intro { grid-template-columns: 1fr; gap: 24px; }
    .feature-strip .section-shell { margin-block: 0; box-shadow: none; border-radius: var(--radius); }
    .site-footer { grid-template-columns: 1fr; }
    .footer-meta { text-align: left; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 28px); }
    html { scroll-padding-top: 80px; }
    body { font-size: 15px; }
    .section-pad { padding-block: clamp(52px, 14vw, 72px); }
    .site-header, .site-header.is-scrolled { min-height: 70px; gap: 12px; padding-inline: max(14px, env(safe-area-inset-left)) max(14px, env(safe-area-inset-right)); }
    .nav-toggle { width: 48px; height: 48px; flex: 0 0 auto; }
    .site-nav { inset: 70px 0 0; }
    .hero { padding-top: 112px; }
    .hero-actions, .page-hero-actions { display: grid; gap: 10px; }
    .hero .button, .page-hero-actions .button { width: 100%; }
    .service-grid, .benefit-grid, .form-row, .feature-strip .section-shell { grid-template-columns: 1fr; }
    .reference-gallery { grid-template-columns: 1fr; }
    .contact-form { padding: 20px 16px; }
    .contact-form .button { width: 100%; }
    .site-footer { gap: 22px; padding: 36px 14px calc(96px + env(safe-area-inset-bottom)); }
    .footer-brand { display: grid; justify-items: start; }
    .call-float { right: max(14px, env(safe-area-inset-right)); bottom: calc(14px + env(safe-area-inset-bottom)); height: 50px; padding: 0 16px 0 14px; }
    .call-float-label { display: none; }
    .site-flash { top: 80px; right: 14px; left: 14px; max-width: none; }
    .cookie-banner { inset: auto 10px 10px; }
}

@media (hover: none) {
    .service-card:hover { background: var(--surface-soft); color: var(--ink); transform: none; box-shadow: none; }
    .service-card:hover p, .service-card:hover .service-sub li { color: var(--muted); }
    .service-card:hover a { color: var(--brand); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}

.system-page { display: grid; place-items: center; min-height: 100vh; padding: 24px; background: var(--surface-soft); }
.system-message { max-width: 780px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.system-message h1 { font-size: 1.6rem; }
.system-message p { margin-top: 12px; color: var(--muted); }
