/* ==========================================================================
   FONTS (self-hosted, DSGVO-freundlich)
   ========================================================================== */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/poppins-900.ttf') format('truetype');
}

/* ==========================================================================
   1. PREMIUM DARK-SAND AVANT-GARDE PALETTE
   ========================================================================== */
:root {
    --bg-color: #D2C6B5;
    --bg-alt: #C3B49E;
    --white: #E4DAC9;
    --text-main: #241710;
    --text-muted: #4A3A30;
    --accent-fire: #7D4924;
    --sun-accent: #A6733E;
    --clay-light: #AD9C88;

    --shadow-soft: 0 20px 40px rgba(36, 23, 16, 0.08);
    --shadow-card: 0 10px 30px rgba(36, 23, 16, 0.05);
    --header-height: 5rem;
    --focus-ring: 0 0 0 3px var(--sun-accent);
    --stroke-display: var(--text-main);
    --hero-watermark-stroke: rgba(36, 23, 16, 0.09);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light dark;
    background-color: var(--bg-color);
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--text-main);
    color: var(--white);
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

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

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {
    body:not(.reduce-motion) *,
    body:not(.reduce-motion) *::before,
    body:not(.reduce-motion) *::after {
        cursor: none;
    }

    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 12px;
        height: 12px;
        background-color: var(--accent-fire);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 9999;
        transition: width 0.2s, height 0.2s, background-color 0.2s, border 0.2s;
    }

    .custom-cursor.hover {
        width: 26px;
        height: 26px;
        background-color: transparent;
        border: 2px solid var(--sun-accent);
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-cursor {
        display: none;
    }
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1.massive,
h1.section-title,
h2.section-title {
    font-family: 'Poppins', sans-serif;
    text-wrap: balance;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--stroke-display);
    paint-order: stroke fill;
}

h1.massive {
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

/* Hero-Titel: skaliert mit Viewport-Höhe & -Breite, bleibt auf einem Screen */
.hero-fs h1.massive {
    font-size: clamp(3.25rem, 12vmin, 8rem);
    line-height: 1.05;
    filter: drop-shadow(0 4px 24px rgba(36, 23, 16, 0.06));
}

h1.massive span {
    display: block;
}

h1.massive span.accent {
    color: var(--accent-fire);
    -webkit-text-stroke: 0;
}

h1.section-title,
h2.section-title {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

p.lead {
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.5;
    color: var(--text-muted);
}

.bg-blend {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-alt) 15%, var(--bg-alt) 85%, var(--bg-color) 100%);
    border: none;
}

.bg-alt {
    background-color: var(--bg-alt);
    border: none;
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */
.section-anchor {
    scroll-margin-top: var(--header-height);
}

.section-pad-top-lg {
    padding-top: 8rem;
}

#dienstleistungen.section-pad-top-lg {
    padding-top: 5rem;
    position: relative;
    z-index: 1;
}

.section-pad-y-lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.container-flush {
    padding-top: 0;
    padding-bottom: 0;
}

.page-hero-offset {
    padding-top: calc(var(--header-height) + 3rem + env(safe-area-inset-top, 0px));
}

/* Rechtsseiten: Titel näher am Fliesstext */
.legal-hero.container {
    padding-bottom: 0;
}

.legal-hero.page-intro {
    margin-bottom: 0.5rem;
    max-width: min(800px, 100%);
}

.legal-hero .section-title {
    margin-bottom: 0.75rem;
    line-height: 1.3;
    padding-top: 0.1em;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-hero .section-title .outline-text {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.legal-hero .lead {
    margin-bottom: 0;
}

.legal-content.container {
    padding-top: 0;
    margin-top: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* PrivacyBee Datenschutzerklärung: zentrierte Spalte */
.legal-content--privacybee {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.legal-content--privacybee privacybee-widget {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.legal-content--privacybee .prx_wrapper,
.legal-content--privacybee .prx_body {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.intro-compact {
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-grid .about-content {
    max-width: none;
    margin: 0;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.team-block {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.team-block--fire {
    border-left: 3px solid var(--accent-fire);
}

.team-block--sun {
    border-left: 3px solid var(--sun-accent);
}

.team-block p:first-child {
    margin-bottom: 0.5rem;
}

.about-footer-text {
    margin-top: 3rem;
}

.legal-content {
    max-width: 800px;
    padding-top: 0;
    padding-bottom: 6rem;
    font-size: 1.1rem;
    line-height: 1.8;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-content h2,
.legal-content h3 {
    color: var(--accent-fire);
    margin-bottom: 1rem;
    text-transform: none;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 2rem;
    color: var(--text-main);
}

.legal-content p.mb-sm {
    margin-bottom: 1rem;
}

.legal-content p.mb-md {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: var(--text-main);
}

.legal-content ul.mb-sm {
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.card-cta {
    margin-top: auto;
    align-self: flex-start;
}

.card-cta-row {
    margin-top: auto;
    align-self: flex-start;
}

.card-link-accent {
    color: var(--accent-fire);
    font-weight: 700;
}

.card-highlight {
    border: 2px dashed var(--accent-fire);
    background: transparent;
}

.card-highlight .card-category {
    color: var(--accent-fire);
}

.modal-cta {
    text-align: center;
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(210, 198, 181, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(173, 156, 136, 0.4);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.nav-brand-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.25rem;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li a {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover,
.nav-links li a.nav-active {
    color: var(--sun-accent);
}

.nav-links li a.nav-active {
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn-primary {
    background: var(--text-main);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
    border: none;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-fire);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: 2px solid var(--text-main);
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--text-main);
    color: var(--white);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
}

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero-fs {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100lvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 1rem) 2rem max(1.5rem, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 90% 70% at 15% 20%, rgba(166, 115, 62, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 88% 75%, rgba(125, 73, 36, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(195, 180, 158, 0.45) 0%, transparent 60%),
        linear-gradient(165deg, var(--bg-color) 0%, #c9bba8 42%, var(--bg-alt) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: multiply;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.hero-bg-orb--1 {
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    top: -8%;
    left: -6%;
    background: rgba(166, 115, 62, 0.45);
}

.hero-bg-orb--2 {
    width: min(38vw, 380px);
    height: min(38vw, 380px);
    bottom: -12%;
    right: -8%;
    background: rgba(125, 73, 36, 0.35);
}

.hero-bg-orb--3 {
    width: min(28vw, 280px);
    height: min(28vw, 280px);
    top: 38%;
    right: 12%;
    background: rgba(228, 218, 201, 0.7);
    opacity: 0.4;
    filter: blur(50px);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(var(--clay-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--clay-light) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 15%, transparent 75%);
}

.hero-bg-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22rem, 88vw, 56rem);
    font-weight: 900;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 2px var(--hero-watermark-stroke);
    letter-spacing: -0.05em;
    user-select: none;
    white-space: nowrap;
    opacity: 1;
}

.hero-bg-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(42vh, 380px);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(210, 198, 181, 0) 0%,
        rgba(210, 198, 181, 0.35) 35%,
        var(--bg-color) 78%,
        var(--bg-color) 100%
    );
}

.hero-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--sun-accent);
    margin-bottom: 1.25rem;
}

.hero-kicker {
    margin-top: 1.5rem;
    max-width: 28rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-muted);
}

.hero-content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-scroll {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2.25rem;
}

.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--accent-fire);
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.scroll-prompt:hover {
    color: var(--text-main);
    transform: translateY(3px);
    background: none;
    box-shadow: none;
}

.scroll-prompt-icon {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    animation: scroll-pulse 2.2s ease-in-out infinite;
}

.scroll-prompt-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 42%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -30%) rotate(45deg);
}

.scroll-prompt-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.65rem;
}

.scroll-prompt-hint {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.35;
    max-width: 16rem;
}

/* Desktop: gross & lesbar, Scroll-Hinweis proportional */
@media (min-width: 769px) {
    .hero-fs {
        padding: calc(var(--header-height) + 1.25rem) 2rem 2rem;
    }

    .hero-fs h1.massive {
        font-size: clamp(4.75rem, 12vmin, 8.25rem);
        line-height: 1.02;
    }

    .hero-kicker {
        font-size: 1.15rem;
        max-width: 32rem;
    }

    .hero-scroll {
        margin-top: clamp(1.75rem, 4vmin, 3rem);
    }

    .scroll-prompt-icon {
        width: 24px;
        height: 24px;
    }

    .scroll-prompt-label {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .scroll-prompt-hint {
        font-size: 0.78rem;
    }
}

/* Desktop mit wenig Höhe (Taskleiste, Browser-Leisten): gross, aber alles sichtbar */
@media (min-width: 769px) and (max-height: 860px) {
    .hero-fs h1.massive {
        font-size: clamp(3.5rem, 10vmin, 6.25rem);
        line-height: 1.08;
    }

    .hero-kicker {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .hero-eyebrow {
        margin-bottom: 0.75rem;
    }

    .hero-scroll {
        margin-top: 1.25rem;
    }

    .hero-bg-watermark {
        font-size: clamp(16rem, 95vw, 42rem);
    }

    .hero-bg-fade {
        height: min(38vh, 280px);
    }
}

/* Nur Mobile: kompakt bei wenig Höhe */
@media (max-width: 768px) and (max-height: 720px) {
    .hero-fs {
        padding-top: calc(var(--header-height) + 0.5rem);
        padding-bottom: 1rem;
    }

    .hero-fs h1.massive {
        font-size: clamp(1.85rem, 8.5vmin, 2.75rem);
        line-height: 1.15;
    }

    .hero-eyebrow {
        letter-spacing: 0.2em;
        margin-bottom: 0.75rem;
    }

    .hero-kicker {
        margin-top: 0.75rem;
        font-size: 0.9rem;
    }

    .hero-bg-watermark {
        font-size: clamp(14rem, 92vw, 22rem);
    }

    .hero-scroll {
        margin-top: 1rem;
    }

    .scroll-prompt {
        gap: 0.35rem;
    }

    .scroll-prompt-icon {
        width: 24px;
        height: 24px;
    }

    .scroll-prompt-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .scroll-prompt-hint {
        font-size: 0.78rem;
    }
}

@keyframes scroll-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-prompt-icon {
        animation: none;
    }

    .scroll-prompt:hover {
        transform: none;
    }

    .hero-bg-orb {
        filter: blur(40px);
    }

    .reveal,
    .reveal-fade {
        opacity: 1;
        transform: none;
    }

    .reveal.active,
    .reveal-fade.active {
        opacity: 1;
        transform: none;
    }

    .row-item,
    .brutalist-card,
    .btn-primary,
    .btn-secondary,
    .addon-label,
    .modal-overlay,
    .modal-content,
    .hamburger span {
        transition: none;
    }
}

/* ==========================================================================
   8. SECTIONS & CARDS
   ========================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.crazy-row-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
}

.row-item {
    border-top: 1px solid var(--clay-light);
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1.4fr 2fr 1fr;
    align-items: center;
    gap: 3rem;
    transition: background 0.4s ease, padding 0.4s ease;
}

.row-item:last-child {
    border-bottom: 1px solid var(--clay-light);
}

.row-item:hover {
    background-color: var(--white);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.row-item .row-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.row-item .price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-fire);
    display: block;
    margin-bottom: 1rem;
}

.row-item ul {
    list-style: none;
}

.row-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
}

.row-item ul li::before {
    content: "✦";
    color: var(--sun-accent);
    position: absolute;
    left: 0;
}

.crazy-row-layout .row-item:last-child {
    border-bottom: 1px solid var(--clay-light);
}

/* Hosting-Block (zwei Optionen) */
.hosting-block {
    border-top: 1px solid var(--clay-light);
    border-bottom: 1px solid var(--clay-light);
    padding: 3rem 1.5rem;
    margin-top: 0;
    transition: background 0.4s ease, padding 0.4s ease;
}

.hosting-block:hover {
    background-color: var(--white);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.hosting-block-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}

.hosting-block-header h3 {
    margin-bottom: 0.75rem;
}

.hosting-block-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.hosting-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
}

.hosting-option {
    background: var(--white);
    border: 1px solid var(--clay-light);
    padding: 2rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hosting-option:hover {
    border-color: var(--text-main);
    box-shadow: var(--shadow-card);
}

.hosting-option--recommended {
    border: 2px solid var(--accent-fire);
}

.hosting-badge {
    position: absolute;
    top: -0.65rem;
    right: 1.25rem;
    background: var(--accent-fire);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
}

.hosting-option-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    padding-right: 0.5rem;
}

.hosting-option-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-fire);
    margin-bottom: 1.25rem;
}

.hosting-option ul {
    list-style: none;
    flex-grow: 1;
}

.hosting-option ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hosting-option ul li::before {
    content: "✦";
    color: var(--sun-accent);
    position: absolute;
    left: 0;
}

.hosting-note {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--clay-light);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
}

.hosting-block-footer {
    text-align: center;
    max-width: 640px;
    margin: 2rem auto 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Prozessoptimierung Medizin (auf Anfrage) */
.medizin-block {
    border-top: 1px solid var(--clay-light);
    border-bottom: 1px solid var(--clay-light);
    padding: 3rem 1.5rem;
    margin-top: 0;
    position: relative;
    transition: background 0.4s ease, padding 0.4s ease;
}

.medizin-block:hover {
    background-color: var(--white);
    padding-left: 2rem;
    padding-right: 2rem;
}

.medizin-block-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem auto;
}

.medizin-block-header h3 {
    margin-bottom: 0.75rem;
}

.medizin-badge {
    display: inline-block;
    margin-bottom: 1rem;
    background: var(--text-main);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
}

.medizin-block-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.medizin-block-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.medizin-list {
    list-style: none;
}

.medizin-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.medizin-list li::before {
    content: "✦";
    color: var(--accent-fire);
    position: absolute;
    left: 0;
}

.medizin-cta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.price-on-request {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-fire);
    letter-spacing: 0.02em;
}

.medizin-block-footer {
    text-align: center;
    max-width: 680px;
    margin: 2rem auto 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about-photo-wrap {
    border: 1px solid var(--clay-light);
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-photo-caption {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-muted);
    text-align: center;
    padding: 0.75rem 0.5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    border: 1px solid var(--clay-light);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
    border-color: var(--text-main);
    transform: translateY(-4px);
}

.process-step-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-fire);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.process-step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.value-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-pillar {
    background: var(--white);
    border: 1px solid var(--clay-light);
    padding: 2rem 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.value-pillar-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-fire);
    margin-bottom: 0.75rem;
}

.value-pillar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.value-pillar p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.value-pillar p strong {
    color: var(--text-main);
}

.value-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(228, 218, 201, 0.5);
    border-left: 3px solid var(--accent-fire);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 52rem;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-top: 1px solid var(--clay-light);
    background: var(--white);
    margin-bottom: 0.5rem;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-fire);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-size: 0.95rem;
}

.project-metric {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    background: rgba(125, 73, 36, 0.1);
    color: var(--accent-fire);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brutalist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brutalist-card {
    background: var(--white);
    border: 1px solid var(--clay-light);
    padding: 2.5rem 2rem;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.brutalist-card:hover {
    border-color: var(--text-main);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.brutalist-card .card-category {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--sun-accent);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.brutalist-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.brutalist-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ==========================================================================
   9. MODALS & FOOTER
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 23, 16, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-color);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    padding: 3rem;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--clay-light);
    box-shadow: var(--shadow-soft);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-main);
    background: none;
    border: none;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--clay-light);
    padding-bottom: 1rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-fire);
    margin-bottom: 1rem;
}

.modal-section ul {
    list-style: none;
    margin-bottom: 1rem;
}

.modal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.modal-section ul li::before {
    content: "✓";
    color: var(--sun-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.addon-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--clay-light);
    background: var(--white);
    margin-bottom: 0.8rem;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.addon-label:hover {
    border-color: var(--text-main);
}

.addon-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--text-main);
    margin-right: 1rem;
    flex-shrink: 0;
}

.addon-text {
    flex-grow: 1;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.addon-price {
    font-weight: 800;
    color: var(--accent-fire);
    font-size: 0.95rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.modal-total-bar {
    background: var(--text-main);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.modal-total-bar span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.modal-total-bar .total-sum {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--sun-accent);
}

footer {
    background-color: var(--text-main);
    color: var(--bg-color);
    padding: 2rem 2rem;
    border-top: 1px solid var(--clay-light);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

.footer-links-simple {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links-simple a {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links-simple a:hover {
    color: var(--sun-accent);
}

.footer-links-simple a[aria-current="page"] {
    color: var(--sun-accent);
}

.footer-links-simple .divider {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    color: var(--clay-light);
}

.footer-bottom .swiss-made {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sun-accent);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.active {
    opacity: 1;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }

/* Touch / Mobile: kein Scroll-Smooth, Reveal ohne Layout-Shift */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        transform: none;
        transition: opacity 0.45s ease;
    }

    .reveal.active {
        transform: none;
    }

}

/* ==========================================================================
   10. MOBILE
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --header-height: 5.5rem;
    }

    .row-item {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .row-item .row-price {
        grid-column: span 2;
        order: 3;
        align-items: flex-start;
        text-align: left;
    }

    .hosting-options {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .value-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-pillar {
        padding: 1.5rem 1.25rem;
    }

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

@media (max-width: 768px) {
    nav {
        justify-content: flex-start;
        padding: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        height: 100svh;
        background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-color) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        margin: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin-bottom: 2rem;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-fs h1.massive {
        font-size: clamp(2.25rem, 11vmin, 3.5rem);
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .outline-text {
        -webkit-text-stroke: 1px var(--stroke-display);
    }

    h1.section-title,
    h2.section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.3;
        letter-spacing: 1px;
    }

    .hero-fs {
        /*
         * lvh = maximale Viewport-Höhe (bleibt stabil beim Scrollen, kein dvh-Sprung).
         * Grösser als svh beim Laden → nur Startseite sichtbar, kein Vorgeschmack Dienstleistungen.
         */
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100lvh;
        padding: calc(var(--header-height) + 0.75rem) 1.25rem max(1.25rem, env(safe-area-inset-bottom, 0px));
        align-items: center;
    }

    .hero-inner {
        width: 100%;
        max-height: calc(100svh - var(--header-height) - 2rem);
        max-height: calc(100lvh - var(--header-height) - 2rem);
    }

    .hero-eyebrow {
        letter-spacing: 0.25em;
        margin-bottom: 1rem;
    }

    .hero-kicker {
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .hero-bg-orb--1,
    .hero-bg-orb--2 {
        filter: blur(40px);
    }

    .hero-bg-grid {
        background-size: 48px 48px;
    }

    .hero-scroll {
        margin-top: 1.5rem;
    }

    .scroll-prompt-hint {
        font-size: 0.8rem;
        max-width: 14rem;
    }

    .row-item .row-price .btn-primary,
    .row-item .row-price .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hosting-block-footer {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .faq-item summary {
        padding: 1rem 1.15rem;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding: 0 1.15rem 1rem;
    }

    .container {
        padding: 4rem 1.5rem;
    }

    .container.page-hero-offset,
    .legal-hero.container {
        padding-top: calc(var(--header-height) + 2rem + env(safe-area-inset-top, 0px));
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .legal-hero .section-title {
        font-size: clamp(1.25rem, 5.8vw, 2.25rem);
        line-height: 1.35;
        letter-spacing: 0;
        margin-bottom: 0.5rem;
    }

    .legal-hero .lead {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
        padding: 0 0.25rem;
    }

    .legal-content.container {
        padding-top: 0;
        padding-bottom: 4rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .legal-content {
        font-size: 1rem;
        line-height: 1.65;
    }

    .legal-content h2,
    .legal-content h3 {
        font-size: 1rem;
        line-height: 1.4;
        overflow-wrap: break-word;
    }

    .legal-content p {
        margin-bottom: 1.5rem;
    }

    .row-item {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .row-item .row-price {
        grid-column: span 1;
    }

    .hosting-block {
        padding: 2rem 1.5rem;
    }

    .hosting-block:hover {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .medizin-block {
        padding: 2rem 1.5rem;
    }

    .medizin-block:hover {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .medizin-block-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .medizin-cta {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .medizin-cta .btn-primary {
        width: 100%;
        text-align: center;
    }

    .hosting-option {
        padding: 1.5rem 1.25rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-photo-wrap {
        max-width: 360px;
        margin: 0 auto;
    }

    .value-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-pillar {
        padding: 1.5rem 1.25rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .brutalist-card {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 85vh;
    }

    .addon-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .addon-label input[type="checkbox"] {
        margin-bottom: 0.5rem;
    }

    .addon-price {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .modal-total-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .modal-total-bar .total-sum {
        font-size: 1.4rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .footer-links-simple {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   11. MOBILE DARK MODE — class via theme-init.js (+ prefers-color-scheme fallback)
   ========================================================================== */
@media (max-width: 768px) {
    html.dark-mode-mobile {
        --bg-color: #12100E;
        --bg-alt: #1C1814;
        --white: #262019;
        --text-main: #F3EBE0;
        --text-muted: #D2C6B8;
        --text-body: #E5DDD2;
        --accent-fire: #F0A66A;
        --sun-accent: #F5C882;
        --clay-light: #4A4036;
        --stroke-display: #F2EBE0;
        /* Gleiche helle Farbe wie Outline-Titel, etwas transparenter als dezentes Wasserzeichen */
        --hero-watermark-stroke: rgba(242, 235, 224, 0.32);

        --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.5);
        --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.4);
        --shadow-glow: 0 0 48px rgba(232, 149, 90, 0.18);
        --focus-ring: 0 0 0 3px var(--sun-accent);

        --header-bg: rgba(18, 16, 14, 0.92);
        --header-border: rgba(61, 52, 44, 0.55);
        --hero-mid: #221C17;
        --hero-orb-1: rgba(232, 149, 90, 0.4);
        --hero-orb-2: rgba(166, 115, 62, 0.32);
        --hero-orb-3: rgba(240, 192, 120, 0.18);
        --hero-fade-mid: rgba(18, 16, 14, 0.4);
        --overlay-bg: rgba(0, 0, 0, 0.82);
        --metric-bg: rgba(232, 149, 90, 0.16);
        --value-note-bg: rgba(38, 32, 25, 0.85);
        --footer-bg: #0A0907;
        --footer-text: var(--text-muted);
        --footer-link: var(--text-main);
        --modal-bar-bg: linear-gradient(135deg, var(--accent-fire) 0%, #C97842 100%);
        --modal-bar-text: #12100E;

        color-scheme: dark;
        background-color: var(--bg-color);
    }

    html.dark-mode-mobile body {
        background-color: var(--bg-color);
        color: var(--text-main);
    }

    html.dark-mode-mobile .outline-text,
    html.dark-mode-mobile h1.massive .outline-text,
    html.dark-mode-mobile .section-title .outline-text {
        color: transparent;
        -webkit-text-stroke: 1px var(--stroke-display);
        font-weight: 900;
    }

    html.dark-mode-mobile .hero-bg-watermark {
        color: transparent;
        -webkit-text-stroke: 2px var(--hero-watermark-stroke);
        opacity: 1;
    }

    html.dark-mode-mobile h1.section-title,
    html.dark-mode-mobile h2.section-title {
        color: var(--text-main);
    }

    html.dark-mode-mobile p,
    html.dark-mode-mobile p.lead,
    html.dark-mode-mobile .scroll-prompt-hint,
    html.dark-mode-mobile .hosting-block-lead,
    html.dark-mode-mobile .hosting-block-footer,
    html.dark-mode-mobile .hosting-note,
    html.dark-mode-mobile .row-item ul li,
    html.dark-mode-mobile .brutalist-card p,
    html.dark-mode-mobile .hosting-option ul li,
    html.dark-mode-mobile .process-step p,
    html.dark-mode-mobile .value-pillar p,
    html.dark-mode-mobile .value-note,
    html.dark-mode-mobile .about-content,
    html.dark-mode-mobile .about-lead,
    html.dark-mode-mobile .faq-item p,
    html.dark-mode-mobile .modal-section ul li,
    html.dark-mode-mobile .addon-text {
        color: var(--text-body);
    }

    html.dark-mode-mobile .legal-content p,
    html.dark-mode-mobile .legal-content ul {
        color: var(--text-body);
    }

    html.dark-mode-mobile .legal-content h2,
    html.dark-mode-mobile .legal-content h3,
    html.dark-mode-mobile .modal-section h4,
    html.dark-mode-mobile .card-link-accent,
    html.dark-mode-mobile .faq-item a {
        color: var(--sun-accent);
    }

    html.dark-mode-mobile .legal-content a,
    html.dark-mode-mobile .faq-item a:hover {
        color: var(--accent-fire);
    }

    html.dark-mode-mobile .row-item .price-amount,
    html.dark-mode-mobile .hosting-option-price,
    html.dark-mode-mobile .project-metric,
    html.dark-mode-mobile .value-pillar-label,
    html.dark-mode-mobile .faq-item summary::after {
        color: var(--accent-fire);
    }

    html.dark-mode-mobile .brutalist-card h3,
    html.dark-mode-mobile .hosting-option-title,
    html.dark-mode-mobile .process-step h3,
    html.dark-mode-mobile .value-pillar h3,
    html.dark-mode-mobile .faq-item summary,
    html.dark-mode-mobile .row-item h3,
    html.dark-mode-mobile .modal-content h3 {
        color: var(--text-main);
    }

    html.dark-mode-mobile .brutalist-card .card-category,
    html.dark-mode-mobile .row-item ul li::before,
    html.dark-mode-mobile .hosting-option ul li::before,
    html.dark-mode-mobile .modal-section ul li::before {
        color: var(--sun-accent);
    }

    html.dark-mode-mobile .medizin-block-lead,
    html.dark-mode-mobile .medizin-block-footer,
    html.dark-mode-mobile .medizin-list li {
        color: var(--text-body);
    }

    html.dark-mode-mobile .medizin-badge {
        background: var(--accent-fire);
        color: var(--modal-bar-text);
    }

    html.dark-mode-mobile .price-on-request {
        color: var(--accent-fire);
    }

    html.dark-mode-mobile header {
        background: var(--header-bg);
        border-bottom-color: var(--header-border);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    }

    html.dark-mode-mobile .nav-links.active {
        background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-color) 55%, #0f0d0b 100%);
    }

    html.dark-mode-mobile .hero-fs {
        background:
            radial-gradient(ellipse 95% 75% at 12% 18%, var(--hero-orb-1) 0%, transparent 58%),
            radial-gradient(ellipse 85% 65% at 92% 78%, var(--hero-orb-2) 0%, transparent 52%),
            radial-gradient(ellipse 75% 55% at 50% 105%, var(--hero-orb-3) 0%, transparent 62%),
            linear-gradient(168deg, var(--bg-color) 0%, var(--hero-mid) 45%, var(--bg-alt) 100%);
    }

    html.dark-mode-mobile .hero-bg::after {
        mix-blend-mode: soft-light;
        opacity: 0.22;
    }

    html.dark-mode-mobile .hero-bg-orb--1 {
        background: var(--hero-orb-1);
        opacity: 0.7;
    }

    html.dark-mode-mobile .hero-bg-orb--2 {
        background: var(--hero-orb-2);
        opacity: 0.65;
    }

    html.dark-mode-mobile .hero-bg-orb--3 {
        background: var(--hero-orb-3);
        opacity: 0.55;
    }

    html.dark-mode-mobile .hero-bg-fade {
        background: linear-gradient(
            180deg,
            transparent 0%,
            var(--hero-fade-mid) 38%,
            var(--bg-color) 78%,
            var(--bg-color) 100%
        );
    }

    html.dark-mode-mobile .hero-fs h1.massive {
        filter: drop-shadow(0 6px 32px rgba(232, 149, 90, 0.2));
    }

    html.dark-mode-mobile .hero-fs h1.massive span.accent {
        text-shadow: 0 0 40px rgba(232, 149, 90, 0.35);
    }

    html.dark-mode-mobile .hero-kicker {
        color: var(--text-muted);
    }

    html.dark-mode-mobile .btn-primary {
        background: linear-gradient(135deg, var(--accent-fire) 0%, #D4844A 100%);
        color: var(--modal-bar-text);
        box-shadow: 0 8px 28px rgba(232, 149, 90, 0.35);
    }

    html.dark-mode-mobile .btn-primary:hover {
        background: var(--sun-accent);
        color: var(--modal-bar-text);
    }

    html.dark-mode-mobile .btn-secondary {
        color: var(--text-main);
        border-color: var(--clay-light);
    }

    html.dark-mode-mobile .btn-secondary:hover {
        background: var(--text-main);
        color: var(--bg-color);
        border-color: var(--text-main);
    }

    html.dark-mode-mobile .row-item:hover,
    html.dark-mode-mobile .hosting-block:hover,
    html.dark-mode-mobile .medizin-block:hover {
        background-color: var(--white);
    }

    html.dark-mode-mobile .hosting-option:hover,
    html.dark-mode-mobile .brutalist-card:hover,
    html.dark-mode-mobile .process-step:hover,
    html.dark-mode-mobile .value-pillar:hover {
        box-shadow: var(--shadow-card), var(--shadow-glow);
    }

    html.dark-mode-mobile .hosting-badge {
        color: var(--modal-bar-text);
    }

    html.dark-mode-mobile .hosting-option--recommended,
    html.dark-mode-mobile .card-highlight {
        border-color: var(--sun-accent);
        box-shadow: var(--shadow-glow);
    }

    html.dark-mode-mobile .card-highlight {
        background: rgba(232, 149, 90, 0.06);
    }

    html.dark-mode-mobile .project-metric {
        background: var(--metric-bg);
        color: var(--sun-accent);
    }

    html.dark-mode-mobile .value-note {
        background: var(--value-note-bg);
        border-left-color: var(--sun-accent);
    }

    html.dark-mode-mobile .faq-item {
        background: var(--white);
        border-top-color: var(--clay-light);
    }

    html.dark-mode-mobile .modal-overlay {
        background: var(--overlay-bg);
    }

    html.dark-mode-mobile .modal-content {
        border-color: var(--clay-light);
        box-shadow: var(--shadow-soft), var(--shadow-glow);
    }

    html.dark-mode-mobile .modal-total-bar {
        background: var(--modal-bar-bg);
        color: var(--modal-bar-text);
    }

    html.dark-mode-mobile .modal-total-bar .total-sum {
        color: var(--modal-bar-text);
    }

    html.dark-mode-mobile footer {
        background-color: var(--footer-bg);
        color: var(--footer-text);
        border-top-color: var(--clay-light);
    }

    html.dark-mode-mobile .footer-links-simple a {
        color: var(--footer-link);
    }

    html.dark-mode-mobile .footer-links-simple a:hover,
    html.dark-mode-mobile .footer-links-simple a[aria-current="page"] {
        color: var(--sun-accent);
    }

    html.dark-mode-mobile .footer-links-simple .divider {
        color: var(--clay-light);
    }

    html.dark-mode-mobile .footer-bottom .swiss-made {
        color: var(--sun-accent);
        text-shadow: 0 0 24px rgba(240, 192, 120, 0.25);
    }

    html.dark-mode-mobile .skip-link {
        background: var(--accent-fire);
        color: var(--modal-bar-text);
    }

    html.dark-mode-mobile .legal-hero .section-title .outline-text {
        -webkit-text-stroke: 1px var(--stroke-display);
    }

    html.dark-mode-mobile .legal-hero .lead,
    html.dark-mode-mobile .page-intro .lead {
        color: var(--text-muted);
    }

    html.dark-mode-mobile .close-modal,
    html.dark-mode-mobile .addon-price {
        color: var(--text-main);
    }

    html.dark-mode-mobile .hero-eyebrow,
    html.dark-mode-mobile .scroll-prompt {
        color: var(--sun-accent);
    }

    html.dark-mode-mobile .scroll-prompt:hover {
        color: var(--stroke-display);
    }
}
