:root {
    --primary: #091426;
    --primary-container: #1e293b;
    --on-primary: #ffffff;
    --action-blue: #3B82F6;
    --secondary: #505f76;
    --surface: #fbf8fa;
    --surface-container-low: #f5f3f4;
    --surface-container-high: #eae7e9;
    --surface-container-highest: #e4e2e3;
    --text-main: #1b1b1d;
    --text-muted: #45474c;
    --white: #ffffff;
    --shadow-ambient: 0 24px 48px rgba(9, 20, 38, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --section-padding: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--surface);
    background-image: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.03) 25%, transparent 25%, transparent 75%, rgba(59, 130, 246, 0.03) 75%, rgba(59, 130, 246, 0.03)),
        linear-gradient(45deg, rgba(59, 130, 246, 0.03) 25%, transparent 25%, transparent 75%, rgba(59, 130, 246, 0.03) 75%, rgba(59, 130, 246, 0.03)),
        linear-gradient(90deg, rgba(30, 41, 59, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 41, 59, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 40px 40px, 40px 40px;
    background-position: 0 0, 30px 30px, 0 0, 0 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--primary);
    word-spacing: 0.1em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
}

h1 {
    word-break: normal;
    overflow-wrap: normal;
}

h2 {
    word-break: normal;
    overflow-wrap: normal;
}

h3 {
    word-break: normal;
    overflow-wrap: normal;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.logo .accent-text {
    color: var(--action-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--action-blue);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--action-blue);
}

.btn-portal {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-portal:hover {
    background: var(--primary-container);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    padding: 220px 0 120px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: -0.025em;
    line-height: 1.2;
    word-spacing: 0.15em;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: var(--action-blue);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #2563eb;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

/* Sections */
section {
    padding: var(--section-padding) 0;
}

.section-head {
    text-align: center;
    margin-bottom: 5rem;
}

.section-head h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    word-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.section-head p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-fixed);
    color: var(--on-primary-fixed-variant);
    border-radius: 2px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

/* Glass Cards */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.glass-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/*.glass-card::before removed per no-line policy */

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-ambient);
}

.glass-card:hover h3 {
    color: var(--action-blue);
}

.glass-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    line-height: 1.25;
    word-spacing: 0.1em;
    letter-spacing: -0.015em;
}

.glass-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.list-modern {
    list-style: none;
}

.list-modern li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.list-modern li::before {
    content: '';
    width: 6px;
    height: 2px;
    background: var(--action-blue);
}

/* Special Footer for Impressum/Datenschutz */
footer {
    padding: 80px 0 40px;
    background: var(--surface-container-low);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 300px;
    color: var(--text-muted);
}

.footer-nav h4 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    word-spacing: 0.08em;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-nav ul a:hover {
    color: var(--white);
}

/* Dedicated Legal Footer */
.footer-legal {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.legal-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Animations */
@keyframes reveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-animate {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-animate-1 { animation-delay: 0.1s; }
.hero-animate-2 { animation-delay: 0.25s; }
.hero-animate-3 { animation-delay: 0.4s; }
.hero-animate-4 { animation-delay: 0.55s; }

.parallax-bg {
    transform: scale(1.05); /* slightly bigger to allow parallax without seeing edges */
    will-change: transform;
}

.reveal {
    opacity: 0;
}

.reveal.active {
    animation: reveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Impressum Content Styling */
.legal-box {
    background: var(--white);
    padding: 5rem;
    border-radius: var(--radius-sm);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-box h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-spacing: 0.1em;
}

.legal-box h3 {
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1.25;
    letter-spacing: -0.015em;
    word-spacing: 0.08em;
}

.legal-box p, .legal-box li {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Schachtschein SVG Styles */
.schachtschein-interactive {
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-ambient);
}

.schachtschein-svg {
    width: 100%;
    height: auto;
    display: block;
    padding: 2rem;
}

.utility-line {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.utility-line:hover, .utility-line.hover-active {
    stroke-width: 8;
    filter: drop-shadow(0 0 12px currentColor);
}

.tooltip-schachtschein {
    position: fixed;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.9) translateY(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tooltip-schachtschein.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.tooltip-schachtschein strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Card Glow Effect */
.interactive-card {
    position: relative;
    overflow: hidden;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.interactive-card:hover::before {
    opacity: 1;
}

/* Header transition enhancements */
nav {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

/* SVG Line Animation classes */
.utility-line {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease, filter 0.3s ease, stroke-dashoffset 1.5s ease-out;
    cursor: pointer;
}

.utility-line:hover, .utility-line.hover-active {
    stroke-width: 8;
    filter: drop-shadow(0 0 12px currentColor);
}

/* Map items pulse */
.map-pulse {
    animation: mapPulse 3s infinite alternate;
}

@keyframes mapPulse {
    0% { filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0)); }
    100% { filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3)); }
}

/* Material Symbols alignment */
.material-symbols-outlined {
    vertical-align: middle;
    line-height: 1;
}

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: -20px 0 50px rgba(9, 20, 38, 0.1);
}

#mobile-menu a {
    position: relative;
    transition: var(--transition);
}

#mobile-menu a:hover {
    padding-left: 8px;
    color: var(--action-blue);
}

#mobile-menu a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--action-blue);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

#mobile-menu a:hover::before {
    opacity: 1;
}

/* Local static utility layer replacing the Tailwind browser runtime. */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.block { display: block; }

/* ===== PAGE-SPECIFIC BACKGROUND DESIGNS ===== */

/* BESTELLUNG PAGE - Process/Form Flow Design */
body.page-bestellung {
    background-color: var(--surface);
    background-image: 
        /* Process flow lines (vertical) */
        linear-gradient(180deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px, transparent 3px, rgba(59, 130, 246, 0.04) 3px),
        /* Cross connections */
        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px, transparent 4px, rgba(59, 130, 246, 0.03) 4px),
        /* Subtle diagonal guidance */
        linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.04) 48.5%, rgba(59, 130, 246, 0.04) 51.5%, transparent 52%);
    background-size: 100% 80px, 60px 100%, 200px 200px;
    background-position: 0 0, 0 0, 0 0;
    background-attachment: fixed;
}

.bestellung-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" preserveAspectRatio="xMidYMid slice"><defs><filter id="blur"><feGaussianBlur in="SourceGraphic" stdDeviation="1.5"/></filter></defs><g opacity="0.06" fill="none" stroke="%233B82F6" stroke-width="1" filter="url(%23blur)"><circle cx="100" cy="150" r="3"/><line x1="100" y1="150" x2="200" y2="150"/><circle cx="200" cy="150" r="4"/><line x1="200" y1="150" x2="300" y2="200"/><circle cx="300" cy="200" r="3"/><circle cx="100" cy="350" r="3"/><line x1="100" y1="350" x2="200" y2="350"/><circle cx="200" cy="350" r="4"/><line x1="200" y1="350" x2="300" y2="400"/><circle cx="300" cy="400" r="3"/><rect x="150" y="500" width="80" height="60" opacity="0.4"/><line x1="150" y1="510" x2="230" y2="510"/><line x1="150" y1="525" x2="230" y2="525"/><line x1="150" y1="540" x2="200" y2="540"/><path d="M400 100 L450 150 L400 200" stroke-linecap="round" stroke-linejoin="round"/><circle cx="450" cy="150" r="5"/><path d="M500 50 Q550 100 500 150" stroke-linecap="round"/></g></svg>');
    background-size: 400px 300px;
    background-repeat: repeat;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0;
}

/* DIENSTLEISTER PAGE - Network/Connection Design */
body.page-dienstleister {
    background-color: var(--surface);
    background-image: 
        /* Network grid nodes */
        radial-gradient(circle, rgba(59, 130, 246, 0.12) 1.5px, transparent 1.5px),
        /* Horizontal connections */
        linear-gradient(90deg, transparent 48%, rgba(59, 130, 246, 0.06) 49%, rgba(59, 130, 246, 0.06) 51%, transparent 52%),
        /* Vertical connections */
        linear-gradient(180deg, transparent 48%, rgba(59, 130, 246, 0.06) 49%, rgba(59, 130, 246, 0.06) 51%, transparent 52%),
        /* Subtle diagonal layer */
        linear-gradient(135deg, transparent 48%, rgba(59, 130, 246, 0.03) 48.5%, rgba(59, 130, 246, 0.03) 51.5%, transparent 52%);
    background-size: 100px 100px, 200px 100%, 100% 200px, 280px 280px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    background-attachment: fixed;
}

.dienstleister-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" preserveAspectRatio="xMidYMid slice"><defs><filter id="glow"><feGaussianBlur in="SourceGraphic" stdDeviation="0.8"/></filter></defs><g opacity="0.05" stroke="%233B82F6" stroke-width="0.8" fill="none" filter="url(%23glow)"><circle cx="150" cy="150" r="4"/><circle cx="300" cy="150" r="3"/><circle cx="450" cy="200" r="4"/><circle cx="600" cy="150" r="3"/><circle cx="200" cy="400" r="3"/><circle cx="400" cy="380" r="4"/><circle cx="600" cy="420" r="3"/><circle cx="150" cy="150" cx2="300" cy2="150"/><line x1="300" y1="150" x2="450" y2="200"/><line x1="450" y1="200" x2="600" y2="150"/><line x1="150" y1="150" x2="200" y2="400"/><line x1="200" y1="400" x2="400" y2="380"/><line x1="400" y1="380" x2="600" y2="420"/><line x1="300" y1="150" x2="400" y2="380"/><text x="180" y="130" font-size="8" opacity="0.3">API</text><text x="420" y="240" font-size="8" opacity="0.3">Geo</text><text x="180" y="440" font-size="8" opacity="0.3">Layer</text></g></svg>');
    background-size: 500px 400px;
    background-repeat: repeat;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0;
}

/* VERFÜGBARKEIT PAGE - Germany Map & GIS Grid Design */
body.page-verfuegbarkeit {
    background-color: var(--surface);
    background-image: 
        /* Main GIS grid */
        linear-gradient(0deg, transparent 99.5%, rgba(59, 130, 246, 0.1) 99.7%, rgba(59, 130, 246, 0.1) 100%),
        linear-gradient(90deg, transparent 99.5%, rgba(59, 130, 246, 0.1) 99.7%, rgba(59, 130, 246, 0.1) 100%),
        /* Secondary fine grid */
        linear-gradient(0deg, transparent 99.7%, rgba(59, 130, 246, 0.04) 99.8%, rgba(59, 130, 246, 0.04) 99.9%),
        linear-gradient(90deg, transparent 99.7%, rgba(59, 130, 246, 0.04) 99.8%, rgba(59, 130, 246, 0.04) 99.9%),
        /* Regional flow lines */
        linear-gradient(135deg, transparent 48%, rgba(59, 130, 246, 0.04) 48.5%, rgba(59, 130, 246, 0.04) 51.5%, transparent 52%);
    background-size: 80px 80px, 80px 80px, 160px 160px, 160px 160px, 320px 320px;
    background-position: 0 0, 0 0, 40px 40px, 40px 40px, 0 0;
    background-attachment: fixed;
}

.verfuegbarkeit-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" preserveAspectRatio="xMidYMid slice"><defs><filter id="mapblur"><feGaussianBlur in="SourceGraphic" stdDeviation="1.2"/></filter><radialGradient id="coverage"><stop offset="0%25" stop-color="%233B82F6" stop-opacity="0.1"/><stop offset="100%25" stop-color="%233B82F6" stop-opacity="0"/></radialGradient></defs><g opacity="0.08" filter="url(%23mapblur)"><path d="M300 200 Q320 180 340 200 L350 250 Q330 270 300 250 Z" stroke="%233B82F6" stroke-width="1.5" fill="none"/><circle cx="320" cy="220" r="25" fill="url(%23coverage)"/><path d="M500 300 Q530 280 550 310 L560 380 Q530 400 500 370 Z" stroke="%233B82F6" stroke-width="1.5" fill="none"/><circle cx="530" cy="340" r="30" fill="url(%23coverage)"/><path d="M700 250 Q720 230 740 250 L750 320 Q730 340 700 320 Z" stroke="%233B82F6" stroke-width="1.5" fill="none"/><circle cx="720" cy="280" r="28" fill="url(%23coverage)"/><path d="M400 500 Q420 480 440 500 L450 570 Q430 590 400 570 Z" stroke="%233B82F6" stroke-width="1.5" fill="none"/><circle cx="420" cy="535" r="24" fill="url(%23coverage)"/><path d="M600 450 Q620 430 640 450 L650 520 Q630 540 600 520 Z" stroke="%233B82F6" stroke-width="1.5" fill="none"/><circle cx="620" cy="485" r="26" fill="url(%23coverage)"/></g></svg>');
    background-size: 600px 500px;
    background-repeat: repeat;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0;
}

/* Parallax offset layers */
.page-bestellung main,
.page-dienstleister main,
.page-verfuegbarkeit main {
    position: relative;
    z-index: 1;
}

.page-bestellung .bestellung-decoration,
.page-dienstleister .dienstleister-decoration,
.page-verfuegbarkeit .verfuegbarkeit-decoration {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    body.page-bestellung,
    body.page-dienstleister,
    body.page-verfuegbarkeit {
        background-attachment: scroll;
    }
    
    .bestellung-decoration,
    .dienstleister-decoration,
    .verfuegbarkeit-decoration {
        position: static;
        display: none;
    }
}

/* Mobile optimization - reduce background complexity */
@media (max-width: 768px) {
    .bestellung-decoration,
    .dienstleister-decoration,
    .verfuegbarkeit-decoration {
        opacity: 0.5;
        background-size: 250px 200px !important;
    }
    
    body.page-bestellung {
        background-attachment: scroll;
    }
    
    body.page-dienstleister {
        background-attachment: scroll;
    }
    
    body.page-verfuegbarkeit {
        background-attachment: scroll;
    }
}
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.right-0 { right: 0; }
.bottom-24 { bottom: 6rem; }
.left-4 { left: 1rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }
.z-\[70\] { z-index: 70; }
.z-\[999\] { z-index: 999; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-full { transform: translateX(100%); }
.scale-75 { transform: scale(.75); }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-1\.5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }
.mt-32 { margin-top: 8rem; }
.mt-auto { margin-top: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.p-2 { padding: .5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-1 { padding-bottom: .25rem; }
.pl-12 { padding-left: 3rem; }
.pr-4 { padding-right: 1rem; }
.w-1\.5 { width: .375rem; }
.w-3 { width: .75rem; }
.w-8 { width: 2rem; }
.w-11 { width: 2.75rem; }
.w-24 { width: 6rem; }
.w-\[300px\] { width: 300px; }
.w-full { width: 100%; }
.h-1 { height: .25rem; }
.h-1\.5 { height: .375rem; }
.h-3 { height: .75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[850px\] { min-height: 850px; }
.max-w-0 { max-width: 0; }
.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-\[1920px\] { max-width: 1920px; }
.aspect-video { aspect-ratio: 16 / 9; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-none { border-style: none; }
.border-collapse { border-collapse: collapse; }
.border-transparent { border-color: transparent; }
.border-white\/20 { border-color: rgba(255,255,255,.2); }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-200\/10 { border-color: rgba(226,232,240,.1); }
.border-slate-200\/15 { border-color: rgba(226,232,240,.15); }
.border-\[\#3B82F6\] { border-color: #3B82F6; }
.divide-y > * + * { border-top-width: 1px; }
.divide-slate-100 > * + * { border-color: #f1f5f9; }
.rounded-DEFAULT { border-radius: var(--radius-sm); }
.rounded-sm { border-radius: .125rem; }
.rounded-lg { border-radius: var(--radius-md); }
.rounded-xl { border-radius: .5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-l-full { border-top-left-radius: 9999px; border-bottom-left-radius: 9999px; }
.rounded-r-none { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.bg-white { background-color: #fff; }
.bg-white\/90 { background-color: rgba(255,255,255,.9); }
.bg-transparent { background-color: transparent; }
.bg-surface { background-color: var(--surface); }
.bg-surface-container-low { background-color: var(--surface-container-low); }
.bg-primary-fixed { background-color: #d8e3fb; }
.bg-primary\/20 { background-color: rgba(9,20,38,.2); }
.bg-slate-50\/5 { background-color: rgba(248,250,252,.05); }
.bg-slate-50\/50 { background-color: rgba(248,250,252,.5); }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-500 { background-color: #22c55e; }
.bg-\[\#091426\] { background-color: #091426; }
.bg-\[\#3B82F6\], .bg-\[\#3b82f6\] { background-color: #3B82F6; }
.bg-\[\#10b981\] { background-color: #10b981; }
.bg-\[\#ec4899\] { background-color: #ec4899; }
.bg-\[\#ef4444\] { background-color: #ef4444; }
.bg-\[\#f59e0b\] { background-color: #f59e0b; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-surface { --tw-gradient-from: var(--surface); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251,248,250,0)); }
.via-surface\/90 { --tw-gradient-stops: var(--tw-gradient-from), rgba(251,248,250,.9), var(--tw-gradient-to, rgba(251,248,250,0)); }
.to-transparent { --tw-gradient-to: transparent; }
.object-cover { object-fit: cover; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[0\.65rem\] { font-size: .65rem; }
.text-\[0\.7rem\] { font-size: .7rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.text-white { color: #fff; }
.text-primary { color: var(--primary); }
.text-on-surface { color: var(--text-main); }
.text-on-surface-variant { color: #37393e; }
.text-on-primary-fixed-variant { color: #3c475a; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #57657a; }
.text-slate-600 { color: #404b5a; }
.text-green-700 { color: #15803d; }
.text-\[\#091426\] { color: #091426; }
.text-\[\#3B82F6\] { color: #3B82F6; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.8\] { line-height: 1.8; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.tracking-tight { letter-spacing: 0; }
.tracking-tighter { letter-spacing: 0; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }
.tracking-\[0\.2em\] { letter-spacing: .2em; }
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: .25; }
.opacity-50 { opacity: .5; }
.opacity-75 { opacity: .75; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,.08); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,.25); }
.shadow-slate-200\/50 { --tw-shadow-color: rgba(226,232,240,.5); }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.whitespace-nowrap { white-space: nowrap; }
.transition-all { transition: var(--transition); }
.transition-colors { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.transition-opacity { transition: opacity .3s ease; }
.transition-shadow { transition: box-shadow .2s ease; }
.transition-transform { transition: transform .3s ease; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.ease-in-out { transition-timing-function: cubic-bezier(.4,0,.2,1); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.selection\:bg-blue-100::selection { background: #dbeafe; }
.selection\:text-primary::selection { color: var(--primary); }
.placeholder\:text-slate-400::placeholder { color: #94a3b8; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-slate-800:hover { background-color: #1e293b; }
.hover\:border-\[\#3B82F6\]:hover { border-color: #3B82F6; }
.hover\:border-\[\#3B82F6\]\/20:hover { border-color: rgba(59,130,246,.2); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0,0,0,.1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px rgba(0,0,0,.08); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0,0,0,.1); }
.hover\:text-\[\#091426\]:hover { color: #091426; }
.hover\:text-\[\#3B82F6\]:hover { color: #3B82F6; }
.focus\:border-\[\#3B82F6\]:focus { border-color: #3B82F6; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px rgba(59,130,246,.1); }
.focus\:ring-\[\#3B82F6\]\/10:focus { box-shadow: 0 0 0 4px rgba(59,130,246,.1); }
.disabled\:opacity-30:disabled { opacity: .3; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }
.group:hover .group-hover\:max-w-\[150px\] { max-width: 150px; }
.group:hover .group-hover\:ml-3 { margin-left: .75rem; }
.group:hover .group-hover\:text-\[\#3B82F6\] { color: #3B82F6; }
footer.w-full { padding: 0; }

@keyframes pulse {
    50% { opacity: .5; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (min-width: 480px) {
    .xs\:inline { display: inline !important; }
    .xs\:hidden { display: none !important; }
}

@media (min-width: 768px) {
    .md\:col-span-12 { grid-column: span 12 / span 12; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:mt-0 { margin-top: 0; }
    .md\:p-4 { padding: 1rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:px-3 { padding-left: .75rem; padding-right: .75rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:px-20 { padding-left: 5rem; padding-right: 5rem; }
    .md\:right-8 { right: 2rem; }
    .md\:rounded-full { border-radius: 9999px; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .md\:w-1\/2 { width: 50%; }
    .md\:w-3\/5 { width: 60%; }
}

@media (min-width: 1024px) {
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-6 { grid-column: span 6 / span 6; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:col-span-12 { grid-column: span 12 / span 12; }
    .lg\:flex { display: flex !important; }
    .lg\:hidden { display: none !important; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:text-left { text-align: left; }
    .lg\:w-1\/2 { width: 50%; }
}

@media (max-width: 767px) {
    .min-h-\[850px\] { min-height: 680px; }
    .text-5xl { font-size: 2.5rem; }
    .text-6xl { font-size: 3rem; }
    .py-32 { padding-top: 5rem; padding-bottom: 5rem; }
}

