:root {
    --bg: #050b14;
    --surface: #101827;
    --surface-2: #162133;
    --card: rgba(16, 24, 39, 0.9);
    --text: #eef3fb;
    --copy: #d6deea;
    --muted: #a9b4c7;
    --line: rgba(255,255,255,0.08);
    --primary: #7b0d10;
    --primary-2: #981116;
    --primary-soft: #b61e23;
    --shadow: 0 20px 48px rgba(0,0,0,0.28);
    --radius: 22px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable both-edges;
}

body {
    overflow-y: scroll;
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(133, 16, 18, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(161, 20, 24, 0.07), transparent 20%),
        linear-gradient(180deg, #040913 0%, #07101d 100%);
    color: var(--copy);
    line-height: 1.65;
}

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

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

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(820px, calc(100% - 2rem));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #07101d;
    border-bottom: 1px solid var(--line);
}

main {
    padding-top: 0;
}

.topbar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
    min-height: 108px;
    height: 108px;
    padding: 0.85rem 0;
    line-height: 1;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    height: 88px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    background: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    flex-wrap: nowrap;
}

.main-nav a {
    position: relative;
    padding: 0.8rem 1rem;
    border-radius: 0;
    color: #c5cedb;
    transition: color 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.2;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    background: transparent;
    box-shadow: none;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.15rem;
    height: 2px;
    border-radius: 999px;
    background: transparent;
}

.main-nav a.active::after {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.hero,
.page-hero {
    padding: 4.25rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.83rem;
    font-weight: 700;
}

h1, h2, h3 {
    margin: 0 0 1rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
}



h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    max-width: 10.5ch;
    margin-bottom: 1.25rem;
}

.page-hero h1 {
    max-width: 16ch;
}

.about-hero {
    padding-bottom: 2.5rem;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: end;
}

.about-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.8rem, 4.6vw, 4.4rem);
}

.about-hero-card {
    padding: 1.8rem;
}


.premium-about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.premium-about-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(2.9rem, 4.4vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.title-accent {
    color: #f2f5fb;
    position: relative;
}

.title-accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.12em;
    width: 100%;
    height: 0.18em;
    background: linear-gradient(90deg, rgba(123,13,16,0.0), rgba(123,13,16,0.88), rgba(123,13,16,0.0));
    border-radius: 999px;
    z-index: -1;
    filter: blur(0.5px);
}

.premium-lead {
    max-width: 58ch;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #c7d1df;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.about-premium-panel {
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(123,13,16,0.18), transparent 32%),
        linear-gradient(180deg, rgba(24, 36, 56, 0.96), rgba(11, 18, 31, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 24px 60px rgba(0,0,0,0.3);
}

.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.about-stat-item {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
}

.about-stat-item strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.about-stat-item span {
    display: block;
    color: #c6cfde;
    font-size: 0.98rem;
}

.panel-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.12), rgba(255,255,255,0));
    margin: 1.25rem 0;
}

.premium-panel-text {
    font-size: 1.04rem;
    line-height: 1.8;
    color: #cfd8e6;
    margin-bottom: 1rem;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.mini-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.mini-checks li {
    position: relative;
    padding-left: 1.35rem;
    color: #c8d1df;
}

.mini-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.63rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(123,13,16,0.14);
}

.about-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(123, 13, 16, 0.24);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-panel-title {
    margin: 0 0 0.75rem;
    font-size: 1.45rem;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.5rem, 2vw, 2.2rem);
}

h3 {
    font-size: 1.2rem;
}

.lead {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 60ch;
    margin-bottom: 0;
}

.hero-actions {
    margin-top: 1.8rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.2rem;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.button.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    box-shadow: 0 12px 30px rgba(133, 16, 18, 0.34);
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(133, 16, 18, 0.42);
}

.button.secondary {
    background: rgba(255,255,255,0.04);
    border-color: var(--line);
    color: var(--text);
}

.button.secondary:hover {
    background: rgba(255,255,255,0.08);
}

.button:focus-visible,
a:focus-visible,
.support-item:focus-visible {
    outline: 2px solid rgba(255,255,255,0.92);
    outline-offset: 3px;
}


.section {
    padding: 2rem 0 4rem;
}

.section.alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    margin-bottom: 1.6rem;
    max-width: 72ch;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: linear-gradient(180deg, rgba(22, 33, 51, 0.92), rgba(16, 24, 39, 0.96));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.45rem;
    box-shadow: var(--shadow);
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(123, 13, 16, 0.18), rgba(123, 13, 16, 0.95), rgba(123, 13, 16, 0.18));
    transform: scaleY(0.24);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 124px;
    height: 14px;
    opacity: 0.22;
    background: linear-gradient(-45deg, transparent 0 8px, rgba(123, 13, 16, 0.52) 8px 12px, transparent 12px 20px);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 13, 16, 0.34);
    background: linear-gradient(180deg, rgba(24, 35, 55, 0.96), rgba(16, 24, 39, 0.99));
    box-shadow: 0 24px 54px rgba(0,0,0,0.34);
}

.service-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.services-grid {
    align-items: start;
    gap: 1.6rem;
}

.services-grid > .service-card:nth-child(even) {
    margin-top: 1.6rem;
}

.service-card-featured {
    grid-column: 1 / -1;
    padding: 1.7rem;
    background:
        radial-gradient(circle at top right, rgba(123, 13, 16, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(24, 35, 55, 0.96), rgba(16, 24, 39, 0.99));
}

.service-card-featured h2 {
    max-width: 20ch;
}

.service-card-featured-copy {
    max-width: 76ch;
}

.service-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.service-card-actions.compact {
    margin-top: 1rem;
}


.card p,
.card li,
.lead,
.premium-panel-text {
    color: var(--copy);
}

.highlight-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    min-height: 410px;
}

.logo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 430px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.logo-frame {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.logo-frame img {
    width: min(100%, 680px);
    max-height: 470px;
    object-fit: contain;
    filter: drop-shadow(0 22px 38px rgba(0,0,0,0.28));
}

.intro-premium {
    padding-top: 0;
}

.intro-card {
    max-width: 860px;
}

.feature-list,
.check-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.feature-list li,
.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.7rem 0;
    color: var(--muted);
}

.feature-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 0 0 4px rgba(133, 16, 18, 0.14);
}

.content-stack {
    display: grid;
    gap: 1.4rem;
}

.cta-section {
    padding-top: 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(133,16,18,0.18), rgba(16,24,39,0.94));
    border: 1px solid rgba(161, 20, 24, 0.24);
    border-radius: 24px;
    padding: 1.6rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.4rem 0 2.4rem;
    color: var(--muted);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

p {
    margin: 0 0 1rem;
    color: var(--copy);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

li {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

@media (max-width: 940px) {
    .hero-grid,
    .grid.two,
    .grid.three,
    .cta-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid > .service-card:nth-child(even) {
        margin-top: 0;
    }

    .hero-grid {
        gap: 2rem;
    }

    .topbar {
        min-height: auto;
        padding: 1rem 0;
        align-items: center;
        flex-direction: column;
    }

    .brand img {
        height: 76px;
        max-width: 82vw;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .about-hero-copy h1 {
        max-width: 100%;
    }

    .premium-about-grid {
        gap: 1.8rem;
    }

    .premium-about-copy h1 {
        max-width: 100%;
        font-size: clamp(2.45rem, 8.2vw, 3.7rem);
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .highlight-card {
        min-height: auto;
    }

    .logo-showcase {
        min-height: 320px;
        padding: 0;
    }

    .logo-frame img {
        width: min(100%, 500px);
        max-height: 340px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .hero,
    .page-hero {
        padding-top: 2.8rem;
    }

    .topbar {
        gap: 0.75rem;
    }

    .brand img {
        height: 68px;
        max-width: 86vw;
    }

    .main-nav {
        width: 100%;
        gap: 0.45rem;
    }

    .main-nav a {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
}


.footer-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
}

.section-subnav {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-list,
.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li,
.info-list li {
    margin: 0.8rem 0;
    color: var(--copy);
}

.contact-label {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.kontakt-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.note-box {
    border-left: 4px solid var(--primary);
}

.benefit-cards {
    align-items: start;
}

.benefit-cards .card h3 {
    margin-bottom: 0.7rem;
}

@media (max-width: 940px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* nav update 20260325b */
.topbar { gap: 1rem; }
.main-nav { flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 860px) {
  .main-nav { justify-content: center; }
}


/* Hover effects for About + FAQ cards */
.content-stack > .card,
.benefit-cards .card {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.content-stack > .card:hover,
.benefit-cards .card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-soft);
    background: linear-gradient(180deg, rgba(24, 35, 55, 0.96), rgba(16, 24, 39, 0.99));
    box-shadow: 0 24px 54px rgba(0,0,0,0.34);
}

.content-stack > .card h2,
.benefit-cards .card h2 {
    transition: color 0.25s ease;
}

.content-stack > .card:hover h2,
.benefit-cards .card:hover h2 {
    color: #f4f7fc;
}

.about-premium-panel {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-premium-panel:hover {
    transform: translateY(-2px);
    border-color: var(--primary-soft);
    background:
        radial-gradient(circle at top right, rgba(123,13,16,0.22), transparent 34%),
        linear-gradient(180deg, rgba(26, 38, 58, 0.98), rgba(11, 18, 31, 1));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 24px 60px rgba(0,0,0,0.34);
}

/* Kontaktseite: Support-Module */
.support-card {
    border-top: 4px solid var(--primary);
}

.support-links {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.support-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.support-item:hover {
    background: rgba(123, 13, 16, 0.08);
    border-color: var(--primary-soft);
    transform: translateY(-2px);
}

.support-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.support-text strong {
    display: block;
    color: var(--text);
    font-size: 1.02rem;
}

.support-text span {
    font-size: 0.9rem;
    color: var(--muted);
}

.note-box-inline {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 0.95rem;
    border-left: 2px solid var(--primary-soft);
}

.service-note {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}


button {
    font: inherit;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #eef3fb;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.82rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-2));
    box-shadow: 0 16px 34px rgba(123, 13, 16, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
}

.header-cta-mobile {
    display: none;
}

.header-cta-desktop {
    display: inline-flex;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(123, 13, 16, 0.38);
    filter: brightness(1.05);
}

.header-cta:focus-visible,
.menu-toggle:focus-visible,
.main-nav a:focus-visible,
.button:focus-visible,
.footer-links a:focus-visible {
    outline: 2px solid rgba(255,255,255,0.92);
    outline-offset: 3px;
}

@media (max-width: 860px) {
    .site-header {
        position: sticky;
    }

    .topbar {
        grid-template-columns: minmax(0, 1fr) auto auto;
        min-height: 86px;
        height: auto;
        padding: 0.9rem 0;
        gap: 1rem;
    }

    .brand img {
        height: 72px;
        max-width: 250px;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .header-cta-mobile {
        display: inline-flex;
        order: 2;
        min-height: 46px;
        padding: 0.76rem 1rem;
        font-size: 0.95rem;
        box-shadow: 0 14px 30px rgba(123, 13, 16, 0.28);
    }

    .nav-actions {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
        border-radius: 22px;
        background: rgba(7, 16, 29, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 24px 60px rgba(0,0,0,0.42);
        backdrop-filter: blur(10px);
    }

    .site-header.menu-open .nav-actions {
        display: flex;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .main-nav a {
        padding: 0.95rem 0.2rem;
        font-size: 1.12rem;
    }

    .main-nav a::after {
        left: 0.2rem;
        right: auto;
        width: 2.6rem;
        bottom: 0.25rem;
    }

    .header-cta-desktop {
        display: none;
    }

    .header-cta {
        justify-content: center;
    }

    .hero-contact {
        display: none;
    }

    .hero,
    .page-hero {
        padding-top: 3.25rem;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--max), calc(100% - 1.5rem));
    }

    .brand img {
        height: 64px;
        max-width: 220px;
    }

    .header-cta-mobile {
        min-height: 42px;
        padding: 0.72rem 0.92rem;
        font-size: 0.9rem;
    }

    .topbar {
        min-height: 78px;
        padding: 0.75rem 0;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}
