/* =========================================================
   EDOK-Performance – Design System
   Marken-Farben: Schwarz #000 · Weiß #FFF · Rot #CC0000
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    /* Marke */
    --red: #cc0000;
    --red-bright: #ff1a1a;
    --red-dark: #990000;
    --white: #ffffff;
    --black: #000000;

    /* Dark-Theme Flächen */
    --bg: #0a0a0b;
    --bg-elev: #131316;
    --bg-card: #17171b;
    --bg-card-hover: #1d1d22;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);

    /* Text */
    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;

    /* Akzent-Verläufe */
    --grad-red: linear-gradient(135deg, #ff1a1a 0%, #cc0000 55%, #990000 100%);
    --grad-dark: linear-gradient(180deg, #131316 0%, #0a0a0b 100%);

    /* Maße */
    --container: 1200px;
    --radius: 14px;
    --radius-lg: 22px;
    --header-h: 76px;
    --admin-bar-h: 0px;

    /* Effekte */
    --shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.8);
    --shadow-red: 0 18px 40px -16px rgba(204, 0, 0, 0.55);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Fonts */
    --font-head: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--admin-bar-h));
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* ---------- Layout-Helfer ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.section {
    padding-block: clamp(64px, 9vw, 120px);
    position: relative;
}

.section--alt {
    background: var(--grad-dark);
    border-block: 1px solid var(--border);
}

.section-head {
    max-width: 720px;
    margin: 0 auto clamp(40px, 6vw, 64px);
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: var(--red-bright);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--grad-red);
}

.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.section-title span {
    color: var(--red);
}

.section-sub {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ---------- Logo-Bild ---------- */
.brand__logo {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05);
    display: block;
}

/* ---------- Service-Card Bild ---------- */
.service__img {
    width: calc(100% + 60px);
    margin: -34px -30px 22px;
    height: 170px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: block;
    position: relative;
    z-index: 0;
}

/* ---------- Hero-Foto ---------- */
.hero__photo {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow), 0 0 60px -20px rgba(204, 0, 0, 0.4);
    aspect-ratio: 4 / 3;
}

/* ---------- Prüfstand-Foto ---------- */
.dyno__photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 340px;
    margin-top: 28px;
}

/* ---------- Über-uns-Foto ---------- */
.about__photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 320px;
    margin-top: 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition),
        background var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: var(--grad-red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -14px rgba(204, 0, 0, 0.7);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--border-strong);
}

.btn--ghost:hover {
    border-color: var(--red);
    background: rgba(204, 0, 0, 0.08);
    transform: translateY(-3px);
}

.btn--sm {
    padding: 11px 20px;
    font-size: 0.82rem;
}

/* ---------- Header / Navigation ---------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition),
        border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.has-admin-bar {
    --admin-bar-h: 38px;
}

.has-admin-bar .header {
    top: var(--admin-bar-h);
}

.header.is-scrolled {
    background: rgba(10, 10, 11, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

/* Logo (textbasiert + roter Akzent) */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--grad-red);
    box-shadow: var(--shadow-red);
    font-size: 1.15rem;
    font-weight: 700;
}

.brand strong {
    color: var(--red);
    font-weight: 700;
}

.brand small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 2px;
}

.brand__text {
    font-family: var(--font-head);
    font-size: clamp(1.15rem, 1.55vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    line-height: 1;
}

.brand__text--red {
    color: var(--red);
}

.brand__text--white {
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 1;
    min-width: 0;
}

.nav__link {
    position: relative;
    font-weight: 500;
    font-size: clamp(0.82rem, 0.82vw, 0.95rem);
    letter-spacing: 0.01em;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color var(--transition);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
    transform: scaleX(1);
}

/* Burger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    margin-inline: auto;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + var(--admin-bar-h));
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 78% -5%, rgba(204, 0, 0, 0.22), transparent 60%),
        radial-gradient(900px 500px at 12% 110%, rgba(204, 0, 0, 0.12), transparent 55%),
        var(--bg);
}

main.has-notice .hero {
    padding-top: calc(var(--header-h) + var(--admin-bar-h) + 38px);
}

/* Renn-Streifen im Hintergrund */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        115deg,
        transparent 0 38px,
        rgba(255, 255, 255, 0.015) 38px 39px
    );
    pointer-events: none;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.hero__content {
    max-width: 640px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.hero__badge b {
    color: var(--white);
}

.hero__title {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.98;
    letter-spacing: 0.005em;
    font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.hero__title span {
    color: var(--red);
    display: block;
}

.hero__text {
    margin-top: 24px;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 54px;
    padding-top: 34px;
    border-top: 1px solid var(--border);
}

.hero__stat b {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--white);
}

.hero__stat b i {
    color: var(--red);
    font-style: normal;
}

.hero__stat span {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Hero-Grafik (Tacho) */
.hero__visual {
    position: relative;
    display: grid;
    place-items: center;
}

.gauge {
    position: relative;
    width: min(400px, 78vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        conic-gradient(from 135deg, var(--red) 0deg, var(--red-bright) 90deg, transparent 260deg 360deg),
        radial-gradient(circle at center, var(--bg-elev) 0 58%, transparent 59%);
    display: grid;
    place-items: center;
    animation: spin-slow 18s linear infinite;
    filter: drop-shadow(0 30px 60px rgba(204, 0, 0, 0.35));
}

.gauge::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
}

.gauge__core {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: spin-slow 18s linear infinite reverse;
}

.gauge__core b {
    display: block;
    font-family: var(--font-head);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.gauge__core b i {
    color: var(--red);
    font-style: normal;
}

.gauge__core span {
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-dim);
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Fakten / USP ---------- */
.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fact {
    padding: 34px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), border-color var(--transition);
}

.fact:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 0, 0, 0.5);
}

.fact__num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--red);
    line-height: 1;
}

.fact h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 12px 0 8px;
    font-size: 1.25rem;
}

.fact p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* ---------- Leistungen ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-wide-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.news-wide-item {
    width: 100%;
    padding: 28px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.news-wide-date {
    color: var(--red-bright);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-wide-item h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.news-wide-item p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.service {
    position: relative;
    padding: 34px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition),
        background var(--transition);
}

.service::after {
    content: "";
    position: absolute;
    inset: auto -40% -60% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(204, 0, 0, 0.55);
}

.service:hover::after {
    opacity: 1;
}

.service__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(204, 0, 0, 0.12);
    border: 1px solid rgba(204, 0, 0, 0.3);
    color: var(--red-bright);
    margin-bottom: 22px;
}

.service__icon svg {
    width: 28px;
    height: 28px;
}

.service h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.service__tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* ---------- Prüfstand / Preise ---------- */
.dyno {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.dyno__intro h2 {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 1.05;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 20px;
}

.dyno__intro h2 span {
    color: var(--red);
}

.dyno__intro p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.dyno__list {
    display: grid;
    gap: 12px;
    margin: 24px 0 32px;
}

.dyno__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.dyno__list svg {
    width: 20px;
    height: 20px;
    color: var(--red);
    flex-shrink: 0;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow);
}

.price-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 12px;
}

.price-card__head h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.2rem;
}

.price-card__head span {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-radius: 12px;
    transition: background var(--transition);
}

.price-row + .price-row {
    border-top: 1px solid var(--border);
}

.price-row:hover {
    background: rgba(204, 0, 0, 0.08);
}

.price-row__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.price-row__label i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.05);
    font-family: var(--font-head);
    font-style: normal;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-row__value {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.price-row__value small {
    color: var(--red);
}

.price-card__foot {
    padding: 16px 22px 20px;
    color: var(--text-dim);
    font-size: 0.85rem;
    text-align: center;
}

/* ---------- Prüfstand Banner ---------- */
.section-banner-wrap {
    padding-block: 0 clamp(40px, 5vw, 64px);
}

.section-banner-img {
    width: 100%;
    height: clamp(200px, 30vw, 480px);
    object-fit: cover;
    object-position: center 40%;
    display: block;
    border-radius: var(--radius-lg);
}

/* ---------- Über uns / Timeline ---------- */
.about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.about__lead {
    position: sticky;
    top: calc(var(--header-h) + var(--admin-bar-h) + 24px);
}

.about__lead p {
    color: var(--text-muted);
    margin-top: 18px;
}

.about__lead .btn {
    margin-top: 28px;
}

.timeline {
    position: relative;
    padding-left: 34px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--red), transparent);
}

.tl-item {
    position: relative;
    padding-bottom: 30px;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-item::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--red);
}

.tl-item b {
    font-family: var(--font-head);
    font-size: 1.35rem;
    color: var(--red);
    letter-spacing: 0.05em;
}

.tl-item p {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 0.98rem;
}

/* ---------- Kontakt ---------- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.contact__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact__card--accent {
    background:
        radial-gradient(600px 300px at 100% 0%, rgba(204, 0, 0, 0.22), transparent 60%),
        var(--bg-card);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
}

.contact-item + .contact-item {
    border-top: 1px solid var(--border);
}

.contact-item__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(204, 0, 0, 0.12);
    border: 1px solid rgba(204, 0, 0, 0.3);
    color: var(--red-bright);
    flex-shrink: 0;
}

.contact-item__icon svg {
    width: 22px;
    height: 22px;
}

.contact-item span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--red-bright);
}

.contact__card--accent h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.contact__card--accent p {
    color: var(--text-muted);
    margin-bottom: 26px;
}

.contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hours {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hours span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
}

.hours p {
    color: var(--text);
    margin-top: 6px;
}

/* ---------- CTA-Band ---------- */
.cta-band {
    position: relative;
    background: var(--grad-red);
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        115deg,
        transparent 0 44px,
        rgba(0, 0, 0, 0.06) 44px 45px
    );
}

.cta-band__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding-block: 54px;
}

.cta-band h2 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.05;
    color: var(--white);
    max-width: 640px;
}

.cta-band .btn {
    background: var(--black);
    color: var(--white);
}

.cta-band .btn:hover {
    background: #111;
    transform: translateY(-3px);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding-block: 60px 28px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer__brand p {
    color: var(--text-muted);
    margin-top: 18px;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--white);
}

.footer__links li {
    margin-bottom: 11px;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--red-bright);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 26px;
    color: var(--text-dim);
    font-size: 0.86rem;
}

.footer__bottom a {
    color: var(--text-dim);
}

.footer__bottom a:hover {
    color: var(--red-bright);
}

/* ---------- Rechts-Seiten (Impressum etc.) ---------- */
.legal {
    padding-top: calc(var(--header-h) + var(--admin-bar-h) + 60px);
    padding-bottom: 90px;
    min-height: 100vh;
}

.legal__head {
    margin-bottom: 40px;
}

.legal__head h1 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.legal__head h1 span {
    color: var(--red);
}

.legal__body {
    max-width: 820px;
}

.legal__body h2 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.4rem;
    margin: 34px 0 12px;
    color: var(--white);
}

.legal__body h3 {
    font-size: 1.1rem;
    margin: 24px 0 8px;
    color: var(--white);
}

.legal__body p,
.legal__body li {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal__body ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal__body address {
    font-style: normal;
    color: var(--text);
    line-height: 1.9;
}

.legal__body a {
    color: var(--red-bright);
}

.notice {
    background: rgba(204, 0, 0, 0.08);
    border: 1px solid rgba(204, 0, 0, 0.35);
    border-radius: var(--radius);
    padding: 18px 22px;
    color: var(--text);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

/* ---------- Nav Button-Gruppe ---------- */
.nav__btns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ---------- Sprachumschalter ---------- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: background .15s, border-color .15s, color .15s;
    line-height: 1;
}

.lang-btn svg {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
}

.lang-btn:hover {
    background: var(--surface2);
    color: var(--text);
    border-color: var(--border);
}

.lang-btn.is-active {
    background: var(--surface2);
    border-color: var(--border);
    color: var(--text);
}

@media (max-width: 760px) {
    .lang-switcher {
        width: 100%;
        justify-content: center;
    }
    .lang-btn {
        flex: 1;
        justify-content: center;
        padding: 8px;
    }
}

@media (max-width: 760px) {
    .nav__btns {
        flex-direction: column;
        width: calc(100% - 48px);
        margin: 12px 24px 0;
    }
    .nav__btns .btn {
        width: 100%;
    }
}

/* ---------- Admin-Bereich ---------- */
.admin-wrap {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

.admin-login {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-login__card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
}

.admin-login__card .brand {
    justify-content: center;
    margin-bottom: 32px;
}

.admin-login__card h1 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 28px;
}

.admin-login__card h1 span { color: var(--red); }

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--red);
}

.form-error {
    background: rgba(204,0,0,0.12);
    border: 1px solid rgba(204,0,0,0.4);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--red-bright);
    font-size: 0.92rem;
    margin-bottom: 18px;
    text-align: center;
}

.admin-header {
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(10,10,11,0.95);
    border-bottom: 1px solid var(--border);
    padding-inline: 28px;
    gap: 24px;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}


.admin-main {
    flex: 1;
    padding: 40px 28px;
    max-width: 1100px;
    margin-inline: auto;
    width: 100%;
}

.admin-main h2 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.6rem;
    margin-bottom: 28px;
}

.admin-main h2 span { color: var(--red); }

/* ---------- Admin Tabs ---------- */
.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.admin-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
    margin-bottom: -1px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.admin-tab-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.04);
}

.admin-tab-btn.is-active {
    color: var(--white);
    border-bottom-color: var(--red);
}

.admin-tab-btn.is-active svg {
    color: var(--red);
}

.admin-tab-panel {
    display: none;
}

.admin-tab-panel.is-active {
    display: block;
}

.admin-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 0 20px 0;
}

.admin-subnav-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    transition: background .15s, color .15s, border-color .15s;
}

.admin-subnav-btn:hover {
    background: var(--surface2);
    color: var(--text);
}

.admin-subnav-btn.is-active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.admin-subpanel {
    display: none;
}

.admin-subpanel.is-active {
    display: block;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.admin-card h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-card h3 svg { color: var(--red); }

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.toggle-row span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.toggle {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle__track {
    position: absolute;
    inset: 0;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

.toggle__track::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: transform var(--transition), background var(--transition);
}

.toggle input:checked + .toggle__track {
    background: var(--red);
    border-color: var(--red);
}

.toggle input:checked + .toggle__track::after {
    transform: translate(24px, -50%);
    background: var(--white);
}

.admin-card textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.97rem;
    resize: vertical;
    min-height: 80px;
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 14px;
}

.admin-card textarea:focus,
.admin-card input:focus {
    border-color: var(--red);
}

.admin-card input[type="text"],
.admin-card input[type="tel"],
.admin-card input[type="email"] {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.97rem;
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 12px;
}

.admin-card label.field-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 6px;
}

/* ---------- Admin-Card volle Breite ---------- */
.admin-card--full {
    grid-column: 1 / -1;
}

/* ---------- Upload-Grid ---------- */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.upload-slot {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-slot__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.upload-slot__preview {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-elev);
    position: relative;
    cursor: pointer;
}

.upload-slot__preview:hover .upload-slot__overlay {
    opacity: 1;
}

.upload-slot__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: var(--radius);
}

.upload-slot__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.upload-slot__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    text-align: center;
}

.upload-slot__btn:hover {
    border-color: var(--red);
    background: rgba(204,0,0,0.08);
    color: var(--white);
}

.upload-slot__btn input[type="file"] {
    display: none;
}

.upload-slot__ok {
    display: none;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ---------- Galerie-Modal ---------- */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-modal__box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.gallery-modal__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color var(--transition);
}

.gallery-modal__close:hover { color: var(--white); }

.gallery-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    padding: 20px;
    overflow-y: auto;
}

.gallery-item {
    cursor: pointer;
    border-radius: var(--radius);
    border: 2px solid transparent;
    overflow: hidden;
    background: var(--bg-elev);
    transition: border-color var(--transition), transform var(--transition);
}

.gallery-item:hover {
    border-color: var(--red);
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.gallery-item span {
    display: block;
    padding: 6px 8px;
    font-size: 0.72rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.save-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.save-ok {
    color: #22c55e;
    font-size: 0.9rem;
    display: none;
}

.maintenance-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}

.maintenance-overlay h1 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(2rem, 6vw, 4rem);
    margin: 24px 0 16px;
}

.maintenance-overlay h1 span { color: var(--red); }
.maintenance-overlay p { color: var(--text-muted); max-width: 480px; font-size: 1.1rem; }

/* ---------- Admin-Bar (nur für eingeloggte Admins) ---------- */
.admin-bar {
    background: #1a0a00;
    border-bottom: 2px solid var(--red);
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 1100;
    gap: 16px;
}

.admin-bar__actions {
    display: flex;
    gap: 16px;
}

.admin-bar__actions a {
    color: var(--red-bright);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.admin-bar__actions a:hover {
    color: var(--white);
}

.absence-banner {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(180, 0, 0, 0.93);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 8px 24px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--white);
    line-height: 1.5;
}

.absence-banner__sep {
    opacity: 0.45;
    font-weight: 400;
}

.absence-banner__de {
    display: block;
}

.absence-banner__en {
    display: block;
    opacity: 0.78;
    font-style: italic;
    font-size: 0.84rem;
    margin-top: 3px;
}

.has-admin-bar .absence-banner {
    top: calc(var(--header-h) + var(--admin-bar-h));
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal[data-delay="1"] {
    transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
    transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
    transition-delay: 0.24s;
}

/* ---------- Zurück-nach-oben ---------- */
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--grad-red);
    color: var(--white);
    box-shadow: var(--shadow-red);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 900;
}

.to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__visual {
        order: -1;
    }

    .gauge {
        width: min(300px, 62vw);
    }

    .dyno,
    .about,
    .contact {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about__lead {
        position: static;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .nav {
        position: fixed;
        inset: calc(var(--header-h) + var(--admin-bar-h)) 0 auto 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 11, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 10px 0 22px;
        transform: translateY(-140%);
        transition: transform var(--transition);
        max-height: calc(100vh - var(--header-h) - var(--admin-bar-h));
        overflow-y: auto;
    }

    .nav.is-open {
        transform: none;
    }

    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav__list li {
        width: 100%;
        text-align: center;
    }

    .nav__link {
        display: block;
        padding: 15px 24px;
        width: 100%;
    }

    .nav__link::after {
        display: none;
    }

    .nav .btn {
        margin: 12px 24px 0;
        width: calc(100% - 48px);
    }

    .nav-toggle {
        display: flex;
    }

    .cta-band__inner {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .services,
    .facts,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        gap: 24px;
    }

    .contact__card {
        padding: 28px 24px;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   Cookie-Consent-Popup
   ========================================================= */
.cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner.is-hidden {
    display: none;
}

body.cookie-consent-locked {
    overflow: hidden;
}

.cookie-banner__box {
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.04);
    padding: 36px 40px;
    max-width: 520px;
    width: 100%;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible .cookie-banner__box {
    transform: translateY(0) scale(1);
}

.cookie-banner__icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.cookie-banner__title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cookie-banner__title span {
    color: var(--red);
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
}

.cookie-banner__text strong {
    color: var(--text);
    font-weight: 600;
}

.cookie-banner__text a {
    color: var(--red-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__text a:hover {
    color: var(--red);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 11px 26px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-banner__btn--accept {
    background: var(--grad-red);
    color: #fff;
    box-shadow: var(--shadow-red);
    flex: 1;
}

.cookie-banner__btn--accept:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.cookie-banner__btn--info {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
}

.cookie-banner__btn--info:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

.cookie-reopen-btn {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(10,10,11,.92);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 12px 28px rgba(0,0,0,.45);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.cookie-reopen-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.38);
    background: rgba(24,24,27,.96);
}

.cookie-reopen-btn__icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
}

.cookie-reopen-btn__icon path {
    fill: none;
}

@media (max-width: 540px) { 
    .cookie-reopen-btn {
        width: 46px;
        height: 46px;
        left: 12px;
        bottom: 12px;
    }
}

@media (max-width: 540px) {
    .cookie-banner__box {
        padding: 28px 22px;
    }
    .cookie-banner__actions {
        flex-direction: column;
    }
    .cookie-banner__btn {
        width: 100%;
    }
}
