:root {
    --primary-red: #e50914;
    --primary-red-dark: #b00710;
    --dark: #0c0c0c;
    --dark-soft: #191919;
    --light: #ffffff;
    --muted: #9e9e9e;
    --accent: #ffdd57;
}

.entry-title,
.page-title,
.post-title,
h1.entry-title {
    display: none !important;
}

.site-description,
.tagline,
.subtitle {
    display: none !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #262626 0, #050505 45%, #000 100%);
    color: var(--light);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Wrapper */
.page-wrapper {
    background: #050505;
    color: var(--light);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.page-wrapper::before,
.page-wrapper::after {
    content: "";
    position: fixed;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
}

.page-wrapper::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.25), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(229, 9, 20, 0.18), transparent 45%);
    filter: blur(12px);
    opacity: 0.7;
    transform: translate3d(0, 0, 0);
}

.page-wrapper::after {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 40%, transparent 70%, rgba(255, 255, 255, 0.08));
    mix-blend-mode: screen;
    animation: pageGlow 30s ease-in-out infinite alternate;
    opacity: 0.5;
}

@keyframes pageGlow {
    0% {
        transform: translateY(-5%) scale(1);
    }
    50% {
        transform: translateY(5%) scale(1.05);
    }
    100% {
        transform: translateY(-3%) scale(1.02);
    }
}

.page-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header / Navigation */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #000000 !important;
    backdrop-filter: none;
    opacity: 1 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.sticky {
    background: #000000 !important;
    backdrop-filter: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
}

.nav-bar {
    background: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    z-index: 10001;
}

/* Logo – Premium Look */
.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

/* Kapsel / Badge fürs Logo-Bild */
.logo-mark {
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 55%),
        linear-gradient(135deg, #000000, #191919);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 18px rgba(0, 0, 0, 0.8),
        0 0 14px rgba(229, 9, 20, 0.35);
}

.logo-mark img {
    display: block;
    height: 42px;        /* hier Logo-Höhe einstellen */
    width: auto;
}

/* Text neben dem Logo */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.logo-subtitle {
    font-weight: 300;
    font-size: 0.7rem;
    color: var(--muted);
}

/* kleine rote Linie unter dem Titel (optional, sehr „premium“) */
.logo-text::after {
    content: "";
    margin-top: 0.2rem;
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    opacity: 0.85;
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    font-size: 0.75rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.phone-inline {
    font-size: 0.8rem;
    color: var(--muted);
}

.phone-inline strong {
    color: var(--light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    box-shadow: 0 0 18px rgba(229, 9, 20, 0.35);
    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 26px rgba(229, 9, 20, 0.55);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    height: 2px;
    background: var(--light);
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle::before {
    top: 8px;
}

.nav-toggle::after {
    bottom: 8px;
}

.nav-toggle.active span {
    opacity: 0;
}

.nav-toggle.active::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top left, rgba(229, 9, 20, 0.12), transparent 55%),
        radial-gradient(circle at top right, rgba(229, 9, 20, 0.16), transparent 60%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 65%);
    opacity: 0.95;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.6rem 0.2rem 0.2rem;
    border-radius: 999px;
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    margin-bottom: 1.2rem;
}

.hero-badge span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 0%, #ff4b63, var(--primary-red-dark));
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
    font-size: 0.7rem;
}

.hero-badge span.label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: var(--muted);
}

.hero-title {
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.hero-title span.highlight {
    display: inline-block;
    background-image: linear-gradient(120deg, #ffffff, #ffdde0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 460px;
    margin-bottom: 1.8rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
    margin-top: 1.6rem;
    font-size: 0.8rem;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
}

.hero-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.7);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hero-note {
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-note strong {
    color: var(--light);
}

.hero-right {
    position: relative;
}

.hero-card {
    position: relative;
    border-radius: 24px;
    padding: 1.6rem 1.5rem;
    background: radial-gradient(circle at top, #2a2a2a, #111111);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.9),
            0 0 40px rgba(229, 9, 20, 0.18);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(229, 9, 20, 0.22), transparent 58%),
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.06), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-card-inner {
    position: relative;
    z-index: 1;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.hero-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    text-align: center;
}

.hero-card-pill {
    padding: 0.6rem 0.7rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
}

.hero-pill-link {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-decoration: none;
    margin-top: 0.2rem;
    transition: color 0.2s ease;
}

.hero-pill-link:hover {
    color: var(--primary-red);
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.hero-stat {
    padding: 0.6rem 0.7rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
}

.hero-stat-value {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.hero-stat-value span.small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--muted);
    margin-left: 0.2rem;
}

.hero-tire {
    position: relative;
    margin-top: 0.8rem;
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(circle at top, #2b2b2b, #050505);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
}

.hero-tire-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 26px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
    background: conic-gradient(from 180deg, #111 0deg, #333 120deg, #111 240deg, #333 360deg);
    position: relative;
}

.hero-tire-badge::after {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.25);
}

.hero-tire-text {
    font-size: 0.8rem;
}

.hero-tire-text strong {
    display: block;
    margin-bottom: 0.15rem;
}

.hero-tire-text span {
    color: var(--muted);
    font-size: 0.75rem;
}

.hero-card-strip {
    margin-top: 0.8rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.hero-card-strip span {
    color: var(--muted);
}

.hero-card-strip strong {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-shadow {
    position: absolute;
    inset: 12% -10% -40%;
    background: radial-gradient(circle at top, rgba(229, 9, 20, 0.35), transparent 65%);
    opacity: 0.7;
    pointer-events: none;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 2rem;
}

.hero-logo-badge {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-logo {
    width: clamp(220px, 60vw, 500px);
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
}

/* Section Headings */
section {
    padding: 4rem 0;
}

.section-block {
    position: relative;
    padding: 4rem 0;
    background: var(--section-bg, rgba(5, 5, 5, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.section-block::before,
.section-block::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    opacity: 0.3;
}

.section-block::before {
    top: 0;
}

.section-block::after {
    bottom: 0;
    opacity: 0.15;
}

.section-block > .container {
    position: relative;
    z-index: 1;
}

.section-tone-deep {
    --section-bg: linear-gradient(180deg, rgba(5, 5, 5, 0.95), rgba(2, 2, 2, 0.95));
}

.section-tone-slate {
    --section-bg: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(5, 5, 5, 0.92));
}

.section-tone-ember {
    --section-bg: linear-gradient(180deg, rgba(20, 2, 2, 0.95), rgba(7, 0, 0, 0.9));
}

.section-tone-carbon {
    --section-bg: linear-gradient(180deg, rgba(4, 4, 4, 0.96), rgba(0, 0, 0, 0.94));
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 2rem;
}

.section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 420px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 1.6rem 1.4rem;
    border-radius: 18px;
    background: radial-gradient(circle at top, #252525, #101010);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(229, 9, 20, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.75);
    border-color: rgba(229, 9, 20, 0.55);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.service-text {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.service-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* USP / Highlight */
.usp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.usp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.usp-pill {
    font-size: 0.72rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.usp-headline {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.usp-text {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
}

.usp-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.usp-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.usp-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.usp-bullet-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-red);
}

.usp-metrics {
    display: flex;
    gap: 1rem;
}

.usp-metric {
    flex: 1; /* sorgt dafür, dass alle gleich breit werden */
}


.usp-metric strong {
    display: block;
    font-size: 1.2rem;
}

.usp-metric span {
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
}

.usp-visual {
    display: flex;
}

.usp-panel {
    width: 100%;
    border-radius: 22px;
    padding: 1.4rem 1.3rem;
    background: radial-gradient(circle at top, #262626, #060606);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.9);
}

.usp-panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.usp-panel-label {
    font-size: 0.78rem;
    color: var(--muted);
}

.usp-panel-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.usp-panel-row,
.usp-panel-footer {
    flex-wrap: wrap;
}


.opening-hours {
    padding: 3.5rem 0;
}

.opening-hours-card {
    border-radius: 22px;
    padding: 1.8rem 1.6rem;
    background: radial-gradient(circle at top, #262626, #050505);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.9);
}

.opening-hours-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.4rem;
    font-size: 0.85rem;
}

.opening-hours-item {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.opening-hours-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.opening-hours-item .day {
    font-weight: 600;
    letter-spacing: 0.04em;
}

.opening-hours-item .time {
    color: var(--muted);
    text-align: right;
}

.opening-hours-note {
    margin-top: 1.4rem;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 3.5rem 0;
}

.testimonial-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.testimonial-card {
    border-radius: 16px;
    padding: 1rem 1rem 1.1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
}

.testimonial-rating {
    color: #ffd95a;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.testimonial-text {
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.testimonial-name {
    font-weight: 500;
    font-size: 0.83rem;
}

.testimonial-meta {
    font-size: 0.72rem;
    color: var(--muted);
}

/* Contact / CTA */
.cta-section {
    padding: 3.5rem 0 4rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: center;
}

.cta-box {
    border-radius: 22px;
    padding: 1.8rem 1.6rem;
    background: radial-gradient(circle at top, #262626, #050505);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.9);
}

.cta-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.cta-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    font-size: 0.85rem;
}

.cta-data-block span {
    display: block;
}

.cta-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.cta-value {
    font-weight: 500;
}

.cta-highlight {
    color: var(--primary-red);
    font-weight: 600;
}

.cta-form-box {
    border-radius: 22px;
    padding: 1.6rem 1.5rem 1.8rem;
    background: radial-gradient(circle at top, #111111, #020202);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: flex;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.form-group input[type="date"] {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
}


.form-row .form-group {
    flex: 1 1 100%;
    min-width: 0;
    overflow: hidden;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

input,
textarea,
select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.55rem 0.9rem;
    color: var(--light);
    font-family: inherit;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 90px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(229, 9, 20, 0.8);
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.6);
    background: rgba(0, 0, 0, 0.9);
}

::placeholder {
    color: rgba(158, 158, 158, 0.8);
}

.form-note {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 0 1.8rem;
    background: #050505;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-copy strong {
    color: var(--light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.9rem 1.2rem;
    display: none; /* standard: versteckt, JS zeigt es nur, wenn nötig */
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.cookie-banner-text p {
    margin: 0.25rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.cookie-banner-text a {
    color: var(--primary-red);
    text-decoration: underline;
}

.cookie-banner-actions {
    flex-shrink: 0;
}

.btn-cookie {
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
}


/* Responsive */
@media (max-width: 960px) {
    .hero-grid,
    .usp-grid,
    .cta-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-right {
        order: -1;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-mobile-open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: rgba(0, 0, 0, 0.98);
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        padding: 1rem 1.5rem 1.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        gap: 0.8rem;
    }

    .nav-mobile-open .nav-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 0.8rem;
        gap: 0.8rem;
    }

    .nav-mobile-open .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-mobile-open .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        flex: unset;
        width: 100%;
    }

    .nav-bar {
        background-color: #000000!important;
        position: relative;
    }
}

@media (max-width: 640px) {
    .page-wrapper {
        padding-top: 86px;
    }
    .page-wrapper {
        padding-top: 86px;
    }
    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-data {
        grid-template-columns: minmax(0, 1fr);
    }

    .testimonial-strip {
        grid-template-columns: minmax(0, 1fr);
    }

    .usp-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        width: 100%;
        max-width: 420px; 
    }

    .hero-logo-wrap {
        margin-bottom: 1.4rem;
    }

    .usp-panel-row,
    .usp-panel-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .usp-metrics {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .usp-metric {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    
    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        width: 100%;
    }

    .opening-hours-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}
