*,
*::before,
*::after {
box-sizing: border-box;
}


/* Layout */
body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    /*color: var(--text);*/
    font-family: var(--font-used);
    font-weight: 400;
    background: var(--white);
}

.container {
    width: 100%;
    max-width: 1300px;

    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;

    padding-right: 1.6rem;
    padding-left: 1.6rem;

}
.progress-bar {
    position: fixed;
    top: 5rem; 
    left: 0;
    height: 5px;
    width: 0%;
    background: linear-gradient(90deg, var(--main_primary), var(--main_secondary));
    z-index: 41;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}



/* Navigation ========================*/
.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(40px);
    background: var(--nav-color);
    border-bottom: 5px solid var(--main_primary);

}

.nav-inside {  /* Logo */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    
}

.logo {
    font-weight: 700;  
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.18s ease, opacity 0.18s ease;    
}

.nav-links a:not(.nav-cicle):not(.dd-item):hover {
    color: var(--main_primary);
    text-decoration-style: solid;   
    text-decoration: underline;
    text-decoration-color: var(--main_primary);
    text-underline-offset: 0.5rem;
    opacity: 1;
    text-decoration-thickness: 3px;
    box-shadow: var(--shadow-hover);   
}

.nav-cicle {
    padding-bottom: 0.75rem;    
    padding-right: 1rem;
    border-radius: 15px;
    padding-left: 1rem;
    padding-top: 0.7rem;
    border: 2px solid var(--main_primary);
    transition: transform 0.3s ease-out;   

}

.nav-cicle:hover {
    color: var(--white);
    box-shadow: var(--shadow-hover);
    background-color: var(--main_primary);
    transform: scale(1.05);     
}

.nav-wrapper {
    height: 50px;       
    display: flex;       
    align-items: stretch;
}

.nav-line-verti {
    border-left: 2px solid var(--white);
    height: 100%;

}

/* Burger ======================= */ 
.burger-menu{
    gap: 1rem;
    padding-right: 1.5rem;
    display: none;
    cursor: pointer;
    color: var(--white);
}

.nav-burger-selector{
    display: none; 
}


/* ====== Dropdown (Lösungen) ====== */
.dd-checkbox {
    display: none;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.18s ease;
    user-select: none;
}

.nav-dropdown-trigger:hover {
    color: var(--main_primary);
}

/* Arrow indicators */
.dd-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
    margin-top: 1px;
}

.dd-arrow-right {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    border-right: 0;
    margin-top: 0;
    margin-left: auto;
}

/* Main dropdown panel */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: var(--background-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    z-index: 200;
}

/* Invisible bridge between trigger and dropdown to prevent mouseout gap */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 18px;
    
}

/* Desktop: hover to open */
.nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover > .nav-dropdown-trigger .dd-arrow {
    transform: rotate(180deg);
}

/* Dropdown items */
.dd-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    border-radius: 0;
}

.dd-item:hover {
    background: rgba(239, 181, 9, 0.12);
    color: var(--main_primary);
}

/* Sub-dropdown (Integrationen) */
.nav-dropdown-sub {
    position: relative;
}

.dd-sub-trigger {
    justify-content: space-between;
}

.nav-dropdown-sub-menu {
    position: absolute;
    left: calc(100% + 4px);
    top: -8px;
    min-width: 200px;
    background: var(--background-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    z-index: 201;
}

/* Invisible bridge between main and sub dropdown */
.nav-dropdown-sub-menu::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -8px;
    width: 8px;
}

/* Desktop: hover to open sub */
.nav-dropdown-sub:hover > .nav-dropdown-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Responsive  ============================*/
@media (max-width: 1136px) {   /*Tablet */ 
    .progress-bar {
        display: none;
    }

}

@media (max-width: 785px) {  /*Smartphone */

    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .nav {
        top: 0;
        z-index: 1000;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .progress-bar {
        display: none;
    }

    .container {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .burger-menu {
        display: block;
    }

    .nav-burger-selector:checked ~ .nav-links {
        display: flex;
    }

    .nav-inside {
        display: flex;
        align-items: left;
        justify-content: space-between;
        height: 5rem;
    }

    .logo a img {
        max-width: 90%;
    }

    .nav-links {
        display: none;
        position: absolute;
        padding-top: 2rem;
        padding-bottom: 2rem;
        top: 4rem;
        right: 0;
        color: var(--text);
        flex-direction: column;
        left: 0;
        background: var(--background-primary);
    }

    /* ====== Mobile Dropdown ====== */
    .nav-dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-dropdown-trigger {
        padding: 0.5rem 1.75rem;
        justify-content: flex-start;
    }

    /* Reset desktop hover on mobile */
    .nav-dropdown:hover > .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nav-dropdown-sub:hover > .nav-dropdown-sub-menu {
        opacity: 0;
        visibility: hidden;
    }

    /* Mobile: checkbox controls visibility */
    #dd-loesungen:checked ~ .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        transform: none;
    }

    #dd-loesungen:checked ~ .nav-dropdown-trigger .dd-arrow {
        transform: rotate(180deg);
    }

    #dd-integrationen:checked ~ .nav-dropdown-sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        transform: none;
    }

    #dd-integrationen:checked ~ .dd-sub-trigger .dd-arrow-right {
        transform: rotate(90deg);
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 4px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .dd-item {
        padding: 10px 2.5rem;
        font-size: 0.95rem;
        color: var(--white);
    }

    .nav-dropdown-sub {
        width: 100%;
    }

    .nav-dropdown-sub-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .nav-dropdown-sub-menu::before {
        display: none;
    }

    .nav-dropdown-sub-menu .dd-item {
        padding-left: 3.5rem;
    }

    .dd-arrow-right {
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 5px solid currentColor;
        border-right: 0;
        transition: transform 0.2s ease;
    }
}




























/* Neu er Header  */


:root{
  --mvh-navy:var(--background-primary, rgba(22,37,61,1));
  --mvh-navy2:var(--background-secondary, #002C54);
  --mvh-gold:var(--main_primary, rgb(239,181,9));
  --mvh-gold2:var(--main_secondary, #CD7213);
  --mvh-white:var(--white, #fff);
  --mvh-display:'Space Grotesk','IBM Plex Sans',system-ui,sans-serif;
  --mvh-font:var(--font-used, 'IBM Plex Sans', system-ui, sans-serif);
  --mvh-h:5rem;--mvh-radius:10px;--mvh-radius-sm:8px;
  --mvh-ease:cubic-bezier(.16,1,.3,1);--mvh-line:rgba(62, 15, 15, 0.12);
}
/* verhindert horizontalen Scroll durch das Off-Canvas-Panel */
html.mvh-lock,body.mvh-lock{overflow:hidden!important}

/* verhindert horizontalen Scroll durch das rechts geparkte Off-Canvas-Panel (mobil) */
@media (max-width:980px) {
	html,body {
		overflow-x: hidden;
		max-width: 100%;
	}
}

.mvh-header * {
	box-sizing: border-box;
}

.mvh-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	font-family: var(--mvh-font);
	background: linear-gradient(180deg,rgba(22,37,61,.92),rgba(22,37,61,.82));
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--mvh-line);
	box-shadow: 0 1px 0 rgba(239,181,9,.18),0 10px 40px rgba(0,0,0,.28);
	transition: background .35s var(--mvh-ease),box-shadow .35s var(--mvh-ease);
}

@keyframes mvh-shimmer {
	to {
		background-position: 200% 0;
	}
}
.mvh-header.mvh-scrolled {
	--mvh-h: 4.2rem;
	background: rgba(22,37,61,.96);
}

.mvh-inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 1.6rem;
	height: var(--mvh-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	transition: height .3s var(--mvh-ease);
}

.mvh-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.mvh-logo a {
	display: flex;
	align-items: center;
	gap: .6rem;
}

.mvh-logo img {
	height: 44px;
	width: auto;
	display: block;
	transition: transform .3s var(--mvh-ease);
}

.mvh-logo a:hover img {
	transform: scale(1.04);
}

.mvh-nav {
	display: flex;
	align-items: center;
	gap: .35rem;
	margin-left: auto;
}

.mvh-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: rgba(255,255,255,.82) !important;
	font-size: .98rem;
	font-weight: 500;
	text-decoration: none;
	padding: .6rem .9rem;
	border-radius: var(--mvh-radius-sm);
	transition: color .2s var(--mvh-ease),background .2s var(--mvh-ease);
}

.mvh-link::after {
	content: "";
	position: absolute;
	left: .9rem;
	right: .9rem;
	bottom: .35rem;
	height: 2px;
	background: var(--mvh-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .28s var(--mvh-ease);
}

.mvh-link:hover {
	color: #fff !important;
}

.mvh-link:hover::after {
	transform: scaleX(1);
}

.mvh-dd {
	position: relative;
}

.mvh-caret {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform .25s var(--mvh-ease);
	margin-top: 2px;
}

.mvh-dd:hover .mvh-caret,.mvh-dd:focus-within .mvh-caret {
	transform: rotate(180deg);
}

.mvh-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	min-width: 260px;
	background: linear-gradient(180deg,var(--mvh-navy),var(--mvh-navy2));
	border: 1px solid var(--mvh-line);
	border-radius: 14px;
	padding: .5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .22s var(--mvh-ease),transform .22s var(--mvh-ease),visibility .22s;
	box-shadow: 0 24px 60px rgba(0,0,0,.45);
	z-index: 200;
}

.mvh-menu::before {
	content: "";
	position: absolute;
	top: -14px;
	left: 0;
	right: 0;
	height: 14px;
}

.mvh-dd:hover>.mvh-menu,.mvh-dd:focus-within>.mvh-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mvh-item {
	display: flex;
	align-items: center;
	gap: .7rem;
	padding: .7rem .85rem;
	font-size: .95rem;
	font-weight: 500;
	color: rgba(255,255,255,.85)  !important;
	text-decoration: none;
	border-radius: var(--mvh-radius-sm);
	white-space: nowrap;
	transition: background .16s,color .16s,padding-left .2s var(--mvh-ease);
}

.mvh-item:hover {
	background: rgba(239,181,9,.14);
	color: var(--mvh-gold) !important;
	padding-left: 1.1rem;
}

.mvh-item .mvh-ico {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	border-radius: 6px;
	background: rgba(239,181,9,.14);
	color: var(--mvh-gold) !important;
	font-size: .72rem;
	font-weight: 700;
}

.mvh-item .mvh-ext {
	margin-left: auto;
	opacity: .5;
	font-size: .7rem;
}

.mvh-sep {
	height: 1px;
	background: #3c485a;
	margin: .4rem .5rem;
}

.mvh-mheading {
	padding: .5rem .85rem .25rem;
	font-family: var(--mvh-display);
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.4) !important;
}

.mvh-sub {
	position: relative;
}

.mvh-sub>.mvh-item {
	justify-content: space-between;
}

.mvh-sub-caret {
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid currentColor;
	margin-left: auto;
	transition: transform .2s var(--mvh-ease);
}

.mvh-submenu {
	position: absolute;
	left: calc(100% + 8px);
	top: -.5rem;
	min-width: 270px;
	background: linear-gradient(180deg,var(--mvh-navy),var(--mvh-navy2));
	border: 1px solid var(--mvh-line);
	border-radius: 14px;
	padding: .5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateX(8px);
	transition: opacity .22s var(--mvh-ease),transform .22s var(--mvh-ease),visibility .22s;
	box-shadow: 0 24px 60px rgba(0,0,0,.45);
	z-index: 201;
}

.mvh-submenu::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -10px;
	width: 10px;
}

.mvh-sub:hover>.mvh-submenu,.mvh-sub:focus-within>.mvh-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.mvh-sub:hover>.mvh-item .mvh-sub-caret {
	transform: rotate(90deg);
}

.mvh-actions {
	display: flex;
	align-items: center;
	gap: .7rem;
	flex-shrink: 0;
}

.mvh-divider {
	width: 1px;
	height: 28px;
	background: var(--mvh-line);
}

.mvh-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: var(--mvh-display);
	font-weight: 600;
	font-size: .92rem;
	text-decoration: none;
	padding: .62rem 1.15rem;
	border-radius: var(--mvh-radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .2s var(--mvh-ease),box-shadow .25s var(--mvh-ease),background .25s,color .2s;
	white-space: nowrap;
}

.mvh-btn-ghost {
	color: #fff !important;
	border-color: rgba(255,255,255,.28);
	background: rgba(255,255,255,.04);
}

.mvh-btn-ghost:hover {
	border-color: var(--mvh-gold);
	color: var(--mvh-gold);
	background: rgba(239,181,9,.08);
}

.mvh-btn-primary {
	background: linear-gradient(135deg,var(--mvh-gold),var(--mvh-gold2));
	color: var(--mvh-navy);
	box-shadow: 0 6px 22px rgba(239,181,9,.38);
}

.mvh-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 34px rgba(239,181,9,.55);
}

.mvh-userchip {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: #fff;
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	padding: .5rem .85rem;
	border-radius: var(--mvh-radius);
	border: 1px solid rgba(239,181,9,.5);
	transition: background .2s,transform .2s;
}

.mvh-userchip:hover {
	background: rgba(239,181,9,.14);
	transform: translateY(-1px);
}

.mvh-userchip .mvh-avatar {
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: linear-gradient(135deg,var(--mvh-gold),var(--mvh-gold2));
	color: var(--mvh-navy);
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: .8rem;
}

.mvh-logout {
	color: rgba(255,255,255,.7);
	font-size: .88rem;
	text-decoration: none;
	padding: .5rem .6rem;
	border-radius: var(--mvh-radius-sm);
	transition: color .2s,background .2s;
}

.mvh-logout:hover {
	color: #fff;
	background: rgba(255,255,255,.06);
}

.mvh-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--mvh-radius);
	background: rgba(255,255,255,.04);
	cursor: pointer;
	padding: 0 12px;
	flex-shrink: 0;
}

.mvh-burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: transform .3s var(--mvh-ease),opacity .3s var(--mvh-ease);
}

.mvh-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mvh-progress {
	position: fixed;
	left: 0;
	height: 4px;
	width: 0;
	background: linear-gradient(90deg,var(--mvh-gold),var(--mvh-gold2));
	z-index: 999;
	transition: width .1s linear,top .3s var(--mvh-ease);
	border-radius: 0 3px 3px 0;
	box-shadow: 0 0 12px rgba(239,181,9,.5);
}

.mvh-overlay {
	position: fixed;
	inset: 0;
	background: rgba(6,12,24,.55);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s var(--mvh-ease),visibility .3s;
	z-index: 998;
}

@media (max-width:1136px) {
	.mvh-progress {
		display: none;
	}
}

/* ===================== MOBILE ===================== */
@media (max-width:980px) {
	.mvh-burger {
		display: flex;
		order: 3;
	}

	.mvh-link {
		padding: .85rem .9rem;
		font-size: 1.05rem;
		border-radius: var(--mvh-radius-sm);
	}

	.mvh-link::after {
		display: none;
	}

	.mvh-link:hover,.mvh-item:hover {
		background: rgba(239,181,9,.12);
	}

	.mvh-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(88vw,380px);
		height: 100dvh;
		height: 100vh;
		flex-direction: column;
		align-items: stretch;
		gap: .15rem;
		margin: 0;
		padding: calc(var(--mvh-h) + 1rem) 1.1rem 2rem;
		background: linear-gradient(180deg,var(--mvh-navy),var(--mvh-navy2));
		border-left: 1px solid var(--mvh-line);
		box-shadow: -30px 0 80px rgba(0,0,0,.5);
		transform: translateX(105%);
            /* startet komplett außerhalb, unsichtbar */
		visibility: hidden;
		transition: transform .4s var(--mvh-ease),visibility .4s;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 1001;
	}
  /* geöffnet: ins Sichtfeld schieben */
	.mvh-header.mvh-open .mvh-nav {
		transform: translateX(0);
		visibility: visible;
	}

	.mvh-header.mvh-open .mvh-overlay {
		opacity: 1;
		visibility: visible;
	}

	.mvh-header.mvh-open .mvh-burger span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.mvh-header.mvh-open .mvh-burger span:nth-child(2) {
		opacity: 0;
	}

	.mvh-header.mvh-open .mvh-burger span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.mvh-dd {
		width: 100%;
	}

	.mvh-link.mvh-dd-trigger {
		width: 100%;
		justify-content: space-between;
		font-size: 1.05rem;
		color: rgba(255,255,255,.9);
	}

	.mvh-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		width: 100%;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: rgba(255,255,255,.03);
		padding: .25rem .25rem .25rem .5rem;
		max-height: 0;
		overflow: hidden;
		transition: max-height .35s var(--mvh-ease);
	}

	.mvh-ddcb:checked ~ .mvh-menu {
		max-height: 900px;
	}

	.mvh-ddcb:checked ~ .mvh-dd-trigger .mvh-caret {
		transform: rotate(180deg);
	}

	.mvh-submenu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		width: 100%;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: rgba(255,255,255,.03);
		padding-left: .6rem;
		max-height: 0;
		overflow: hidden;
		transition: max-height .35s var(--mvh-ease);
	}

	.mvh-subcb:checked ~ .mvh-submenu {
		max-height: 600px;
	}

	.mvh-subcb:checked ~ .mvh-item .mvh-sub-caret {
		transform: rotate(90deg);
	}

	.mvh-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: .6rem;
		margin-top: 1rem;
	}

	.mvh-divider {
		display: none;
	}

	.mvh-btn,.mvh-userchip,.mvh-logout {
		width: 100%;
		justify-content: center;
		padding: .85rem 1rem;
		font-size: 1rem;
	}
}

@media (max-width:520px) {
	.mvh-inner {
		padding: 0 1rem;
	}

	.mvh-logo img {
		height: 38px;
	}
}

@media (prefers-reduced-motion:reduce) {
	.mvh-header::before {
		animation: none;
	}

	.mvh-header,.mvh-nav,.mvh-btn,.mvh-menu,.mvh-submenu {
		transition: none;
	}
}