/*
 * WebLösung – Premium Design System v2.0
 *
 * DSGVO-KONFORM: Alle Schriftarten lokal. Keine externen Dienste (Google Fonts etc.)
 * Schriftdateien unter assets/fonts/ ablegen:
 *   Syne:  Syne-Regular.woff2, Syne-Bold.woff2, Syne-ExtraBold.woff2
 *          → Download: https://fonts.google.com/specimen/Syne  (lokal speichern)
 *   Inter: Inter-Regular.woff2, Inter-Medium.woff2, Inter-SemiBold.woff2, Inter-Bold.woff2
 *          → Download: https://rsms.me/inter/
 */

/* ── Self-Hosted Font Declarations ── */
@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-ExtraBold.woff2') format('woff2');
    font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ────────────────────────────────────────
   Design Tokens
   ──────────────────────────────────────── */
:root {
    /* Backgrounds */
    --void:         #090D16;
    --surface:      #121826;
    --surface-hi:   #161E2E;
    --border:       #1F293D;
    --border-hi:    #2A3650;

    /* Text */
    --t1: #FFFFFF;
    --t2: #8892A4;
    --t3: #3E4A5C;

    /* Brand accent */
    --orange:       #FF5A1F;
    --orange-mid:   #FF7340;
    --o-glow-sm:    0 0 28px rgba(255, 90, 31, 0.30);
    --o-glow-lg:    0 0 60px rgba(255, 90, 31, 0.22), 0 0 28px rgba(255, 90, 31, 0.18);
    --o-dim:        rgba(255, 90, 31, 0.11);
    --o-border:     rgba(255, 90, 31, 0.28);

    /* Blue accent (secondary) */
    --blue:         #4F8EF7;
    --b-dim:        rgba(79, 142, 247, 0.10);

    /* Typography */
    --font-display: 'Syne', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Motion */
    --ease-spring:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast:       150ms;
    --t-base:       300ms;
}

/* ────────────────────────────────────────
   Reset & Global Base
   ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background-color: var(--void);
    color: var(--t1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}
main { flex: 1; }

/* Dot-grid background texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.028) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

/* Film grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 240px 240px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.55;
    mix-blend-mode: overlay;
}

/* ────────────────────────────────────────
   Navigation
   ──────────────────────────────────────── */
.wl-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 13, 22, 0.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
}
.wl-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wl-logo {
    display: flex; align-items: center; gap: 0.625rem;
    text-decoration: none; user-select: none; flex-shrink: 0;
}
.wl-logo-mark {
    width: 34px; height: 34px;
    background: var(--orange);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 800; font-size: 0.8rem;
    color: #fff; letter-spacing: -0.02em;
    box-shadow: var(--o-glow-sm);
    flex-shrink: 0;
}
.wl-logo-name {
    font-family: var(--font-display);
    font-size: 1.125rem; font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--t1);
}
.wl-logo-name em { color: var(--orange); font-style: normal; }

.wl-nav-links {
    display: none; align-items: center; gap: 2rem; list-style: none;
}
@media (min-width: 768px) { .wl-nav-links { display: flex; } }

.wl-nav-links a {
    font-size: 0.875rem; font-weight: 500;
    color: var(--t2); text-decoration: none;
    letter-spacing: -0.01em;
    transition: color var(--t-fast);
}
.wl-nav-links a:hover, .wl-nav-links a[aria-current="page"] { color: var(--t1); }

/* ────────────────────────────────────────
   Buttons
   ──────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.9375rem; letter-spacing: -0.01em;
    text-decoration: none; border: none; cursor: pointer;
    border-radius: 10px;
    transition: all var(--t-base) var(--ease-spring);
    white-space: nowrap; position: relative; overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.2) 50%, transparent 55%);
    transform: translateX(-120%);
    transition: transform 600ms ease;
    border-radius: inherit;
}
.btn:hover::after { transform: translateX(120%); }

.btn-cta {
    background: var(--orange);
    color: #fff;
    padding: 0.75rem 1.625rem;
    box-shadow: var(--o-glow-sm);
}
.btn-cta:hover {
    background: var(--orange-mid);
    transform: translateY(-2px);
    box-shadow: var(--o-glow-lg);
}
.btn-cta:active { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    color: var(--t2);
    padding: 0.75rem 1.625rem;
    border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
    color: var(--t1);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
    transform: translateY(-1px);
}

.btn-sm { font-size: 0.8125rem; padding: 0.5rem 1.125rem; border-radius: 8px; }
.btn-lg { font-size: 1.0625rem; padding: 0.9375rem 2rem; }

/* ────────────────────────────────────────
   Hero Section
   ──────────────────────────────────────── */
.wl-hero {
    position: relative; z-index: 1;
    padding: 7rem 1.5rem 5rem;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wl-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Ambient orbs */
.wl-hero-orb-a {
    position: absolute; top: -8%; right: -8%;
    width: 70vw; max-width: 860px; aspect-ratio: 1;
    background: radial-gradient(circle at 40% 40%,
        rgba(255,90,31,0.13) 0%,
        rgba(79,142,247,0.06) 40%,
        transparent 68%);
    filter: blur(90px);
    pointer-events: none;
    animation: orb-drift 10s ease-in-out infinite alternate;
}
.wl-hero-orb-b {
    position: absolute; bottom: -5%; left: -10%;
    width: 50vw; max-width: 600px; aspect-ratio: 1;
    background: radial-gradient(circle at 60% 60%,
        rgba(79,142,247,0.07) 0%, transparent 65%);
    filter: blur(70px);
    pointer-events: none;
    animation: orb-drift 14s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
    from { transform: scale(1) translate(0, 0); opacity: 0.75; }
    to   { transform: scale(1.1) translate(2%, 3%); opacity: 1; }
}

/* Live status tag */
.wl-hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--o-dim);
    border: 1px solid var(--o-border);
    color: #FF8F60;
    font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.375rem 0.875rem; border-radius: 999px;
    margin-bottom: 2rem;
}
.wl-hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--orange); border-radius: 50%;
    animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(0.65); }
}

/* Fluid hero heading */
.wl-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 8vw, 6rem);
    line-height: 0.93;
    letter-spacing: -0.045em;
    color: var(--t1);
    margin-bottom: 1.75rem;
    text-align: center;
}
.wl-h1 .ghost-line {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
    letter-spacing: -0.05em;
}
.wl-h1 .orange-word { color: var(--orange); }

.wl-hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--t2); line-height: 1.65;
    max-width: 500px; width: 100%; margin-bottom: 2.5rem;
}

.wl-hero-ctas {
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}

/* Scroll indicator */
.wl-scroll-hint {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--t3); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 4.5rem;
}
.wl-scroll-hint::before {
    content: '';
    display: block; width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, var(--border-hi));
    flex-shrink: 0;
}

/* ────────────────────────────────────────
   Marquee Ticker
   ──────────────────────────────────────── */
.wl-ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 0.875rem 0;
    overflow: hidden;
    position: relative; z-index: 1;
}
.wl-ticker-track {
    display: flex; width: max-content;
    animation: ticker-scroll 32s linear infinite;
}
.wl-ticker-track:hover { animation-play-state: paused; }
.wl-ticker-track > span {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--t3); padding: 0 2rem; white-space: nowrap;
}
.wl-ticker-track > .dot { color: var(--orange); padding: 0 0.25rem; font-size: 1rem; line-height: 1; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ────────────────────────────────────────
   Section Layout Utilities
   ──────────────────────────────────────── */
.wl-section {
    position: relative; z-index: 1;
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wl-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 1rem;
}
.wl-eyebrow::before {
    content: ''; display: block;
    width: 20px; height: 2px; background: var(--orange); flex-shrink: 0;
}

.wl-h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em; line-height: 1.05;
    color: var(--t1);
}
.wl-section-desc {
    margin-top: 0.875rem;
    color: var(--t2); font-size: 1rem; line-height: 1.65;
    max-width: 440px;
}

/* ────────────────────────────────────────
   Bento Grid
   ──────────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.875rem;
    grid-auto-rows: minmax(220px, auto);
}
@media (max-width: 767px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-grid > * { grid-column: span 1 !important; grid-row: span 1 !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
    .md-col-4  { grid-column: span 3 !important; }
    .md-col-2  { grid-column: span 2 !important; }
    .md-col-3  { grid-column: span 3 !important; }
    .md-row-2  { grid-row: span 1 !important; }
}
/* Span helpers for lg breakpoint */
@media (min-width: 1024px) {
    .md-col-4  { grid-column: span 4; }
    .md-col-2  { grid-column: span 2; }
    .md-col-3  { grid-column: span 3; }
    .md-row-2  { grid-row: span 2; }
}

/* ── Bento Card Base ── */
.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex; flex-direction: column;
    transition: all var(--t-base) var(--ease-spring);
    position: relative; overflow: hidden;
    cursor: default;
}
/* Inner glow on hover */
.bento-card::after {
    content: '';
    position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(ellipse at bottom left, rgba(255,90,31,0.09), transparent 65%);
    opacity: 0;
    transition: opacity var(--t-base);
    pointer-events: none;
}
.bento-card:hover {
    border-color: var(--o-border);
    transform: translateY(-3px);
    background: var(--surface-hi);
}
.bento-card:hover::after { opacity: 1; }

/* Featured variant */
.bento-card.card-featured {
    background: linear-gradient(145deg, #111B2E 0%, var(--surface) 100%);
    border-color: var(--border-hi);
}
.bento-card.card-featured:hover {
    border-color: rgba(255,90,31,0.42);
    box-shadow: var(--o-glow-sm);
}

/* Orange accent variant */
.bento-card.card-cta {
    background: var(--orange);
    border-color: transparent;
}
.bento-card.card-cta:hover {
    background: #FF6830;
    transform: translateY(-3px);
    box-shadow: var(--o-glow-lg);
    border-color: transparent;
}
.bento-card.card-cta::after { display: none; }

/* Stat/metric variant */
.bento-card.card-metric {
    background: var(--surface);
    align-items: center; justify-content: center; text-align: center;
}

/* ── Bento Card Internals ── */
.bento-tag {
    display: inline-block;
    font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.25rem 0.625rem; border-radius: 999px;
    margin-bottom: 1rem; align-self: flex-start;
}
.bento-tag.tag-dim     { background: rgba(255,255,255,0.06); color: var(--t3); }
.bento-tag.tag-orange  { background: var(--o-dim); color: #FF8F60; }
.bento-tag.tag-blue    { background: var(--b-dim); color: #90B8F8; }

.bento-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; flex-shrink: 0;
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-icon.i-orange { background: var(--o-dim); color: var(--orange); }
.bento-icon.i-blue   { background: var(--b-dim); color: var(--blue); }
.bento-icon.i-white  { background: rgba(255,255,255,0.09); color: var(--t1); }

.bento-kpi {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 800; letter-spacing: -0.05em; line-height: 1;
    color: var(--t1); margin-bottom: 0.25rem;
}
.bento-kpi .accent { color: var(--orange); }

.bento-title {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.125rem;
    letter-spacing: -0.03em; line-height: 1.2;
    color: var(--t1); margin-bottom: 0.625rem;
}
.bento-title-lg {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2.125rem);
    letter-spacing: -0.04em; line-height: 1.1;
    color: var(--t1); margin-bottom: 0.875rem;
}
.bento-body {
    font-size: 0.9375rem; color: var(--t2); line-height: 1.62;
}
.bento-body-sm { font-size: 0.875rem; color: var(--t2); line-height: 1.6; }

.bento-arrow {
    margin-top: auto; padding-top: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; font-weight: 600;
    color: var(--t3); text-decoration: none;
    transition: all var(--t-base) var(--ease-spring);
    letter-spacing: -0.01em; align-self: flex-start;
}
.bento-arrow svg { transition: transform var(--t-base) var(--ease-spring); }
.bento-card:hover .bento-arrow { color: var(--orange); }
.bento-card:hover .bento-arrow svg { transform: translate(4px, -4px); }

/* Decorative ghost numeral */
.bento-bg-num {
    position: absolute; right: -0.75rem; bottom: -2rem;
    font-family: var(--font-display); font-weight: 800;
    font-size: 8rem; line-height: 1; letter-spacing: -0.06em;
    color: rgba(255,255,255,0.022);
    pointer-events: none; user-select: none;
}

/* Feature list inside bento card */
.bento-features {
    list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.bento-features li {
    display: flex; align-items: center; gap: 0.625rem;
    font-size: 0.875rem; color: var(--t2);
}
.bento-features li::before {
    content: '';
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--orange); flex-shrink: 0;
}

/* ────────────────────────────────────────
   Stats Bar
   ──────────────────────────────────────── */
.wl-stats-bar {
    position: relative; z-index: 1;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.wl-stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: var(--border);
}
@media (min-width: 768px) { .wl-stats-inner { grid-template-columns: repeat(4, 1fr); } }
.wl-stat-cell {
    background: var(--surface);
    padding: 2.25rem 1.5rem; text-align: center;
    transition: background var(--t-fast);
}
.wl-stat-cell:hover { background: var(--surface-hi); }
.wl-stat-num {
    font-family: var(--font-display);
    font-size: 2.625rem; font-weight: 800;
    letter-spacing: -0.05em; color: var(--t1); line-height: 1;
    margin-bottom: 0.375rem;
}
.wl-stat-num sup { color: var(--orange); font-size: 0.55em; vertical-align: super; }
.wl-stat-label {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--t3);
}

/* ────────────────────────────────────────
   CTA Section
   ──────────────────────────────────────── */
.wl-cta-wrap {
    position: relative; z-index: 1;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 7rem 1.5rem; overflow: hidden;
}
.wl-cta-orb {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,90,31,0.1) 0%, transparent 62%);
    pointer-events: none; filter: blur(50px);
}
.wl-cta-inner {
    max-width: 680px; margin: 0 auto;
    text-align: center; position: relative; z-index: 1;
}
.wl-cta-h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 5.5vw, 4rem);
    letter-spacing: -0.045em; line-height: 0.97;
    color: var(--t1); margin-bottom: 1.25rem;
}
.wl-cta-sub {
    font-size: 1.0625rem; color: var(--t2); line-height: 1.65; margin-bottom: 2.75rem;
}
.wl-cta-note {
    margin-top: 1.25rem; font-size: 0.8125rem; color: var(--t3);
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.wl-cta-note::before, .wl-cta-note::after {
    content: ''; display: block; height: 1px; width: 40px; background: var(--border-hi);
}

/* ────────────────────────────────────────
   Footer
   ──────────────────────────────────────── */
.wl-footer {
    position: relative; z-index: 1;
    background: var(--void);
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem 2.5rem;
}
.wl-footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .wl-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.wl-footer-brand p {
    margin-top: 0.875rem;
    font-size: 0.875rem; color: var(--t3); line-height: 1.65; max-width: 260px;
}
.wl-footer-col-label {
    font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--t3); margin-bottom: 1rem;
}
.wl-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.wl-footer-col a {
    font-size: 0.9375rem; color: var(--t2); text-decoration: none;
    transition: color var(--t-fast);
}
.wl-footer-col a:hover { color: var(--t1); }
.wl-footer-bottom {
    max-width: 1200px; margin: 2.5rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 1rem;
    align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .wl-footer-bottom { flex-direction: row; } }
.wl-footer-copy { font-size: 0.8125rem; color: var(--t3); }
.wl-footer-legal { display: flex; align-items: center; gap: 1.5rem; }
.wl-footer-legal a {
    font-size: 0.875rem; font-weight: 700;
    color: var(--orange); text-decoration: underline; text-underline-offset: 3px;
    transition: color var(--t-fast);
}
.wl-footer-legal a:hover { color: var(--orange-mid); }

/* ────────────────────────────────────────
   Legal Pages (Impressum / Datenschutz)
   ──────────────────────────────────────── */
.wl-legal-page {
    max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem 6rem;
    position: relative; z-index: 1;
}
.wl-legal-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem;
}
.wl-legal-prose { color: var(--t2); }
.wl-legal-prose h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.1rem; letter-spacing: -0.02em;
    color: var(--t1); margin: 2.5rem 0 0.75rem;
}
.wl-legal-prose h2:first-child { margin-top: 0; }
.wl-legal-prose h3 { font-weight: 600; font-size: 1rem; color: var(--t1); margin: 1.5rem 0 0.5rem; }
.wl-legal-prose p  { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.875rem; }
.wl-legal-prose ul { padding-left: 1.5rem; list-style: disc; }
.wl-legal-prose li { font-size: 0.9375rem; line-height: 1.65; margin-bottom: 0.5rem; }
.wl-legal-prose a  { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.wl-legal-prose a:hover { color: var(--orange-mid); }
.wl-legal-prose .rule { border-top: 1px solid var(--border); margin: 2rem 0; }

/* ────────────────────────────────────────
   Utilities
   ──────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ════════════════════════════════════════
   SUBPAGE COMPONENTS
   Classes used on inner pages that are not
   in the homepage template.
   ════════════════════════════════════════ */

/* H1 text-effect aliases (homepage uses .ghost-line / .orange-word,
   subpages use .wl-ghost / .wl-orange — both are supported)  */
.wl-ghost {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
    letter-spacing: -0.05em;
}
.wl-orange { display: block; color: var(--orange); }

/* Breadcrumb navigation */
.wl-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--t3);
    margin-bottom: 2rem;
}
.wl-breadcrumb a {
    color: var(--t3);
    text-decoration: none;
    transition: color var(--t-fast);
}
.wl-breadcrumb a:hover { color: var(--t2); }

/* Section title block */
.wl-section-header {
    margin-bottom: 3rem;
    text-align: center;
}
.wl-section-header h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--t1);
    margin-top: 0.75rem;
}

/* ────────────────────────────────────────
   Pricing cards (city & service pages)
   ──────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
@media (max-width: 767px) {
    .pricing-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    transition: border-color var(--t-base);
}
.pricing-card:hover { border-color: var(--border-hi); }

.pricing-card--featured {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px rgba(255,90,31,0.35), var(--o-glow-sm);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    background: var(--orange);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 0.25rem;
    width: fit-content;
}

.pricing-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--t1);
}

.pricing-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--t1);
}
.pricing-price span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--t2);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}
.pricing-features li {
    font-size: 0.9375rem;
    color: var(--t2);
    padding-left: 1.375rem;
    position: relative;
    line-height: 1.5;
}
.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.75rem;
    top: 0.15rem;
}

/* Hosting & service flat notice */
.hosting-notice {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border-hi);
    border-radius: 12px;
    padding: 1.125rem 1.5rem;
    font-size: 0.875rem;
    color: var(--t2);
    line-height: 1.65;
}
.hosting-notice strong { color: var(--t1); }

/* ────────────────────────────────────────
   Simplified footer (subpages)
   ──────────────────────────────────────── */
.wl-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.wl-footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.03em;
    color: var(--t1);
    text-decoration: none;
}
.wl-footer-logo span { color: var(--orange); }

.wl-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}
.wl-footer-links a {
    font-size: 0.875rem;
    color: var(--t3);
    text-decoration: none;
    transition: color var(--t-fast);
}
.wl-footer-links a:hover { color: var(--t1); }

/* ────────────────────────────────────────
   Mobile nav (subpages)
   ──────────────────────────────────────── */
.wl-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--t2);
    transition: color var(--t-fast);
    flex-shrink: 0;
}
.wl-nav-toggle:hover { color: var(--t1); }
.wl-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}
@media (min-width: 768px) { .wl-nav-toggle { display: none; } }

.wl-mobile-nav {
    border-top: 1px solid var(--border);
    background: var(--void);
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.wl-mobile-nav.hidden { display: none; }
.wl-mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--t2);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color var(--t-fast);
}
.wl-mobile-nav a:last-child { border-bottom: none; }
.wl-mobile-nav a:hover { color: var(--t1); }

/* Nav CTA button (subpages) */
.btn-nav-cta {
    display: none;
}
@media (min-width: 768px) {
    .btn-nav-cta {
        display: inline-flex;
        align-items: center;
        background: var(--orange);
        color: #fff !important;
        font-weight: 600;
        font-size: 0.875rem;
        padding: 0.5rem 1.125rem;
        border-radius: 8px;
        text-decoration: none;
        transition: all var(--t-base) var(--ease-spring);
        white-space: nowrap;
        box-shadow: var(--o-glow-sm);
    }
    .btn-nav-cta:hover {
        background: var(--orange-mid);
        transform: translateY(-1px);
    }
}

/* ────────────────────────────────────────
   Legal prose (Impressum, Datenschutz)
   ──────────────────────────────────────── */
.wl-legal-prose h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.03em;
    color: var(--t1);
    margin: 2rem 0 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.wl-legal-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.wl-legal-prose h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--t1);
    margin: 1.25rem 0 0.5rem;
}
.wl-legal-prose p {
    font-size: 0.9375rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 0.875rem;
}
.wl-legal-prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.875rem;
}
.wl-legal-prose li {
    font-size: 0.9375rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 0.25rem;
}
.wl-legal-prose a { color: var(--orange); text-decoration: none; }
.wl-legal-prose a:hover { text-decoration: underline; }
.wl-legal-prose strong { color: var(--t1); font-weight: 600; }
.wl-legal-prose .legal-meta {
    font-size: 0.75rem;
    color: var(--t3);
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ────────────────────────────────────────
   Footer city links
   ──────────────────────────────────────── */
.wl-city-link {
    font-size: 0.75rem;
    color: var(--t3);
    text-decoration: none;
    transition: color 150ms ease;
    white-space: nowrap;
}
.wl-city-link:hover { color: var(--orange); }

/* ────────────────────────────────────────
   WhatsApp floating button
   ──────────────────────────────────────── */
.wl-whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 150ms ease, box-shadow 150ms ease;
}
.wl-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ────────────────────────────────────────
   Mobile overrides (< 768px)
   ──────────────────────────────────────── */
@media (max-width: 767px) {
    .wl-hero       { padding: 5rem 1.25rem 3.5rem; }
    .wl-section    { padding: 4rem 1.25rem; }
    .wl-cta-wrap   { padding: 4rem 1.25rem; }
    .wl-legal-card { padding: 1.5rem; }
    .wl-cta-orb    { display: none; }
}
