:root {
    --bg: #050608;
    --bg-soft: #0d1118;
    --panel: rgba(15, 18, 25, .78);
    --panel-solid: #111722;
    --text: #f4f7fb;
    --muted: #aab4c4;
    --line: rgba(255, 255, 255, .12);
    --accent: #d63c33;
    --accent-2: #f1bd73;
    --shadow: 0 30px 80px rgba(0, 0, 0, .38);
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 50% 0%, rgba(214, 60, 51, .10), transparent 34%), var(--bg);
    line-height: 1.6;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: .06;
    background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
    background-size: 42px 42px;
    mix-blend-mode: overlay;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 200;
}
.skip-link:focus { top: 16px; }
.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}
.narrow { max-width: 860px; }
.section-padding { padding: 110px 0; }
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 18px clamp(18px, 4vw, 54px);
    transition: background .25s ease, border-color .25s ease, padding .25s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    background: rgba(5, 6, 8, .84);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--line);
    padding-top: 10px;
    padding-bottom: 10px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .2em;
    line-height: 1.2;
    margin-right: auto;
}
.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: contain;
}
.brand strong { color: var(--accent-2); }
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: rgba(255,255,255,.78);
}
.main-nav a:hover { color: #fff; }
.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 750;
    letter-spacing: .01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.header-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #8f211c);
    color: #fff;
    box-shadow: 0 12px 34px rgba(214, 60, 51, .24);
}
.btn-secondary {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
}
.header-cta:hover,
.btn:hover { transform: translateY(-2px); }
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 140px 0 70px;
}
.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}
.hero-bg {
    background-image: url('../img/decode-hero.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(.86) contrast(1.06);
}
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5,6,8,.92) 0%, rgba(5,6,8,.56) 48%, rgba(5,6,8,.36) 100%),
        linear-gradient(0deg, #050608 0%, rgba(5,6,8,.10) 38%, rgba(5,6,8,.20) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    transform: translateX(-10vw);
}
.eyebrow,
.section-kicker {
    margin: 0 0 16px;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
    font-weight: 850;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    max-width: 880px;
    margin-bottom: 22px;
    font-size: clamp(44px, 8vw, 108px);
    line-height: .93;
    letter-spacing: -.07em;
}
h2 {
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.045em;
    margin-bottom: 24px;
}
h3 {
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}
.hero-lead {
    max-width: 720px;
    font-size: clamp(19px, 2vw, 25px);
    color: rgba(255,255,255,.84);
}
.hero-actions,
.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
.hero-facts { margin-top: 28px; }
.hero-facts span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(5,6,8,.35);
    color: rgba(255,255,255,.76);
    font-size: 14px;
}
.scroll-note {
    position: absolute;
    right: 36px;
    bottom: 42px;
    z-index: 2;
    color: rgba(255,255,255,.56);
    writing-mode: vertical-rl;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-size: 11px;
}
.intro { background: linear-gradient(180deg, #050608, #080b10); }
.intro p,
.content-card p,
.takeaways p,
.contact-copy p {
    color: var(--muted);
    font-size: 18px;
}
.quote-band {
    padding: 86px 0;
    background: #080a0d;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.quote-band blockquote {
    margin: 0;
    font-size: clamp(32px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -.055em;
    max-width: 1050px;
}
.quote-band span { color: var(--accent); }
.split-grid,
.contact-grid,
.two-col,
.cta-box,
.footer-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}
.image-card,
.content-card,
.cta-box,
.contact-form,
.info-card {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}
.image-card {
    border-radius: 34px;
    overflow: hidden;
}

.brand img,
.cta-box img {
    flex: 0 0 auto;
    object-fit: contain;
}
.image-card {
    aspect-ratio: 4 / 5;
}
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cta-box img {
    width: 180px;
    height: 180px;
    padding: 10px;
    background: rgba(255,255,255,.03);
}
.content-card { padding: clamp(28px, 5vw, 56px); border-radius: 34px; }
.check-list {
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
    display: grid;
    gap: 14px;
}
.check-list li {
    position: relative;
    padding-left: 32px;
    color: rgba(255,255,255,.86);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(214,60,51,.16);
}
.dark-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(214,60,51,.16), transparent 34%),
        linear-gradient(180deg, #080b10, #050608);
}
.section-head { max-width: 920px; margin-bottom: 48px; }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.info-card {
    min-height: 285px;
    padding: 28px;
    border-radius: 28px;
}
.info-card span {
    display: inline-flex;
    margin-bottom: 56px;
    color: var(--accent-2);
    font-weight: 900;
    letter-spacing: .18em;
}
.info-card p { color: var(--muted); margin-bottom: 0; }
.takeaway-list {
    display: grid;
    gap: 12px;
}
.takeaway-list div {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.86);
}
.cta-section { padding-top: 40px; }
.cta-box {
    grid-template-columns: 180px 1fr;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 20% 30%, rgba(214,60,51,.18), transparent 36%),
        var(--panel-solid);
}
.cta-box img { border-radius: 50%; }
.contact { background: #080b10; }
.contact-grid { align-items: start; }

.makers-card {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 20%, rgba(241,189,115,.12), transparent 34%),
        rgba(255,255,255,.045);
}
.makers-kicker {
    margin: 0 0 18px;
    color: var(--accent-2) !important;
    font-size: 12px !important;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.makers-list {
    display: grid;
    gap: 14px;
}
.makers-list strong {
    display: block;
    color: #fff;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.05;
    letter-spacing: -.035em;
}
.makers-list span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.76);
    font-weight: 750;
}
.makers-and {
    color: var(--accent-2);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.makers-note {
    margin: 18px 0 0 !important;
    color: rgba(255,255,255,.88) !important;
    font-weight: 750;
}

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 30px;
    color: rgba(255,255,255,.82);
}
.contact-details a:hover { color: var(--accent-2); }
.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 30px;
}
.contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(255,255,255,.82);
    font-weight: 700;
    font-size: 14px;
}
.contact-form .full,
.form-message,
.privacy-note { grid-column: 1 / -1; }
input, textarea, select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.075);
    color: #fff;
    padding: 13px 14px;
    font: inherit;
    outline: none;
}
select option { color: #111; }
input:focus, textarea:focus, select:focus {
    border-color: rgba(241,189,115,.72);
    box-shadow: 0 0 0 4px rgba(241,189,115,.12);
}
textarea { resize: vertical; }
.privacy-note {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}
.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-message {
    padding: 13px 15px;
    border-radius: 16px;
    border: 1px solid var(--line);
    font-weight: 700;
}
.form-message.success { background: rgba(59, 180, 112, .14); color: #dfffe9; }
.form-message.warning { background: rgba(241,189,115,.14); color: #fff2d8; }
.form-message.error { background: rgba(214,60,51,.18); color: #ffe0de; }
.site-footer {
    border-top: 1px solid var(--line);
    padding: 36px 0;
    color: rgba(255,255,255,.68);
    background: #050608;
    font-size: 14px;
}
.footer-grid { align-items: start; }
.footer-grid > div:last-child { text-align: right; }
.footer-grid a:hover { color: #fff; }
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 980px) {
    .main-nav { display: none; }
    .hero-content { transform: none; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid,
    .contact-grid,
    .two-col,
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:last-child { text-align: left; }
}
@media (max-width: 680px) {
    .container { width: min(100% - 28px, var(--max)); }
    .image-card { aspect-ratio: 4 / 3; }
    .section-padding { padding: 74px 0; }
    .site-header { gap: 12px; padding: 12px 14px; }
    .brand span { display: none; }
    .brand img { width: 48px; height: 48px; }
    .header-cta { padding: 10px 13px; min-height: 42px; font-size: 13px; }
    .hero { padding: 110px 0 50px; align-items: center; }
    .hero-overlay { background: linear-gradient(90deg, rgba(5,6,8,.92), rgba(5,6,8,.62)), linear-gradient(0deg, #050608 0%, transparent 54%); }
    h1 { font-size: clamp(42px, 14vw, 74px); }
    h2 { font-size: clamp(31px, 10vw, 46px); }
    .scroll-note { display: none; }
    .cards-grid { grid-template-columns: 1fr; }
    .info-card { min-height: auto; }
    .info-card span { margin-bottom: 28px; }
    .cta-box { grid-template-columns: 1fr; }
    .cta-box img { width: 128px; height: 128px; }
    .contact-form { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Ergänzungen 12.05.2026: SEO-Struktur, Nutzenbereich und FAQ */
.benefits {
    background:
        radial-gradient(circle at 78% 10%, rgba(241,189,115,.12), transparent 32%),
        linear-gradient(180deg, #050608, #080b10);
}
.benefits-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}
.benefit-panel {
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: clamp(28px, 5vw, 56px);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}
.benefit-panel p,
.section-head p {
    color: var(--muted);
    font-size: 18px;
}
.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.benefit-list div {
    min-height: 112px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    color: rgba(255,255,255,.88);
    font-weight: 750;
}
.faq {
    background: #080b10;
    border-top: 1px solid var(--line);
}
.faq-list {
    display: grid;
    gap: 14px;
}
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    overflow: hidden;
}
.faq-list summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 850;
    color: #fff;
}
.faq-list p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 17px;
}
@media (max-width: 980px) {
    .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .benefit-list { grid-template-columns: 1fr; }
    .benefit-list div { min-height: auto; }
}

/* Version 10: Datenschutzseite und Klaro-Links */
.legal-page { padding-top: 80px; background: #080b10; }
.legal-page .content-card h1 { font-size: clamp(38px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; margin-bottom: 24px; }
.legal-page .content-card h2 { font-size: clamp(24px, 3vw, 36px); margin-top: 38px; margin-bottom: 12px; }
.legal-page .content-card a, .privacy-note a, .site-footer a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.privacy-note a { font-weight: 800; }
#klaro .cm-btn, #klaro .cn-buttons button { border-radius: 999px !important; }


/* Version 12: Bedienhilfen und Barrierefreiheits-Feinschliff */
.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    transform: translateY(-140%);
    background: #fff;
    color: #000;
    padding: 12px 16px;
    border-radius: 999px;
    z-index: 1000;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    font-weight: 850;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
    outline: 3px solid var(--accent-2);
    outline-offset: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent-2);
    outline-offset: 2px;
}
.a11y-floating-button {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(5,6,8,.86);
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 18px 48px rgba(0,0,0,.42);
    backdrop-filter: blur(14px);
}
.a11y-floating-button:hover { background: rgba(214,60,51,.92); }
.a11y-panel {
    position: fixed;
    right: 18px;
    bottom: 78px;
    z-index: 90;
    width: min(390px, calc(100vw - 32px));
    display: none;
}
.a11y-panel.is-open { display: block; }
.a11y-panel-inner {
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 26px;
    background: rgba(10,13,18,.96);
    color: #fff;
    padding: 22px;
    box-shadow: 0 28px 80px rgba(0,0,0,.55);
    backdrop-filter: blur(18px);
}
.a11y-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}
.a11y-panel h2 {
    font-size: 24px;
    margin: 0;
    letter-spacing: -.02em;
}
.a11y-panel p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 16px;
}
.a11y-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.a11y-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.a11y-actions button {
    min-height: 46px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}
.a11y-actions button:hover,
.a11y-actions button[aria-pressed="true"] {
    background: rgba(214,60,51,.82);
    border-color: rgba(255,255,255,.35);
}
.a11y-note { margin-top: 14px; margin-bottom: 0 !important; }
.a11y-note a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.a11y-reading-line {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: var(--accent-2);
    box-shadow: 0 0 0 9999px rgba(241,189,115,.055);
    z-index: 70;
    pointer-events: none;
    display: none;
}
html.dtd-reading-line-active .a11y-reading-line { display: block; }
html.dtd-font-lg body { font-size: 112.5%; }
html.dtd-font-xl body { font-size: 125%; }
html.dtd-reduce-motion *,
html.dtd-reduce-motion *::before,
html.dtd-reduce-motion *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}
html.dtd-reduce-motion .reveal { opacity: 1 !important; transform: none !important; }
html.dtd-contrast {
    --bg: #000;
    --bg-soft: #000;
    --panel: rgba(0,0,0,.96);
    --panel-solid: #000;
    --text: #fff;
    --muted: #f3f3f3;
    --line: rgba(255,255,255,.42);
    --accent: #ff4d42;
    --accent-2: #ffe08a;
}
html.dtd-contrast body,
html.dtd-contrast .dark-section,
html.dtd-contrast .contact,
html.dtd-contrast .faq,
html.dtd-contrast .legal-page { background: #000 !important; }
html.dtd-contrast .hero-bg { filter: grayscale(1) contrast(1.2) brightness(.55); }
html.dtd-contrast .btn-secondary,
html.dtd-contrast .info-card,
html.dtd-contrast .content-card,
html.dtd-contrast .contact-form,
html.dtd-contrast .benefit-panel,
html.dtd-contrast .takeaway-list div,
html.dtd-contrast .benefit-list div { background: #000 !important; border-color: rgba(255,255,255,.55) !important; }
@media (max-width: 680px) {
    .a11y-floating-button { right: 12px; bottom: 12px; padding: 10px 13px; font-size: 14px; }
    .a11y-panel { right: 12px; bottom: 64px; }
    .a11y-actions { grid-template-columns: 1fr; }
}

/* Version 14: Mobile Navigation & Kundenkorrekturen */
.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}
.mobile-nav-toggle-lines {
    width: 18px;
    display: grid;
    gap: 4px;
}
.mobile-nav-toggle-lines span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 78;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(4px);
}
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 79;
    width: min(390px, calc(100vw - 42px));
    transform: translateX(110%);
    transition: transform .25s ease;
    background: rgba(8, 11, 16, .98);
    border-left: 1px solid rgba(255,255,255,.16);
    box-shadow: -28px 0 80px rgba(0,0,0,.5);
    overflow-y: auto;
}
.mobile-nav-panel.is-open { transform: translateX(0); }
.mobile-nav-panel-inner {
    min-height: 100%;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px;
}
.mobile-nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}
.mobile-nav-panel-head strong {
    font-size: 22px;
    letter-spacing: -.02em;
}
.mobile-nav-panel-head button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}
.mobile-nav-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.055);
    color: #fff;
    font-weight: 800;
}
.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible {
    border-color: rgba(241,189,115,.7);
    background: rgba(241,189,115,.12);
}
.mobile-nav-panel .mobile-nav-cta {
    background: linear-gradient(135deg, var(--accent), #8f211c);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 14px 35px rgba(214,60,51,.22);
}
.mobile-nav-panel hr {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    margin: 10px 0;
}
body.mobile-nav-open { overflow: hidden; }
@media (max-width: 980px) {
    .site-header .header-cta { display: none; }
    .mobile-nav-toggle { display: inline-flex; }
}
@media (max-width: 680px) {
    .site-header { padding-right: 12px; }
    .mobile-nav-toggle-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .mobile-nav-toggle { width: 44px; padding: 0; }
    .mobile-nav-panel { width: min(360px, calc(100vw - 24px)); }
}
