/* =========================================================
   RexSoft – Layout und Komponenten
   ========================================================= */

.rexsoft-container {
	width: min(1240px, calc(100% - 2rem));
	margin-inline: auto;
}

.rexsoft-main {
	display: block;
}

.rexsoft-section {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.rexsoft-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1rem;
	color: var(--rexsoft-blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.rexsoft-eyebrow::before {
	width: 1.5rem;
	height: 2px;
	background: currentcolor;
	border-radius: 999px;
	content: "";
}

.rexsoft-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 1rem 1.55rem;
	background: var(--rexsoft-blue);
	color: #ffffff;
	font-weight: 750;
	line-height: 1;
	border: 1px solid var(--rexsoft-blue);
	border-radius: 999px;
	box-shadow: var(--rexsoft-shadow-blue);
	transition: transform var(--rexsoft-transition), background-color var(--rexsoft-transition), border-color var(--rexsoft-transition), box-shadow var(--rexsoft-transition);
}

.rexsoft-button:hover,
.rexsoft-button:focus-visible {
	color: #ffffff;
	background: var(--rexsoft-blue-dark);
	border-color: var(--rexsoft-blue-dark);
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(10, 132, 255, 0.3);
}

.rexsoft-button:focus-visible,
.rexsoft-text-link:focus-visible,
.rexsoft-menu a:focus-visible,
.rexsoft-footer-menu a:focus-visible {
	outline: 3px solid rgba(10, 132, 255, 0.42);
	outline-offset: 4px;
}

.rexsoft-button--small {
	min-height: 44px;
	padding: 0.8rem 1.1rem;
	font-size: 0.9rem;
}

.rexsoft-button--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: none;
}

.rexsoft-button--ghost:hover,
.rexsoft-button--ghost:focus-visible {
	background: #ffffff;
	color: var(--rexsoft-blue-dark);
	border-color: #ffffff;
	box-shadow: none;
}

/* =========================================================
   Header und Navigation
   ========================================================= */

.rexsoft-header {
	position: sticky;
	top: 0;
	z-index: 100;
	isolation: isolate;
	background: rgba(255, 255, 255, 0.88);
	border-bottom: 1px solid rgba(14, 43, 87, 0.08);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	transition: background-color var(--rexsoft-transition), border-color var(--rexsoft-transition), box-shadow var(--rexsoft-transition);
}

.rexsoft-header::after {
	position: absolute;
	inset: 100% 0 auto;
	height: 18px;
	background: linear-gradient(to bottom, rgba(8, 26, 53, 0.1), transparent);
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--rexsoft-transition);
}

.rexsoft-header.is-scrolled {
	background: rgba(255, 255, 255, 0.78);
	border-bottom-color: rgba(14, 43, 87, 0.11);
	box-shadow: 0 8px 24px rgba(8, 26, 53, 0.06);
}

.rexsoft-header.is-scrolled::after {
	opacity: 1;
}

.rexsoft-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 76px;
	gap: clamp(1rem, 2vw, 2.25rem);
}

.rexsoft-brand {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	min-width: max-content;
}

.rexsoft-brand .custom-logo-link,
.rexsoft-brand__wordmark {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--rexsoft-blue-dark);
	font-size: 1.45rem;
	font-weight: 850;
	letter-spacing: -0.04em;
}

.rexsoft-brand .custom-logo {
	width: auto;
	max-width: 190px;
	max-height: 46px;
}

.rexsoft-wordmark__mark {
	display: grid;
	width: 1.55rem;
	height: 1.55rem;
	color: #ffffff;
	font-size: 0.84rem;
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 1;
	place-items: center;
	background: linear-gradient(135deg, var(--rexsoft-blue), #41a1ff);
	border-radius: 0.48rem;
	box-shadow: 0 8px 18px rgba(10, 132, 255, 0.26);
}

.rexsoft-wordmark__name {
	white-space: nowrap;
}

.rexsoft-brand__claim {
	padding-left: 0.8rem;
	color: var(--rexsoft-text-muted);
	font-size: 0.75rem;
	font-weight: 650;
	line-height: 1.25;
	border-left: 1px solid var(--rexsoft-border);
}

.rexsoft-navigation {
	margin-left: auto;
}

.rexsoft-navigation__cta {
	display: none;
}

.rexsoft-menu,
.rexsoft-footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.rexsoft-menu {
	display: flex;
	align-items: center;
	gap: clamp(0.9rem, 2vw, 1.75rem);
}

.rexsoft-menu li {
	position: relative;
}

.rexsoft-menu a {
	display: inline-flex;
	padding: 0.5rem 0;
	color: var(--rexsoft-text);
	font-size: 0.92rem;
	font-weight: 700;
}

.rexsoft-menu a:hover,
.rexsoft-menu .current-menu-item > a,
.rexsoft-menu .current_page_item > a,
.rexsoft-menu .current-menu-ancestor > a,
.rexsoft-menu a.is-active {
	color: var(--rexsoft-blue);
}

.rexsoft-menu > li > a {
	position: relative;
}

.rexsoft-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--rexsoft-blue);
	border-radius: 999px;
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--rexsoft-transition);
}

.rexsoft-menu > li > a:hover::after,
.rexsoft-menu > .current-menu-item > a::after,
.rexsoft-menu > .current_page_item > a::after,
.rexsoft-menu > .current-menu-ancestor > a::after,
.rexsoft-menu > li > a.is-active::after {
	transform: scaleX(1);
}

.rexsoft-menu.has-section-active > .current-menu-item > a:not(.is-active),
.rexsoft-menu.has-section-active > .current_page_item > a:not(.is-active) {
	color: var(--rexsoft-text);
}

.rexsoft-menu.has-section-active > .current-menu-item > a:not(.is-active)::after,
.rexsoft-menu.has-section-active > .current_page_item > a:not(.is-active)::after {
	transform: scaleX(0);
}

.rexsoft-menu > .menu-item-has-children > a {
	padding-right: 1.1rem;
}

.rexsoft-menu > .menu-item-has-children > a::before {
	position: absolute;
	top: 50%;
	right: 0.05rem;
	width: 0.38rem;
	height: 0.38rem;
	border-right: 1.5px solid currentcolor;
	border-bottom: 1.5px solid currentcolor;
	content: "";
	transform: translateY(-68%) rotate(45deg);
	transition: transform var(--rexsoft-transition);
}

.rexsoft-menu > .menu-item-has-children:hover > a::before,
.rexsoft-menu > .menu-item-has-children:focus-within > a::before {
	transform: translateY(-33%) rotate(225deg);
}

.rexsoft-menu .sub-menu {
	position: absolute;
	top: calc(100% + 0.55rem);
	left: -1rem;
	display: grid;
	gap: 0.1rem;
	min-width: 210px;
	padding: 0.65rem;
	margin: 0;
	background: #ffffff;
	border: 1px solid var(--rexsoft-border);
	border-radius: var(--rexsoft-radius-small);
	box-shadow: var(--rexsoft-shadow-soft);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-0.45rem);
	transition: opacity var(--rexsoft-transition), transform var(--rexsoft-transition), visibility var(--rexsoft-transition);
	visibility: hidden;
}

.rexsoft-menu .menu-item-has-children:hover > .sub-menu,
.rexsoft-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.rexsoft-menu .sub-menu a {
	display: flex;
	padding: 0.55rem 0.7rem;
	border-radius: 8px;
}

.rexsoft-menu .sub-menu a:hover {
	background: var(--rexsoft-surface-muted);
}

.rexsoft-submenu-toggle {
	display: none;
}

.rexsoft-header__cta {
	flex: 0 0 auto;
}

.rexsoft-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	width: 46px;
	height: 46px;
	min-height: 46px;
	padding: 0;
	background: transparent;
	color: var(--rexsoft-text);
	border: 1px solid var(--rexsoft-border);
	border-radius: 12px;
	box-shadow: none;
	gap: 5px;
}

.rexsoft-nav-toggle:hover,
.rexsoft-nav-toggle:focus-visible {
	background: var(--rexsoft-surface-muted);
	color: var(--rexsoft-text);
	transform: none;
	box-shadow: none;
}

.rexsoft-nav-toggle__line {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: currentcolor;
	border-radius: 99px;
	transition: transform var(--rexsoft-transition), opacity var(--rexsoft-transition);
}

/* =========================================================
   Hero
   ========================================================= */

.rexsoft-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 9vw, 8.5rem) 0 clamp(5rem, 9vw, 9rem);
	background:
		radial-gradient(circle at 84% 19%, rgba(10, 132, 255, 0.3), transparent 23rem),
		radial-gradient(circle at 14% 78%, rgba(0, 200, 83, 0.16), transparent 20rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep) 0%, var(--rexsoft-blue-dark) 57%, #123f70 100%);
}

.rexsoft-hero::before,
.rexsoft-hero::after {
	position: absolute;
	width: 32rem;
	height: 32rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-hero::before {
	top: -18rem;
	right: -11rem;
}

.rexsoft-hero::after {
	bottom: -25rem;
	left: -15rem;
}

.rexsoft-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.rexsoft-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-hero h1 {
	max-width: 760px;
	margin-bottom: 1.35rem;
	color: #ffffff;
}

.rexsoft-hero__lead {
	max-width: 665px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.23rem);
}

.rexsoft-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2rem;
}

.rexsoft-trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.4rem;
	padding: 0;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.84rem;
	font-weight: 650;
	list-style: none;
}

.rexsoft-trust-list li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.rexsoft-trust-list li::before {
	width: 0.42rem;
	height: 0.42rem;
	background: var(--rexsoft-green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.16);
	content: "";
}

/* Abstrakte Produktvorschau – kein Bild-Asset notwendig. */
.rexsoft-hero__visual {
	position: relative;
	isolation: isolate;
}

.rexsoft-hero__visual::before {
	position: absolute;
	top: 8%;
	right: -6%;
	z-index: -1;
	width: 72%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(10, 132, 255, 0.36), transparent 67%);
	content: "";
	filter: blur(8px);
}

.rexsoft-dashboard {
	position: relative;
	overflow: hidden;
	padding: 0.8rem;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 23px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
}

.rexsoft-dashboard::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 32%);
	content: "";
	pointer-events: none;
}

.rexsoft-dashboard__bar {
	display: flex;
	align-items: center;
	gap: 0.36rem;
	min-height: 44px;
	padding: 0 0.7rem;
	background: rgba(8, 26, 53, 0.76);
	border-radius: 13px 13px 0 0;
}

.rexsoft-dashboard__window-dot {
	width: 0.5rem;
	height: 0.5rem;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

.rexsoft-dashboard__window-dot:first-child {
	background: #ff6b6b;
}

.rexsoft-dashboard__window-dot:nth-child(2) {
	background: #f4b400;
}

.rexsoft-dashboard__window-dot:nth-child(3) {
	background: var(--rexsoft-green);
}

.rexsoft-dashboard__brand {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-left: 0.45rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.rexsoft-dashboard__brand span {
	display: grid;
	width: 1.15rem;
	height: 1.15rem;
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 850;
	line-height: 1;
	place-items: center;
	background: var(--rexsoft-blue);
	border-radius: 0.35rem;
}

.rexsoft-dashboard__status {
	margin-left: auto;
	padding: 0.2rem 0.42rem;
	color: #c6f6d8;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(0, 200, 83, 0.16);
	border: 1px solid rgba(0, 200, 83, 0.3);
	border-radius: 999px;
}

.rexsoft-dashboard__body {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	min-height: 326px;
	background: #f7f9fc;
	border-radius: 0 0 13px 13px;
}

.rexsoft-dashboard__sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.15rem;
	padding-top: 1.8rem;
	background: #e9eff6;
}

.rexsoft-dashboard__sidebar i {
	display: block;
	width: 19px;
	height: 19px;
	background: #bccada;
	border-radius: 6px;
}

.rexsoft-dashboard__sidebar i:first-child {
	background: var(--rexsoft-blue);
	box-shadow: 0 0 0 5px rgba(10, 132, 255, 0.12);
}

.rexsoft-dashboard__content {
	min-width: 0;
	padding: clamp(1.1rem, 3vw, 2rem);
}

.rexsoft-dashboard__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.rexsoft-dashboard__heading > div {
	min-width: 0;
}

.rexsoft-dashboard__eyebrow,
.rexsoft-dashboard__title {
	margin: 0;
}

.rexsoft-dashboard__eyebrow {
	color: #7b8ba0;
	font-size: 0.62rem;
	font-weight: 750;
	line-height: 1.25;
}

.rexsoft-dashboard__title {
	margin-top: 0.22rem;
	color: #172033;
	font-size: 0.9rem;
	font-weight: 850;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.rexsoft-dashboard__date {
	flex: 0 0 auto;
	padding: 0.3rem 0.45rem;
	color: #7b8ba0;
	font-size: 0.58rem;
	font-weight: 750;
	line-height: 1;
	background: #f1f5f9;
	border-radius: 999px;
}

.rexsoft-dashboard__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 1.25rem;
}

.rexsoft-dashboard__stats div {
	display: grid;
	align-content: center;
	min-width: 0;
	min-height: 70px;
	padding: 0.65rem 0.75rem;
	background: #ffffff;
	border: 1px solid #e2eaf1;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(14, 43, 87, 0.06);
}

.rexsoft-dashboard__stats div:first-child {
	background: linear-gradient(135deg, #ffffff, #dceeff);
	border-color: #bbdcff;
}

.rexsoft-dashboard__stats span {
	color: #7b8ba0;
	font-size: 0.56rem;
	font-weight: 700;
	line-height: 1.2;
}

.rexsoft-dashboard__stats strong {
	margin-top: 0.22rem;
	color: #172033;
	font-size: clamp(0.76rem, 1.4vw, 0.96rem);
	font-weight: 850;
	letter-spacing: -0.035em;
	line-height: 1.1;
	white-space: nowrap;
}

.rexsoft-dashboard__stats em {
	margin-top: 0.24rem;
	color: #169a52;
	font-size: 0.54rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
}

.rexsoft-dashboard__chart {
	height: 120px;
	padding: 0.8rem 1rem 0.9rem;
	margin-top: 1rem;
	background: #ffffff;
	border: 1px solid #e2eaf1;
	border-radius: 10px;
}

.rexsoft-dashboard__chart-heading {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	color: #7b8ba0;
	font-size: 0.58rem;
	font-weight: 750;
	line-height: 1.2;
}

.rexsoft-dashboard__chart-heading > * {
	min-width: 0;
	white-space: nowrap;
}

.rexsoft-dashboard__chart-heading strong {
	color: var(--rexsoft-blue);
	font-weight: 800;
}

.rexsoft-dashboard__chart-bars {
	display: flex;
	align-items: end;
	gap: 0.6rem;
	height: 71px;
	margin-top: 0.5rem;
}

.rexsoft-dashboard__chart-bars b {
	flex: 1;
	height: 38%;
	background: linear-gradient(to top, var(--rexsoft-blue), #7bbcff);
	border-radius: 5px 5px 2px 2px;
}

.rexsoft-dashboard__chart-bars b:nth-child(2) { height: 62%; }
.rexsoft-dashboard__chart-bars b:nth-child(3) { height: 48%; }
.rexsoft-dashboard__chart-bars b:nth-child(4) { height: 83%; }
.rexsoft-dashboard__chart-bars b:nth-child(5) { height: 58%; }
.rexsoft-dashboard__chart-bars b:nth-child(6) { height: 90%; }
.rexsoft-dashboard__chart-bars b:nth-child(7) { height: 72%; }

/* =========================================================
   Produkte
   ========================================================= */

.rexsoft-products {
	background: var(--rexsoft-background);
}

.rexsoft-section-heading {
	max-width: 730px;
	margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.rexsoft-section-heading h2,
.rexsoft-value-section h2 {
	margin-bottom: 1.15rem;
}

.rexsoft-section-heading > p:last-child,
.rexsoft-value-section > p {
	margin-bottom: 0;
	font-size: 1.08rem;
}

.rexsoft-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}

.rexsoft-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	padding: clamp(1.7rem, 4vw, 2.7rem);
	background: #ffffff;
	border: 1px solid var(--rexsoft-border);
	border-radius: var(--rexsoft-radius-medium);
	box-shadow: var(--rexsoft-shadow-soft);
	transition: transform var(--rexsoft-transition), box-shadow var(--rexsoft-transition), border-color var(--rexsoft-transition);
}

.rexsoft-product-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--rexsoft-blue);
	content: "";
}

.rexsoft-product-card:hover {
	border-color: rgba(10, 132, 255, 0.32);
	transform: translateY(-6px);
	box-shadow: var(--rexsoft-shadow-card);
}

.rexsoft-product-preview {
	position: relative;
	overflow: hidden;
	min-height: 188px;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #eaf4ff, #d9ebff);
	border: 1px solid rgba(10, 132, 255, 0.2);
	border-radius: 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 12px 28px rgba(14, 43, 87, 0.08);
}

.rexsoft-product-preview::after {
	position: absolute;
	top: -75%;
	right: -26%;
	width: 58%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.78), transparent 68%);
	content: "";
	pointer-events: none;
}

.rexsoft-product-preview--invoice {
	background: linear-gradient(135deg, #e8f8ef, #d7f1e3);
	border-color: rgba(0, 150, 72, 0.2);
}

.rexsoft-product-preview__bar {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 0.32rem;
	min-height: 36px;
	padding: 0 0.65rem;
	background: #17345a;
	border-radius: 15px 15px 0 0;
}

.rexsoft-product-preview__dot {
	width: 0.38rem;
	height: 0.38rem;
	background: #ff6b6b;
	border-radius: 50%;
}

.rexsoft-product-preview__dot:nth-child(2) {
	background: var(--rexsoft-gold);
}

.rexsoft-product-preview__dot:nth-child(3) {
	background: var(--rexsoft-green);
}

.rexsoft-product-preview__bar strong {
	margin-left: 0.35rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.rexsoft-product-preview__bar em {
	margin-left: auto;
	padding: 0.15rem 0.36rem;
	color: #d5f8e3;
	font-size: 0.49rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(0, 200, 83, 0.17);
	border: 1px solid rgba(0, 200, 83, 0.32);
	border-radius: 999px;
}

.rexsoft-product-preview__dash-body {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	min-height: 152px;
	background: #f8fbff;
}

.rexsoft-product-preview__rail {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 0.65rem;
	background: #e6eef7;
}

.rexsoft-product-preview__rail i {
	width: 11px;
	height: 11px;
	background: #c0d0e1;
	border-radius: 3px;
}

.rexsoft-product-preview__rail i:first-child {
	background: var(--rexsoft-blue);
	box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
}

.rexsoft-product-preview__dash-content {
	min-width: 0;
	padding: 0.8rem 0.9rem;
}

.rexsoft-product-preview__dash-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rexsoft-product-preview__dash-heading span:first-child {
	width: 38%;
	height: 0.46rem;
	background: #22344c;
	border-radius: 999px;
}

.rexsoft-product-preview__dash-heading span:last-child {
	width: 16%;
	height: 0.32rem;
	background: #c1d2e5;
	border-radius: 999px;
}

.rexsoft-product-preview__dash-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.48rem;
	margin-top: 0.75rem;
}

.rexsoft-product-preview__dash-stats b {
	height: 38px;
	background: #ffffff;
	border: 1px solid #dbe6f1;
	border-radius: 6px;
}

.rexsoft-product-preview__dash-stats b:first-child {
	background: linear-gradient(135deg, #ffffff, #d9edff);
	border-color: #a9d5ff;
}

.rexsoft-product-preview__dash-chart {
	display: flex;
	align-items: end;
	gap: 0.35rem;
	height: 46px;
	padding: 0.45rem 0.55rem;
	margin-top: 0.55rem;
	background: #ffffff;
	border: 1px solid #dbe6f1;
	border-radius: 6px;
}

.rexsoft-product-preview__dash-chart i {
	flex: 1;
	height: 40%;
	background: linear-gradient(to top, var(--rexsoft-blue), #73b7ff);
	border-radius: 3px 3px 1px 1px;
}

.rexsoft-product-preview__dash-chart i:nth-child(2) { height: 62%; }
.rexsoft-product-preview__dash-chart i:nth-child(3) { height: 48%; }
.rexsoft-product-preview__dash-chart i:nth-child(4) { height: 84%; }
.rexsoft-product-preview__dash-chart i:nth-child(5) { height: 68%; }
.rexsoft-product-preview__dash-chart i:nth-child(6) { height: 91%; }

.rexsoft-product-preview__invoice-paper {
	position: relative;
	min-height: 152px;
	padding: 0.85rem 1rem;
	background: #ffffff;
}

.rexsoft-product-preview__invoice-head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.5rem;
}

.rexsoft-product-preview__invoice-head > span {
	display: grid;
	width: 1.55rem;
	height: 1.55rem;
	color: #ffffff;
	font-size: 0.76rem;
	font-weight: 850;
	place-items: center;
	background: var(--rexsoft-green);
	border-radius: 0.44rem;
}

.rexsoft-product-preview__invoice-head div {
	display: grid;
	gap: 0.08rem;
}

.rexsoft-product-preview__invoice-head b {
	color: #21344e;
	font-size: 0.68rem;
	line-height: 1.1;
}

.rexsoft-product-preview__invoice-head small {
	color: #8192a7;
	font-size: 0.48rem;
	font-weight: 700;
}

.rexsoft-product-preview__invoice-head > strong {
	color: #15904f;
	font-size: 0.64rem;
	font-weight: 850;
	white-space: nowrap;
}

.rexsoft-product-preview__invoice-address {
	display: grid;
	gap: 0.26rem;
	width: 32%;
	margin-top: 0.75rem;
}

.rexsoft-product-preview__invoice-address i,
.rexsoft-product-preview__invoice-lines i {
	display: block;
	height: 0.32rem;
	background: #d5e0eb;
	border-radius: 999px;
}

.rexsoft-product-preview__invoice-address i:last-child {
	width: 72%;
}

.rexsoft-product-preview__invoice-lines {
	display: grid;
	gap: 0.42rem;
	margin-top: 0.75rem;
}

.rexsoft-product-preview__invoice-lines i {
	height: 0.46rem;
	background: linear-gradient(to right, #d7e2ed 69%, #edf3f8 69%);
}

.rexsoft-product-preview__invoice-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.75rem;
	padding-top: 0.52rem;
	border-top: 1px solid #e4edf4;
}

.rexsoft-product-preview__invoice-total span {
	padding: 0.13rem 0.3rem;
	color: #15904f;
	font-size: 0.48rem;
	font-weight: 800;
	text-transform: uppercase;
	background: #e3f8ec;
	border-radius: 999px;
}

.rexsoft-product-preview__invoice-total b {
	color: #21344e;
	font-size: 0.65rem;
	font-weight: 850;
}

.rexsoft-product-card--dash::before {
	background: linear-gradient(90deg, var(--rexsoft-blue), var(--rexsoft-gold));
}

.rexsoft-product-card--invoice::before {
	background: linear-gradient(90deg, var(--rexsoft-blue), var(--rexsoft-green));
}

.rexsoft-product-card__icon {
	display: grid;
	width: 48px;
	height: 48px;
	margin: 0;
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 850;
	place-items: center;
	background: linear-gradient(135deg, var(--rexsoft-blue-dark), var(--rexsoft-blue));
	border-radius: 14px;
	box-shadow: 0 12px 24px rgba(10, 132, 255, 0.2);
}

.rexsoft-product-card__identity {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.rexsoft-product-card__identity > span {
	padding: 0.35rem 0.58rem;
	color: var(--rexsoft-blue-dark);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: var(--rexsoft-surface-muted);
	border-radius: 999px;
}

.rexsoft-product-card--dash .rexsoft-product-card__identity > span {
	color: #936b00;
	background: rgba(244, 180, 0, 0.13);
}

.rexsoft-product-card--invoice .rexsoft-product-card__identity > span {
	color: #147e46;
	background: rgba(0, 200, 83, 0.12);
}

.rexsoft-product-card--dash .rexsoft-product-card__icon {
	background: linear-gradient(135deg, var(--rexsoft-blue-dark), #c18d00);
}

.rexsoft-product-card--invoice .rexsoft-product-card__icon {
	background: linear-gradient(135deg, var(--rexsoft-blue-dark), #15904f);
}

.rexsoft-product-card__label {
	margin: 0 0 0.45rem;
	color: var(--rexsoft-blue-dark);
	font-size: 0.92rem;
	font-weight: 800;
}

.rexsoft-product-card h3 {
	max-width: 470px;
	margin-bottom: 1rem;
}

.rexsoft-product-card > p:not(.rexsoft-product-card__label) {
	margin: 0;
}

.rexsoft-feature-list {
	display: grid;
	gap: 0.7rem;
	padding: 0;
	margin: 1.65rem 0 2rem;
	color: var(--rexsoft-text);
	font-size: 0.93rem;
	font-weight: 600;
	list-style: none;
}

.rexsoft-feature-list li {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
}

.rexsoft-feature-list li::before {
	display: grid;
	flex: 0 0 1.2rem;
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 0.2rem;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
	place-items: center;
	background: var(--rexsoft-blue);
	border-radius: 50%;
	content: "✓";
}

.rexsoft-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: auto;
	color: var(--rexsoft-blue-dark);
	font-size: 0.94rem;
	font-weight: 800;
}

.rexsoft-text-link span {
	font-size: 1.25rem;
	transition: transform var(--rexsoft-transition);
}

.rexsoft-text-link:hover span {
	transform: translateX(4px);
}

/* =========================================================
   RexDashPro Detailseite
   ========================================================= */

.rexsoft-product-page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background:
		radial-gradient(circle at 84% 17%, rgba(10, 132, 255, 0.3), transparent 24rem),
		radial-gradient(circle at 10% 86%, rgba(0, 200, 83, 0.13), transparent 22rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
}

.rexsoft-product-page-hero::before {
	position: absolute;
	top: -21rem;
	right: -12rem;
	width: 38rem;
	height: 38rem;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-product-page-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 8rem);
}

.rexsoft-product-page-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.82rem;
	font-weight: 750;
}

.rexsoft-product-page-hero__back:hover,
.rexsoft-product-page-hero__back:focus-visible {
	color: #ffffff;
}

.rexsoft-product-page-hero__back span {
	font-size: 1.15rem;
	transition: transform var(--rexsoft-transition);
}

.rexsoft-product-page-hero__back:hover span {
	transform: translateX(-3px);
}

.rexsoft-product-page-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-product-page-hero h1 {
	max-width: 720px;
	margin-bottom: 1.3rem;
	color: #ffffff;
}

.rexsoft-product-page-hero__lead {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.rexsoft-product-page-hero__visual {
	position: relative;
	isolation: isolate;
}

.rexsoft-product-page-hero__visual::before {
	position: absolute;
	top: 7%;
	right: -6%;
	z-index: -1;
	width: 75%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(10, 132, 255, 0.38), transparent 68%);
	content: "";
	filter: blur(8px);
}

.rexsoft-product-page-dashboard {
	position: relative;
	overflow: hidden;
	padding: 0.8rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 24px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.29);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rexsoft-product-page-dashboard__bar {
	display: flex;
	align-items: center;
	gap: 0.38rem;
	min-height: 42px;
	padding: 0 0.7rem;
	background: rgba(8, 26, 53, 0.84);
	border-radius: 14px 14px 0 0;
}

.rexsoft-product-page-dashboard__bar > span {
	width: 0.48rem;
	height: 0.48rem;
	background: #ff6b6b;
	border-radius: 50%;
}

.rexsoft-product-page-dashboard__bar > span:nth-child(2) {
	background: var(--rexsoft-gold);
}

.rexsoft-product-page-dashboard__bar > span:nth-child(3) {
	background: var(--rexsoft-green);
}

.rexsoft-product-page-dashboard__bar > strong {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-left: 0.4rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.68rem;
	font-weight: 800;
}

.rexsoft-product-page-dashboard__bar > strong i {
	display: grid;
	width: 1.1rem;
	height: 1.1rem;
	color: #ffffff;
	font-size: 0.62rem;
	font-style: normal;
	font-weight: 850;
	place-items: center;
	background: var(--rexsoft-blue);
	border-radius: 0.35rem;
}

.rexsoft-product-page-dashboard__bar > em {
	margin-left: auto;
	padding: 0.18rem 0.4rem;
	color: #c6f6d8;
	font-size: 0.53rem;
	font-style: normal;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(0, 200, 83, 0.17);
	border: 1px solid rgba(0, 200, 83, 0.32);
	border-radius: 999px;
}

.rexsoft-product-page-dashboard__body {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	min-height: 330px;
	background: #f7f9fc;
	border-radius: 0 0 14px 14px;
}

.rexsoft-product-page-dashboard__rail {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding-top: 1.65rem;
	background: #e9eff6;
}

.rexsoft-product-page-dashboard__rail i {
	width: 17px;
	height: 17px;
	background: #bccada;
	border-radius: 5px;
}

.rexsoft-product-page-dashboard__rail i:first-child {
	background: var(--rexsoft-blue);
	box-shadow: 0 0 0 5px rgba(10, 132, 255, 0.12);
}

.rexsoft-product-page-dashboard__content {
	min-width: 0;
	padding: clamp(1.1rem, 3vw, 1.8rem);
}

.rexsoft-product-page-dashboard__heading {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.rexsoft-product-page-dashboard__heading div {
	display: grid;
	gap: 0.25rem;
	min-width: 0;
}

.rexsoft-product-page-dashboard__heading div span {
	color: #7b8ba0;
	font-size: 0.62rem;
	font-weight: 750;
}

.rexsoft-product-page-dashboard__heading div b {
	color: #172033;
	font-size: 0.96rem;
	font-weight: 850;
	letter-spacing: -0.025em;
	line-height: 1.18;
}

.rexsoft-product-page-dashboard__heading > em {
	flex: 0 0 auto;
	padding: 0.28rem 0.42rem;
	color: #7b8ba0;
	font-size: 0.56rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
	background: #edf3f8;
	border-radius: 999px;
}

.rexsoft-product-page-dashboard__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.7rem;
	margin-top: 1.25rem;
}

.rexsoft-product-page-dashboard__stats > div {
	display: grid;
	align-content: center;
	min-width: 0;
	min-height: 76px;
	padding: 0.65rem 0.7rem;
	background: #ffffff;
	border: 1px solid #e0e9f1;
	border-radius: 9px;
	box-shadow: 0 8px 18px rgba(14, 43, 87, 0.06);
}

.rexsoft-product-page-dashboard__stats > div:first-child {
	background: linear-gradient(135deg, #ffffff, #dceeff);
	border-color: #b9dcff;
}

.rexsoft-product-page-dashboard__stats span {
	color: #7b8ba0;
	font-size: 0.55rem;
	font-weight: 700;
}

.rexsoft-product-page-dashboard__stats b {
	margin-top: 0.22rem;
	color: #172033;
	font-size: clamp(0.78rem, 1.5vw, 1rem);
	font-weight: 850;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.rexsoft-product-page-dashboard__stats i {
	margin-top: 0.28rem;
	color: #169a52;
	font-size: 0.52rem;
	font-style: normal;
	font-weight: 800;
}

.rexsoft-product-page-dashboard__orders {
	padding: 0.9rem 1rem;
	margin-top: 0.9rem;
	background: #ffffff;
	border: 1px solid #e0e9f1;
	border-radius: 9px;
}

.rexsoft-product-page-dashboard__orders > div {
	display: flex;
	justify-content: space-between;
	gap: 0.7rem;
	margin-bottom: 0.7rem;
	color: #7b8ba0;
	font-size: 0.58rem;
	font-weight: 750;
}

.rexsoft-product-page-dashboard__orders > div b {
	color: var(--rexsoft-blue);
	font-weight: 850;
}

.rexsoft-product-page-dashboard__orders > i {
	display: block;
	height: 0.46rem;
	margin-top: 0.48rem;
	background: linear-gradient(to right, #cbd8e5 56%, #eef3f8 56%);
	border-radius: 999px;
}

.rexsoft-product-page-dashboard__orders > i:nth-of-type(2) {
	background: linear-gradient(to right, #cbd8e5 76%, #eef3f8 76%);
}

.rexsoft-product-page-dashboard__orders > i:nth-of-type(3) {
	background: linear-gradient(to right, #cbd8e5 42%, #eef3f8 42%);
}

.rexsoft-product-page-dashboard__orders > i:nth-of-type(4) {
	background: linear-gradient(to right, #cbd8e5 66%, #eef3f8 66%);
}

.rexsoft-product-page-dashboard__floating {
	position: absolute;
	right: -1.15rem;
	bottom: 1.6rem;
	display: grid;
	gap: 0.2rem;
	width: 146px;
	padding: 0.75rem 0.85rem;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 13px;
	box-shadow: 0 16px 35px rgba(8, 26, 53, 0.23);
}

.rexsoft-product-page-dashboard__floating span {
	color: #15904f;
	font-size: 1rem;
	font-weight: 850;
	letter-spacing: -0.04em;
}

.rexsoft-product-page-dashboard__floating b {
	color: #526176;
	font-size: 0.58rem;
	line-height: 1.25;
}

/* =========================================================
   RexInvoicePro Detailseite
   ========================================================= */

.rexsoft-product-page-hero--invoice {
	background:
		radial-gradient(circle at 85% 16%, rgba(0, 200, 83, 0.25), transparent 24rem),
		radial-gradient(circle at 10% 86%, rgba(10, 132, 255, 0.16), transparent 22rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), #073f4b);
}

.rexsoft-product-page-hero--invoice .rexsoft-eyebrow,
.rexsoft-product-page-cta--invoice .rexsoft-eyebrow {
	color: #90efb7;
}

.rexsoft-product-page-hero--invoice .rexsoft-product-page-dashboard__bar > strong i {
	background: var(--rexsoft-green);
}

.rexsoft-product-page-hero--invoice .rexsoft-product-page-dashboard__bar > em {
	color: #c6f6d8;
}

.rexsoft-invoice-preview {
	position: relative;
	overflow: hidden;
	padding: 0.8rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 24px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.29);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rexsoft-invoice-preview__sheet {
	min-height: 330px;
	padding: clamp(1.15rem, 3vw, 2rem);
	background: #ffffff;
	border: 1px solid #a5e7c1;
	border-top: 0;
	border-radius: 0 0 14px 14px;
}

.rexsoft-invoice-preview__heading {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.65rem;
	padding-bottom: 1.3rem;
	border-bottom: 1px solid #e2efe8;
}

.rexsoft-invoice-preview__badge {
	display: grid;
	width: 2rem;
	height: 2rem;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 850;
	place-items: center;
	background: var(--rexsoft-green);
	border-radius: 0.55rem;
}

.rexsoft-invoice-preview__heading div:nth-child(2) {
	display: grid;
	gap: 0.14rem;
	min-width: 0;
}

.rexsoft-invoice-preview__heading span {
	color: #172033;
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.1;
}

.rexsoft-invoice-preview__heading div b {
	color: #7b8ba0;
	font-size: 0.55rem;
	font-weight: 750;
}

.rexsoft-invoice-preview__heading > strong {
	color: #169a52;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.rexsoft-invoice-preview__recipient {
	display: grid;
	gap: 0.45rem;
	width: 44%;
	margin: 1.35rem 0;
}

.rexsoft-invoice-preview__recipient i,
.rexsoft-invoice-preview__rows i {
	display: block;
	height: 0.42rem;
	background: #d8e3ed;
	border-radius: 999px;
}

.rexsoft-invoice-preview__recipient i:nth-child(2) {
	width: 74%;
}

.rexsoft-invoice-preview__recipient i:nth-child(3) {
	width: 59%;
}

.rexsoft-invoice-preview__rows {
	display: grid;
	gap: 0.48rem;
	padding: 0.8rem 0;
	border-top: 1px solid #dce6ee;
	border-bottom: 1px solid #dce6ee;
}

.rexsoft-invoice-preview__rows i {
	height: 0.44rem;
	background: linear-gradient(to right, #cbd8e5 68%, #edf3f8 68%);
}

.rexsoft-invoice-preview__rows i:nth-child(2) {
	background: linear-gradient(to right, #cbd8e5 83%, #edf3f8 83%);
}

.rexsoft-invoice-preview__rows i:nth-child(3) {
	background: linear-gradient(to right, #cbd8e5 54%, #edf3f8 54%);
}

.rexsoft-invoice-preview__rows i:nth-child(4) {
	background: linear-gradient(to right, #cbd8e5 74%, #edf3f8 74%);
}

.rexsoft-invoice-preview__footer {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1rem;
}

.rexsoft-invoice-preview__footer span {
	padding: 0.22rem 0.4rem;
	color: #15904f;
	font-size: 0.53rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(0, 200, 83, 0.12);
	border-radius: 999px;
}

.rexsoft-invoice-preview__footer b {
	color: #172033;
	font-size: 0.78rem;
	font-weight: 850;
}

.rexsoft-invoice-preview__floating {
	position: absolute;
	right: -1rem;
	bottom: 1.55rem;
	display: grid;
	gap: 0.2rem;
	width: 138px;
	padding: 0.72rem 0.8rem;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 13px;
	box-shadow: 0 16px 35px rgba(8, 26, 53, 0.23);
}

.rexsoft-invoice-preview__floating span {
	color: #15904f;
	font-size: 0.88rem;
	font-weight: 850;
	letter-spacing: -0.03em;
}

.rexsoft-invoice-preview__floating b {
	color: #526176;
	font-size: 0.58rem;
	line-height: 1.25;
}

.rexsoft-product-page-features--invoice .rexsoft-product-page-feature::after {
	background: radial-gradient(circle, rgba(0, 200, 83, 0.13), transparent 68%);
}

.rexsoft-product-page-features--invoice .rexsoft-product-page-feature > span,
.rexsoft-product-page-workflow--invoice .rexsoft-product-page-workflow__steps > li > span {
	color: #ffffff;
	background: var(--rexsoft-green);
}

.rexsoft-product-page-cta--invoice .rexsoft-product-page-cta__panel {
	background:
		radial-gradient(circle at 8% 6%, rgba(10, 132, 255, 0.3), transparent 26rem),
		radial-gradient(circle at 94% 88%, rgba(0, 200, 83, 0.28), transparent 23rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), #073f4b);
}

/* =========================================================
   Produktübersicht
   ========================================================= */

.rexsoft-products-page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	text-align: center;
	background:
		radial-gradient(circle at 80% 15%, rgba(10, 132, 255, 0.3), transparent 24rem),
		radial-gradient(circle at 14% 90%, rgba(0, 200, 83, 0.15), transparent 22rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
}

.rexsoft-products-page-hero::before,
.rexsoft-products-page-hero::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-products-page-hero::before {
	top: -22rem;
	right: -11rem;
	width: 38rem;
	height: 38rem;
}

.rexsoft-products-page-hero::after {
	bottom: -23rem;
	left: -14rem;
	width: 33rem;
	height: 33rem;
}

.rexsoft-products-page-hero__content {
	position: relative;
	z-index: 1;
	max-width: 920px;
}

.rexsoft-products-page-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-products-page-hero h1 {
	max-width: 860px;
	margin-right: auto;
	margin-bottom: 1.2rem;
	margin-left: auto;
	color: #ffffff;
}

.rexsoft-products-page-hero__content > p:not(.rexsoft-eyebrow) {
	max-width: 700px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.rexsoft-products-page-hero__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.15rem;
	padding: 0;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.84rem;
	font-weight: 700;
	list-style: none;
}

.rexsoft-products-page-hero__trust li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.rexsoft-products-page-hero__trust li::before {
	width: 0.42rem;
	height: 0.42rem;
	background: var(--rexsoft-green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.14);
	content: "";
}

.rexsoft-products-page-solutions {
	background: var(--rexsoft-background);
}

.rexsoft-products-page-solutions .rexsoft-product-card {
	min-height: 100%;
}

.rexsoft-products-page-cta {
	padding-top: clamp(4.5rem, 8vw, 7rem);
	padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

/* =========================================================
   Vorteile
   ========================================================= */

.rexsoft-benefits-page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background:
		radial-gradient(circle at 85% 17%, rgba(10, 132, 255, 0.3), transparent 24rem),
		radial-gradient(circle at 10% 86%, rgba(0, 200, 83, 0.15), transparent 22rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
}

.rexsoft-benefits-page-hero::before {
	position: absolute;
	top: -20rem;
	right: -13rem;
	width: 38rem;
	height: 38rem;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-benefits-page-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
	align-items: center;
	gap: clamp(2.5rem, 8vw, 8rem);
}

.rexsoft-benefits-page-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-benefits-page-hero h1 {
	max-width: 720px;
	margin-bottom: 1.3rem;
	color: #ffffff;
}

.rexsoft-benefits-page-hero__lead {
	max-width: 660px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.rexsoft-benefits-page-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.15rem;
	padding: 0;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.84rem;
	font-weight: 700;
	list-style: none;
}

.rexsoft-benefits-page-hero__trust li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.rexsoft-benefits-page-hero__trust li::before {
	width: 0.42rem;
	height: 0.42rem;
	background: var(--rexsoft-green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.14);
	content: "";
}

.rexsoft-benefits-page-hero__card {
	padding: clamp(1.6rem, 4vw, 2.5rem);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 22px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 48px rgba(0, 0, 0, 0.17);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rexsoft-benefits-page-hero__card > p {
	margin: 0 0 0.35rem;
	color: #91c7ff;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rexsoft-benefits-page-hero__card h2 {
	margin-bottom: 1.35rem;
	color: #ffffff;
	font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.rexsoft-benefits-page-hero__card ul {
	display: grid;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rexsoft-benefits-page-hero__card li {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	gap: 0.8rem;
	align-items: start;
}

.rexsoft-benefits-page-hero__card li > span {
	display: grid;
	width: 2rem;
	height: 2rem;
	color: #ffffff;
	font-size: 0.6rem;
	font-weight: 850;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.6rem;
}

.rexsoft-benefits-page-hero__card li div {
	display: grid;
	gap: 0.16rem;
}

.rexsoft-benefits-page-hero__card strong {
	color: #ffffff;
	font-size: 0.9rem;
}

.rexsoft-benefits-page-hero__card small {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.78rem;
	line-height: 1.35;
}

.rexsoft-benefits-page-values {
	background: var(--rexsoft-surface-muted);
}

.rexsoft-benefits-page-principles {
	background: #ffffff;
}

.rexsoft-benefits-page-principles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.rexsoft-benefits-page-principles__grid article {
	padding: clamp(1.5rem, 3vw, 2.15rem);
	background: var(--rexsoft-background);
	border: 1px solid var(--rexsoft-border);
	border-radius: var(--rexsoft-radius-medium);
}

.rexsoft-benefits-page-principles__grid span {
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 1.35rem;
	color: var(--rexsoft-blue);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	place-items: center;
	background: rgba(10, 132, 255, 0.1);
	border-radius: 0.75rem;
}

.rexsoft-benefits-page-principles__grid article:nth-child(2) span {
	color: #158c4d;
	background: rgba(0, 200, 83, 0.11);
}

.rexsoft-benefits-page-principles__grid h3 {
	margin-bottom: 0.65rem;
	font-size: 1.2rem;
}

.rexsoft-benefits-page-principles__grid p {
	margin: 0;
	font-size: 0.93rem;
}

.rexsoft-benefits-page-cta {
	padding-top: clamp(4.5rem, 8vw, 7rem);
	padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

/* =========================================================
   Über RexSoft
   ========================================================= */

.rexsoft-about-page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background:
		radial-gradient(circle at 84% 18%, rgba(10, 132, 255, 0.3), transparent 24rem),
		radial-gradient(circle at 10% 87%, rgba(0, 200, 83, 0.15), transparent 22rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
}

.rexsoft-about-page-hero::before {
	position: absolute;
	top: -20rem;
	right: -13rem;
	width: 38rem;
	height: 38rem;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-about-page-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
	align-items: center;
	gap: clamp(2.5rem, 8vw, 8rem);
}

.rexsoft-about-page-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-about-page-hero h1 {
	max-width: 720px;
	margin-bottom: 1.3rem;
	color: #ffffff;
}

.rexsoft-about-page-hero__lead {
	max-width: 660px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.rexsoft-about-page-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.15rem;
	padding: 0;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.84rem;
	font-weight: 700;
	list-style: none;
}

.rexsoft-about-page-hero__trust li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.rexsoft-about-page-hero__trust li::before {
	width: 0.42rem;
	height: 0.42rem;
	background: var(--rexsoft-green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.14);
	content: "";
}

.rexsoft-about-page-hero__card {
	position: relative;
	overflow: hidden;
	padding: clamp(1.6rem, 4vw, 2.5rem);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 22px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 48px rgba(0, 0, 0, 0.17);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rexsoft-about-page-hero__card > p {
	margin: 0 0 0.35rem;
	color: #91c7ff;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rexsoft-about-page-hero__card h2 {
	position: relative;
	z-index: 1;
	margin-bottom: 0.9rem;
	color: #ffffff;
	font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.rexsoft-about-page-hero__card > span {
	position: relative;
	z-index: 1;
	display: block;
	max-width: 320px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.93rem;
	line-height: 1.55;
}

.rexsoft-about-page-hero__card-mark {
	position: absolute;
	right: -1rem;
	bottom: -2.5rem;
	display: grid;
	width: 10rem;
	height: 10rem;
	color: rgba(255, 255, 255, 0.2);
	font-size: 5rem;
	font-weight: 850;
	place-items: center;
	background: linear-gradient(135deg, rgba(10, 132, 255, 0.65), rgba(0, 200, 83, 0.55));
	border-radius: 2rem;
	transform: rotate(-12deg);
}

.rexsoft-about-page-practice {
	background: var(--rexsoft-surface-muted);
}

.rexsoft-about-page-practice__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.rexsoft-about-page-practice__grid > div > p:last-child {
	max-width: 540px;
	margin-bottom: 0;
	font-size: 1.06rem;
}

.rexsoft-about-page-practice__steps {
	display: grid;
	gap: 0.8rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rexsoft-about-page-practice__steps li {
	display: grid;
	grid-template-columns: 2.8rem minmax(0, 1fr);
	gap: 1rem;
	padding: 1.2rem 1.3rem;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(14, 43, 87, 0.09);
	border-radius: var(--rexsoft-radius-small);
}

.rexsoft-about-page-practice__steps li > span {
	display: grid;
	width: 2.8rem;
	height: 2.8rem;
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.07em;
	place-items: center;
	background: var(--rexsoft-blue);
	border-radius: 0.8rem;
}

.rexsoft-about-page-practice__steps li:nth-child(2) > span {
	background: #168eaf;
}

.rexsoft-about-page-practice__steps li:nth-child(3) > span {
	background: var(--rexsoft-green);
}

.rexsoft-about-page-practice__steps h3 {
	margin-bottom: 0.3rem;
	font-size: 1.05rem;
}

.rexsoft-about-page-practice__steps p {
	margin: 0;
	font-size: 0.9rem;
}

.rexsoft-about-page-principles {
	background: #ffffff;
}

.rexsoft-about-page-principles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.rexsoft-about-page-principles__grid article {
	padding: clamp(1.5rem, 3vw, 2.15rem);
	background: var(--rexsoft-background);
	border: 1px solid var(--rexsoft-border);
	border-radius: var(--rexsoft-radius-medium);
}

.rexsoft-about-page-principles__grid span {
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 1.35rem;
	color: var(--rexsoft-blue);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	place-items: center;
	background: rgba(10, 132, 255, 0.1);
	border-radius: 0.75rem;
}

.rexsoft-about-page-principles__grid article:nth-child(2) span {
	color: #168eaf;
	background: rgba(22, 142, 175, 0.11);
}

.rexsoft-about-page-principles__grid article:nth-child(3) span {
	color: #158c4d;
	background: rgba(0, 200, 83, 0.11);
}

.rexsoft-about-page-principles__grid h3 {
	margin-bottom: 0.65rem;
	font-size: 1.2rem;
}

.rexsoft-about-page-principles__grid p {
	margin: 0;
	font-size: 0.93rem;
}

.rexsoft-about-page-cta {
	padding-top: clamp(4.5rem, 8vw, 7rem);
	padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

/* =========================================================
   Rechtliche Seiten
   ========================================================= */

.rexsoft-legal-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background:
		radial-gradient(circle at 85% 15%, rgba(10, 132, 255, 0.25), transparent 24rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
}

.rexsoft-legal-hero::before {
	position: absolute;
	top: -23rem;
	right: -12rem;
	width: 38rem;
	height: 38rem;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-legal-hero__content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.rexsoft-legal-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-legal-hero h1 {
	margin-bottom: 1.1rem;
	color: #ffffff;
}

.rexsoft-legal-hero p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.18rem);
}

.rexsoft-legal-hero small {
	display: block;
	margin-top: 1.2rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.8rem;
	font-weight: 700;
}

.rexsoft-legal-content {
	background: var(--rexsoft-background);
}

.rexsoft-legal-content__inner {
	display: grid;
	gap: 1.15rem;
	max-width: 900px;
}

.rexsoft-legal-content article {
	padding: clamp(1.35rem, 3vw, 2rem);
	background: #ffffff;
	border: 1px solid var(--rexsoft-border);
	border-radius: var(--rexsoft-radius-small);
	box-shadow: 0 10px 26px rgba(14, 43, 87, 0.045);
}

.rexsoft-legal-content h2 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.rexsoft-legal-content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
}

.rexsoft-legal-card--company {
	background:
		radial-gradient(circle at 94% 100%, rgba(10, 132, 255, 0.11), transparent 18rem),
		#ffffff !important;
}

.rexsoft-legal-content address {
	margin: 0 0 1rem;
	color: var(--rexsoft-text-muted);
	font-size: 0.96rem;
	font-style: normal;
	line-height: 1.65;
}

.rexsoft-legal-content address strong {
	color: var(--rexsoft-text);
	font-size: 1.04rem;
}

.rexsoft-legal-content a {
	color: var(--rexsoft-blue-dark);
	font-weight: 750;
	text-decoration: underline;
	text-decoration-color: rgba(10, 132, 255, 0.35);
	text-underline-offset: 0.16em;
}

.rexsoft-legal-content a:hover,
.rexsoft-legal-content a:focus-visible {
	color: var(--rexsoft-blue);
}

/* =========================================================
   Kontaktseite
   ========================================================= */

.rexsoft-contact-page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background:
		radial-gradient(circle at 88% 20%, rgba(10, 132, 255, 0.3), transparent 24rem),
		radial-gradient(circle at 8% 88%, rgba(0, 200, 83, 0.15), transparent 22rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
}

.rexsoft-contact-page-hero::before {
	position: absolute;
	top: -18rem;
	right: -13rem;
	width: 38rem;
	height: 38rem;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-contact-page-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
	align-items: center;
	gap: clamp(2.5rem, 8vw, 8rem);
}

.rexsoft-contact-page-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-contact-page-hero h1 {
	max-width: 730px;
	margin-bottom: 1.3rem;
	color: #ffffff;
}

.rexsoft-contact-page-hero__lead {
	max-width: 660px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.rexsoft-contact-page-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.15rem;
	padding: 0;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.84rem;
	font-weight: 700;
	list-style: none;
}

.rexsoft-contact-page-hero__trust li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.rexsoft-contact-page-hero__trust li::before {
	width: 0.42rem;
	height: 0.42rem;
	background: var(--rexsoft-green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.14);
	content: "";
}

.rexsoft-contact-page-hero__card {
	padding: clamp(1.6rem, 4vw, 2.5rem);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 22px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 48px rgba(0, 0, 0, 0.17);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rexsoft-contact-page-hero__card-mark {
	display: grid;
	width: 2.8rem;
	height: 2.8rem;
	margin-bottom: 1.2rem;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 850;
	place-items: center;
	background: linear-gradient(135deg, var(--rexsoft-blue), var(--rexsoft-green));
	border-radius: 0.85rem;
}

.rexsoft-contact-page-hero__card > p {
	margin: 0 0 0.35rem;
	color: #91c7ff;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rexsoft-contact-page-hero__card h2 {
	margin-bottom: 1.25rem;
	color: #ffffff;
	font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}

.rexsoft-contact-page-hero__card ol {
	display: grid;
	gap: 0.8rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rexsoft-contact-page-hero__card li {
	display: grid;
	grid-template-columns: 1.8rem minmax(0, 1fr);
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	font-weight: 700;
}

.rexsoft-contact-page-hero__card li span {
	display: grid;
	width: 1.8rem;
	height: 1.8rem;
	color: #ffffff;
	font-size: 0.58rem;
	font-weight: 850;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.55rem;
}

.rexsoft-contact-form-section {
	background: var(--rexsoft-background);
}

.rexsoft-contact-form-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
	align-items: start;
	gap: clamp(2.5rem, 8vw, 8rem);
}

.rexsoft-contact-form-section__intro > p:not(.rexsoft-eyebrow) {
	max-width: 450px;
	margin-bottom: 0;
	font-size: 1.05rem;
}

.rexsoft-contact-form-section__assurance {
	display: grid;
	grid-template-columns: 2.3rem minmax(0, 1fr);
	gap: 0.8rem;
	max-width: 450px;
	padding-top: 1.5rem;
	margin-top: 1.7rem;
	border-top: 1px solid var(--rexsoft-border);
}

.rexsoft-contact-form-section__assurance > span {
	display: grid;
	width: 2.3rem;
	height: 2.3rem;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 850;
	place-items: center;
	background: var(--rexsoft-green);
	border-radius: 0.7rem;
}

.rexsoft-contact-form-section__assurance p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.55;
}

.rexsoft-contact-form-section__assurance strong {
	display: block;
	margin-bottom: 0.1rem;
	color: var(--rexsoft-text);
}

.rexsoft-contact-form-wrap {
	padding: clamp(1.3rem, 4vw, 2.4rem);
	background: #ffffff;
	border: 1px solid var(--rexsoft-border);
	border-radius: var(--rexsoft-radius-medium);
	box-shadow: var(--rexsoft-shadow-soft);
}

.rexsoft-contact-form__notice {
	margin: 0 0 1.2rem;
	padding: 0.9rem 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	border-radius: 0.7rem;
}

.rexsoft-contact-form__notice--success {
	color: #137d44;
	background: rgba(0, 200, 83, 0.1);
	border: 1px solid rgba(0, 200, 83, 0.23);
}

.rexsoft-contact-form__notice--error {
	color: #b33c3c;
	background: rgba(224, 82, 82, 0.09);
	border: 1px solid rgba(224, 82, 82, 0.2);
}

.rexsoft-contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.rexsoft-contact-form__field {
	display: grid;
	gap: 0.48rem;
	padding: 0;
	margin: 0;
}

.rexsoft-contact-form__field--wide {
	grid-column: 1 / -1;
}

.rexsoft-contact-form label {
	color: var(--rexsoft-text);
	font-size: 0.83rem;
	font-weight: 800;
}

.rexsoft-contact-form label span {
	color: var(--rexsoft-blue);
}

.rexsoft-contact-form input:not([type="checkbox"]),
.rexsoft-contact-form textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	color: var(--rexsoft-text);
	font: inherit;
	font-size: 0.95rem;
	background: #f9fbfd;
	border: 1px solid #d8e3ed;
	border-radius: 0.65rem;
	outline: 0;
	transition: border-color var(--rexsoft-transition), box-shadow var(--rexsoft-transition), background var(--rexsoft-transition);
}

.rexsoft-contact-form textarea {
	min-height: 9rem;
	resize: vertical;
}

.rexsoft-contact-form input:not([type="checkbox"]):focus,
.rexsoft-contact-form textarea:focus {
	background: #ffffff;
	border-color: var(--rexsoft-blue);
	box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
}

.rexsoft-contact-form__consent {
	margin: 1.2rem 0 0;
}

.rexsoft-contact-form__consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: var(--rexsoft-text-muted);
	font-size: 0.79rem;
	font-weight: 650;
	line-height: 1.45;
}

.rexsoft-contact-form__consent input {
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
	margin: 0.1rem 0 0;
	accent-color: var(--rexsoft-blue);
}

.rexsoft-contact-form .rexsoft-button {
	margin-top: 1.35rem;
}

.rexsoft-contact-form .rexsoft-button b {
	margin-left: 0.35rem;
	font-size: 1.15rem;
	line-height: 0.5;
	transition: transform var(--rexsoft-transition);
}

.rexsoft-contact-form .rexsoft-button:hover b,
.rexsoft-contact-form .rexsoft-button:focus-visible b {
	transform: translateX(4px);
}

.rexsoft-contact-form__required {
	margin: 0.9rem 0 0;
	color: var(--rexsoft-text-muted);
	font-size: 0.72rem;
}

.rexsoft-contact-form__honeypot {
	position: absolute;
	left: -9999px;
	overflow: hidden;
	width: 1px;
	height: 1px;
}

.rexsoft-product-page-features {
	background: var(--rexsoft-background);
}

.rexsoft-product-page-features__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.rexsoft-product-page-feature {
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 3vw, 2.15rem);
	background: #ffffff;
	border: 1px solid var(--rexsoft-border);
	border-radius: var(--rexsoft-radius-medium);
	box-shadow: var(--rexsoft-shadow-soft);
}

.rexsoft-product-page-feature::after {
	position: absolute;
	top: -3rem;
	right: -3rem;
	width: 9rem;
	height: 9rem;
	background: radial-gradient(circle, rgba(10, 132, 255, 0.13), transparent 68%);
	content: "";
}

.rexsoft-product-page-feature > span {
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 1.4rem;
	color: var(--rexsoft-blue);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	place-items: center;
	background: rgba(10, 132, 255, 0.1);
	border-radius: 0.75rem;
}

.rexsoft-product-page-feature h3 {
	margin-bottom: 0.65rem;
	font-size: 1.25rem;
}

.rexsoft-product-page-feature p {
	margin: 0;
	font-size: 0.93rem;
}

.rexsoft-product-page-workflow {
	background: var(--rexsoft-surface-muted);
}

.rexsoft-product-page-workflow__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.rexsoft-product-page-workflow__grid > div > p:last-child {
	max-width: 520px;
	margin-bottom: 0;
	font-size: 1.06rem;
}

.rexsoft-product-page-workflow__steps {
	display: grid;
	gap: 0.8rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rexsoft-product-page-workflow__steps li {
	display: grid;
	grid-template-columns: 2.8rem minmax(0, 1fr);
	gap: 1rem;
	padding: 1.2rem 1.3rem;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(14, 43, 87, 0.09);
	border-radius: var(--rexsoft-radius-small);
}

.rexsoft-product-page-workflow__steps > li > span {
	display: grid;
	width: 2.8rem;
	height: 2.8rem;
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.07em;
	place-items: center;
	background: var(--rexsoft-blue);
	border-radius: 0.8rem;
}

.rexsoft-product-page-workflow__steps h3 {
	margin-bottom: 0.3rem;
	font-size: 1.05rem;
}

.rexsoft-product-page-workflow__steps p {
	margin: 0;
	font-size: 0.9rem;
}

.rexsoft-product-page-cta {
	padding-top: clamp(4.5rem, 8vw, 7rem);
	padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.rexsoft-product-page-cta__panel {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 6vw, 5rem);
	text-align: center;
	background:
		radial-gradient(circle at 8% 6%, rgba(10, 132, 255, 0.38), transparent 26rem),
		radial-gradient(circle at 94% 88%, rgba(0, 200, 83, 0.2), transparent 23rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
	border-radius: var(--rexsoft-radius-large);
	box-shadow: var(--rexsoft-shadow-card);
}

.rexsoft-product-page-cta__panel .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-product-page-cta__panel h2 {
	margin-bottom: 1rem;
	color: #ffffff;
}

.rexsoft-product-page-cta__panel > p:not(.rexsoft-eyebrow) {
	max-width: 640px;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.08rem;
}

.rexsoft-product-page-cta__panel .rexsoft-button {
	background: #ffffff;
	color: var(--rexsoft-blue-dark);
	border-color: #ffffff;
	box-shadow: none;
}

.rexsoft-product-page-cta__panel .rexsoft-button:hover,
.rexsoft-product-page-cta__panel .rexsoft-button:focus-visible {
	background: #dceeff;
	border-color: #dceeff;
	box-shadow: none;
}

/* =========================================================
   Vorteile und Abschluss
   ========================================================= */

.rexsoft-value-section {
	position: relative;
	overflow: hidden;
	background: var(--rexsoft-surface-muted);
}

.rexsoft-value-section::before {
	position: absolute;
	top: -17rem;
	right: -13rem;
	width: 35rem;
	height: 35rem;
	background: radial-gradient(circle, rgba(10, 132, 255, 0.11), transparent 68%);
	content: "";
	pointer-events: none;
}

.rexsoft-value-section__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: start;
}

.rexsoft-value-section__grid > div:first-child > p:last-child {
	max-width: 540px;
	margin-bottom: 0;
	font-size: 1.08rem;
}

.rexsoft-value-grid {
	position: relative;
	display: grid;
	gap: 1rem;
}

.rexsoft-value-grid::before {
	position: absolute;
	top: 2.25rem;
	bottom: 2.25rem;
	left: 1.65rem;
	width: 1px;
	background: linear-gradient(to bottom, rgba(10, 132, 255, 0.36), rgba(10, 132, 255, 0.06));
	content: "";
}

.rexsoft-value-card {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 3.3rem minmax(0, 1fr);
	gap: 1.3rem;
	padding: 1.45rem 1.6rem;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(14, 43, 87, 0.1);
	border-radius: var(--rexsoft-radius-small);
	box-shadow: 0 12px 30px rgba(14, 43, 87, 0.05);
	transition: border-color var(--rexsoft-transition), box-shadow var(--rexsoft-transition), transform var(--rexsoft-transition);
}

.rexsoft-value-card:hover {
	border-color: rgba(10, 132, 255, 0.3);
	box-shadow: var(--rexsoft-shadow-soft);
	transform: translateX(5px);
}

.rexsoft-value-card__number {
	display: grid;
	width: 3.3rem;
	height: 3.3rem;
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1;
	place-items: center;
	background: linear-gradient(135deg, var(--rexsoft-blue-dark), var(--rexsoft-blue));
	border: 4px solid var(--rexsoft-surface-muted);
	border-radius: 1rem;
	box-shadow: 0 10px 22px rgba(10, 132, 255, 0.2);
}

.rexsoft-value-card:nth-child(2) .rexsoft-value-card__number {
	background: linear-gradient(135deg, var(--rexsoft-blue-dark), #1d9bdb);
}

.rexsoft-value-card:nth-child(3) .rexsoft-value-card__number {
	background: linear-gradient(135deg, var(--rexsoft-blue-dark), #15904f);
}

.rexsoft-value-card__content {
	min-width: 0;
}

.rexsoft-value-card__eyebrow {
	margin: 0 0 0.35rem;
	color: var(--rexsoft-blue);
	font-size: 0.69rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.rexsoft-value-card h3 {
	margin-bottom: 0.4rem;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
}

.rexsoft-value-card__content > p:last-child {
	margin: 0;
	font-size: 0.94rem;
}

.rexsoft-contact-cta {
	padding-top: clamp(4.5rem, 8vw, 7rem);
	padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.rexsoft-contact-cta__panel {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 6rem);
	padding: clamp(2rem, 6vw, 5rem);
	background:
		radial-gradient(circle at 10% 0%, rgba(10, 132, 255, 0.38), transparent 27rem),
		radial-gradient(circle at 94% 86%, rgba(0, 200, 83, 0.2), transparent 23rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep), var(--rexsoft-blue-dark));
	border-radius: var(--rexsoft-radius-large);
	box-shadow: var(--rexsoft-shadow-card);
}

.rexsoft-contact-cta__panel .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-contact-cta__content {
	position: relative;
	z-index: 1;
}

.rexsoft-contact-cta__content h2 {
	max-width: 670px;
	margin-bottom: 1rem;
	color: #ffffff;
}

.rexsoft-contact-cta__lead {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.08rem;
}

.rexsoft-contact-cta__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.15rem;
	padding: 0;
	margin: 1.75rem 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.82rem;
	font-weight: 700;
	list-style: none;
}

.rexsoft-contact-cta__trust li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.rexsoft-contact-cta__trust li::before {
	width: 0.42rem;
	height: 0.42rem;
	background: var(--rexsoft-green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.14);
	content: "";
}

.rexsoft-contact-cta__action {
	position: relative;
	z-index: 1;
	padding: clamp(1.45rem, 3vw, 2rem);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 38px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rexsoft-contact-cta__action > p {
	margin: 0 0 0.4rem;
	color: #91c7ff;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	line-height: 1.35;
	text-transform: uppercase;
}

.rexsoft-contact-cta__action h3 {
	margin-bottom: 0.65rem;
	color: #ffffff;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	letter-spacing: -0.03em;
}

.rexsoft-contact-cta__action > span {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.91rem;
	line-height: 1.55;
}

.rexsoft-contact-cta__panel .rexsoft-button {
	width: 100%;
	margin-top: 1.5rem;
	background: #ffffff;
	color: var(--rexsoft-blue-dark);
	border-color: #ffffff;
	box-shadow: none;
}

.rexsoft-contact-cta__panel .rexsoft-button b {
	margin-left: 0.35rem;
	font-size: 1.2rem;
	line-height: 0.5;
	transition: transform var(--rexsoft-transition);
}

.rexsoft-contact-cta__panel .rexsoft-button:hover b,
.rexsoft-contact-cta__panel .rexsoft-button:focus-visible b {
	transform: translateX(4px);
}

.rexsoft-contact-cta__action small {
	display: block;
	margin-top: 0.85rem;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.7rem;
	font-weight: 650;
	text-align: center;
}

.rexsoft-contact-cta__panel .rexsoft-button:hover,
.rexsoft-contact-cta__panel .rexsoft-button:focus-visible {
	background: #dceeff;
	border-color: #dceeff;
	box-shadow: none;
}

/* =========================================================
   Footer
   ========================================================= */

.rexsoft-footer {
	padding: clamp(3.5rem, 7vw, 6rem) 0 1.5rem;
	background: var(--rexsoft-footer);
}

.rexsoft-footer__top {
	display: grid;
	grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(3rem, 7vw, 7rem);
	padding-bottom: 3rem;
}

.rexsoft-footer__wordmark,
.rexsoft-footer .custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 850;
	letter-spacing: -0.04em;
}

.rexsoft-footer__wordmark:hover,
.rexsoft-footer__wordmark:focus,
.rexsoft-footer .custom-logo-link:hover,
.rexsoft-footer .custom-logo-link:focus {
	color: #ffffff;
}

.rexsoft-footer .custom-logo-link {
	padding: 0.5rem 0.65rem;
	background: #ffffff;
	border-radius: 0.7rem;
}

.rexsoft-footer .custom-logo {
	width: auto;
	max-width: 175px;
	max-height: 34px;
}

.rexsoft-footer .rexsoft-wordmark__mark {
	background: linear-gradient(135deg, var(--rexsoft-blue), #54adff);
}

.rexsoft-footer__brand p {
	max-width: 390px;
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.93rem;
}

.rexsoft-footer__navigation {
	display: grid;
	grid-template-columns: repeat(4, minmax(110px, 1fr));
	gap: 2rem clamp(1.5rem, 3vw, 3rem);
}

.rexsoft-footer h2 {
	margin-bottom: 0.9rem;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rexsoft-footer-menu {
	display: grid;
	gap: 0.55rem;
}

.rexsoft-footer-menu a {
	position: relative;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.9rem;
}

.rexsoft-footer-menu a:hover,
.rexsoft-footer-menu a:focus {
	color: #ffffff;
}

.rexsoft-footer-menu a::after {
	position: absolute;
	right: 0;
	bottom: -0.12rem;
	left: 0;
	height: 1px;
	background: currentcolor;
	content: "";
	opacity: 0;
	transform: scaleX(0.55);
	transform-origin: left;
	transition: opacity var(--rexsoft-transition), transform var(--rexsoft-transition);
}

.rexsoft-footer-menu a:hover::after,
.rexsoft-footer-menu a:focus-visible::after {
	opacity: 0.8;
	transform: scaleX(1);
}

.rexsoft-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.45rem;
	color: rgba(255, 255, 255, 0.46);
	font-size: 0.78rem;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.rexsoft-footer__bottom p {
	margin: 0;
	color: inherit;
}

/* =========================================================
   Responsive Navigation
   ========================================================= */

@media (max-width: 920px) {
	body.rexsoft-menu-is-open {
		overflow: hidden;
	}

	.rexsoft-nav-toggle {
		display: flex;
		margin-left: auto;
	}

	.rexsoft-navigation {
		position: absolute;
		top: calc(100% + 0.6rem);
		right: 0;
		left: auto;
		display: grid;
		width: min(100%, 420px);
		max-height: calc(100vh - 5.5rem);
		padding: 0.75rem;
		overflow-y: auto;
		visibility: hidden;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid var(--rexsoft-border);
		border-radius: var(--rexsoft-radius-small);
		opacity: 0;
		box-shadow: var(--rexsoft-shadow-card);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		transform: translateY(-0.5rem);
		transition: opacity var(--rexsoft-transition), transform var(--rexsoft-transition), visibility var(--rexsoft-transition);
	}

	.rexsoft-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.rexsoft-menu {
		display: grid;
		gap: 0.2rem;
	}

	.rexsoft-menu > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.rexsoft-menu > li > a {
		display: flex;
		padding: 0.8rem 0.9rem;
		border-radius: 9px;
	}

	.rexsoft-menu > li > a:hover,
	.rexsoft-menu > li > a.is-active,
	.rexsoft-menu > .current-menu-item > a,
	.rexsoft-menu > .current_page_item > a {
		background: var(--rexsoft-surface-muted);
	}

	.rexsoft-menu > li > a::before,
	.rexsoft-menu > li > a::after {
		display: none;
	}

	.rexsoft-submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		min-height: 38px;
		padding: 0;
		margin-right: 0.25rem;
		background: transparent;
		color: var(--rexsoft-text);
		border: 1px solid transparent;
		border-radius: 9px;
		box-shadow: none;
	}

	.rexsoft-submenu-toggle:hover,
	.rexsoft-submenu-toggle:focus-visible {
		background: var(--rexsoft-surface-muted);
		color: var(--rexsoft-blue);
		border-color: var(--rexsoft-border);
		box-shadow: none;
		transform: none;
	}

	.rexsoft-submenu-toggle span {
		width: 0.5rem;
		height: 0.5rem;
		border-right: 1.5px solid currentcolor;
		border-bottom: 1.5px solid currentcolor;
		transform: translateY(-18%) rotate(45deg);
		transition: transform var(--rexsoft-transition);
	}

	.rexsoft-submenu-toggle[aria-expanded="true"] span {
		transform: translateY(18%) rotate(225deg);
	}

	.rexsoft-menu .sub-menu {
		position: static;
		display: none;
		grid-column: 1 / -1;
		gap: 0.2rem;
		padding: 0.25rem 0 0.25rem 1rem;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.rexsoft-menu .menu-item-has-children.is-submenu-open > .sub-menu {
		display: grid;
	}

	.rexsoft-menu .sub-menu a {
		padding: 0.7rem 0.9rem;
	}

	.rexsoft-navigation__cta {
		display: flex;
		width: calc(100% - 0.5rem);
		margin: 0.65rem 0.25rem 0.2rem;
	}

	.rexsoft-nav-toggle[aria-expanded="true"] .rexsoft-nav-toggle__line:nth-of-type(2) {
		transform: translateY(7px) rotate(45deg);
	}

	.rexsoft-nav-toggle[aria-expanded="true"] .rexsoft-nav-toggle__line:nth-of-type(3) {
		opacity: 0;
	}

	.rexsoft-nav-toggle[aria-expanded="true"] .rexsoft-nav-toggle__line:nth-of-type(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.rexsoft-hero__grid,
	.rexsoft-value-section__grid {
		/* minmax(0, 1fr) verhindert Überbreite durch lange Wörter. */
		grid-template-columns: minmax(0, 1fr);
	}

	.rexsoft-contact-cta__panel {
		grid-template-columns: minmax(0, 1fr);
		gap: 2rem;
	}

	.rexsoft-contact-cta__action {
		width: min(100%, 540px);
	}

	.rexsoft-hero__content {
		min-width: 0;
	}

	.rexsoft-hero__visual {
		max-width: 640px;
	}
}

@media (max-width: 700px) {
	.rexsoft-header__inner {
		min-height: 68px;
		gap: 0.7rem;
	}

	.rexsoft-brand__claim,
	.rexsoft-header__cta {
		display: none;
	}

	.rexsoft-product-grid {
		grid-template-columns: 1fr;
	}

	.rexsoft-footer__top {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.rexsoft-footer__navigation {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
	}

	.rexsoft-footer__bottom {
		flex-direction: column;
	}

	.rexsoft-contact-cta__panel {
		border-radius: 24px;
	}
}

@media (max-width: 480px) {
	.rexsoft-container {
		width: min(100% - 1.25rem, 1240px);
	}

	/*
	 * Deutsche zusammengesetzte Wörter wie „Softwarelösungen“ müssen
	 * auch in einer 320px-Ansicht innerhalb des Hero-Bereichs bleiben.
	 */
	.rexsoft-hero {
		padding-top: 3.25rem;
	}

	.rexsoft-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-hero__lead {
		font-size: 1rem;
	}

	.rexsoft-hero__visual {
		width: min(100%, 270px);
		margin-inline: auto;
	}

	.rexsoft-dashboard {
		padding: 0.65rem;
		border-radius: 20px;
	}

	.rexsoft-dashboard__bar {
		min-height: 38px;
		padding: 0 0.55rem;
		border-radius: 11px 11px 0 0;
	}

	.rexsoft-dashboard__window-dot {
		width: 0.42rem;
		height: 0.42rem;
	}

	.rexsoft-dashboard__brand {
		gap: 0.28rem;
		margin-left: 0.25rem;
		font-size: 0.57rem;
	}

	.rexsoft-dashboard__brand span {
		width: 1rem;
		height: 1rem;
		font-size: 0.58rem;
	}

	.rexsoft-dashboard__status {
		padding: 0.17rem 0.34rem;
		font-size: 0.49rem;
	}

	.rexsoft-dashboard__content {
		padding: 0.85rem;
	}

	.rexsoft-dashboard__heading {
		gap: 0.35rem;
	}

	.rexsoft-dashboard__title {
		font-size: 0.78rem;
	}

	.rexsoft-dashboard__date {
		padding: 0.22rem 0.32rem;
		font-size: 0.5rem;
	}

	/* Inline-Flex würde die lange Oberzeile auf einer einzelnen Zeile halten. */
	.rexsoft-hero .rexsoft-eyebrow {
		display: block;
		max-width: 100%;
		letter-spacing: 0.09em;
		white-space: normal;
	}

	.rexsoft-hero .rexsoft-eyebrow::before {
		display: inline-block;
		margin-right: 0.55rem;
		vertical-align: middle;
	}

	.rexsoft-dashboard__body {
		grid-template-columns: 40px 1fr;
		min-height: 238px;
	}

	.rexsoft-dashboard__sidebar {
		gap: 0.72rem;
		padding-top: 1.25rem;
	}

	.rexsoft-dashboard__sidebar i {
		width: 16px;
		height: 16px;
		border-radius: 5px;
	}

	.rexsoft-dashboard__stats {
		gap: 0.45rem;
		margin-top: 0.85rem;
	}

	.rexsoft-dashboard__stats div {
		min-height: 56px;
		padding: 0.45rem;
	}

	.rexsoft-dashboard__stats strong {
		font-size: 0.64rem;
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.rexsoft-dashboard__stats span {
		font-size: 0.49rem;
		overflow-wrap: anywhere;
	}

	.rexsoft-dashboard__stats em {
		font-size: 0.48rem;
	}

	.rexsoft-dashboard__chart {
		height: 100px;
		padding: 0.65rem 0.75rem;
		margin-top: 0.65rem;
	}

	.rexsoft-dashboard__chart-bars {
		gap: 0.35rem;
		height: 56px;
		margin-top: 0.35rem;
	}

	.rexsoft-value-card {
		grid-template-columns: 2.7rem minmax(0, 1fr);
		gap: 0.9rem;
		padding: 1.1rem;
	}

	.rexsoft-value-card__number {
		width: 2.7rem;
		height: 2.7rem;
		font-size: 0.68rem;
		border-radius: 0.8rem;
	}

	.rexsoft-value-grid::before {
		left: 1.35rem;
	}
}

@media (max-width: 920px) {
	.rexsoft-product-page-hero__grid,
	.rexsoft-product-page-workflow__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.rexsoft-product-page-hero__visual {
		width: min(100%, 620px);
		margin-inline: auto;
	}

	.rexsoft-product-page-hero__content {
		min-width: 0;
	}
}

@media (max-width: 700px) {
	.rexsoft-product-page-hero {
		padding-top: 3.5rem;
	}

	.rexsoft-product-page-features__grid {
		grid-template-columns: 1fr;
	}

	.rexsoft-product-page-feature {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.rexsoft-product-page-hero__back {
		margin-bottom: 1.2rem;
	}

	.rexsoft-product-page-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-product-page-hero__lead {
		font-size: 1rem;
	}

	.rexsoft-product-page-hero__visual {
		width: min(100%, 280px);
	}

	.rexsoft-product-page-dashboard {
		padding: 0.62rem;
		border-radius: 20px;
	}

	.rexsoft-product-page-dashboard__bar {
		min-height: 38px;
		padding: 0 0.5rem;
		border-radius: 11px 11px 0 0;
	}

	.rexsoft-product-page-dashboard__bar > span {
		width: 0.4rem;
		height: 0.4rem;
	}

	.rexsoft-product-page-dashboard__bar > strong {
		gap: 0.25rem;
		margin-left: 0.2rem;
		font-size: 0.55rem;
	}

	.rexsoft-product-page-dashboard__bar > strong i {
		width: 0.95rem;
		height: 0.95rem;
		font-size: 0.54rem;
	}

	.rexsoft-product-page-dashboard__bar > em {
		padding: 0.15rem 0.3rem;
		font-size: 0.46rem;
	}

	.rexsoft-product-page-dashboard__body {
		grid-template-columns: 40px minmax(0, 1fr);
		min-height: 248px;
	}

	.rexsoft-product-page-dashboard__rail {
		gap: 0.7rem;
		padding-top: 1.3rem;
	}

	.rexsoft-product-page-dashboard__rail i {
		width: 14px;
		height: 14px;
		border-radius: 4px;
	}

	.rexsoft-product-page-dashboard__content {
		padding: 0.85rem;
	}

	.rexsoft-product-page-dashboard__heading {
		gap: 0.35rem;
	}

	.rexsoft-product-page-dashboard__heading div span {
		font-size: 0.54rem;
	}

	.rexsoft-product-page-dashboard__heading div b {
		font-size: 0.76rem;
	}

	.rexsoft-product-page-dashboard__heading > em {
		padding: 0.2rem 0.3rem;
		font-size: 0.48rem;
	}

	.rexsoft-product-page-dashboard__stats {
		gap: 0.38rem;
		margin-top: 0.82rem;
	}

	.rexsoft-product-page-dashboard__stats > div {
		min-height: 58px;
		padding: 0.42rem;
	}

	.rexsoft-product-page-dashboard__stats span {
		font-size: 0.46rem;
		overflow-wrap: anywhere;
	}

	.rexsoft-product-page-dashboard__stats b {
		font-size: 0.66rem;
		overflow-wrap: anywhere;
	}

	.rexsoft-product-page-dashboard__stats i {
		font-size: 0.46rem;
	}

	.rexsoft-product-page-dashboard__orders {
		padding: 0.65rem 0.72rem;
		margin-top: 0.62rem;
	}

	.rexsoft-product-page-dashboard__orders > div {
		margin-bottom: 0.5rem;
		font-size: 0.5rem;
	}

	.rexsoft-product-page-dashboard__orders > i {
		height: 0.36rem;
		margin-top: 0.36rem;
	}

	.rexsoft-product-page-dashboard__floating {
		display: none;
	}

	.rexsoft-invoice-preview {
		padding: 0.62rem;
		border-radius: 20px;
	}

	.rexsoft-invoice-preview__sheet {
		min-height: 248px;
		padding: 0.85rem;
		border-radius: 0 0 11px 11px;
	}

	.rexsoft-invoice-preview__heading {
		grid-template-columns: 1.65rem minmax(0, 1fr) auto;
		gap: 0.45rem;
		padding-bottom: 0.85rem;
	}

	.rexsoft-invoice-preview__badge {
		width: 1.65rem;
		height: 1.65rem;
		font-size: 0.74rem;
		border-radius: 0.48rem;
	}

	.rexsoft-invoice-preview__heading span,
	.rexsoft-invoice-preview__heading > strong {
		font-size: 0.62rem;
	}

	.rexsoft-invoice-preview__heading div b {
		font-size: 0.47rem;
	}

	.rexsoft-invoice-preview__recipient {
		gap: 0.34rem;
		margin: 0.9rem 0;
	}

	.rexsoft-invoice-preview__recipient i,
	.rexsoft-invoice-preview__rows i {
		height: 0.32rem;
	}

	.rexsoft-invoice-preview__rows {
		gap: 0.36rem;
		padding: 0.62rem 0;
	}

	.rexsoft-invoice-preview__footer {
		padding-top: 0.7rem;
	}

	.rexsoft-invoice-preview__footer span {
		font-size: 0.45rem;
	}

	.rexsoft-invoice-preview__footer b {
		font-size: 0.64rem;
	}

	.rexsoft-invoice-preview__floating {
		display: none;
	}

	.rexsoft-product-page-workflow__steps li {
		grid-template-columns: 2.5rem minmax(0, 1fr);
		gap: 0.8rem;
		padding: 1rem;
	}

	.rexsoft-product-page-workflow__steps > li > span {
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 0.7rem;
	}

	.rexsoft-product-page-cta__panel {
		padding: 2rem 1.25rem;
		border-radius: 24px;
	}
}

@media (max-width: 920px) {
	.rexsoft-contact-page-hero__grid,
	.rexsoft-contact-form-section__grid,
	.rexsoft-benefits-page-hero__grid,
	.rexsoft-about-page-hero__grid,
	.rexsoft-about-page-practice__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.rexsoft-contact-page-hero__card {
		width: min(100%, 540px);
	}

	.rexsoft-benefits-page-hero__card {
		width: min(100%, 540px);
	}

	.rexsoft-about-page-hero__card {
		width: min(100%, 540px);
	}
}

@media (max-width: 700px) {
	.rexsoft-benefits-page-principles__grid,
	.rexsoft-about-page-principles__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.rexsoft-products-page-hero {
		padding-top: 3.5rem;
		text-align: left;
	}

	.rexsoft-products-page-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-products-page-hero__content > p:not(.rexsoft-eyebrow) {
		margin-right: 0;
		margin-left: 0;
		font-size: 1rem;
	}

	.rexsoft-products-page-hero__trust {
		display: grid;
		justify-content: start;
		gap: 0.72rem;
	}

	.rexsoft-benefits-page-hero {
		padding-top: 3.5rem;
	}

	.rexsoft-benefits-page-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-benefits-page-hero__lead {
		font-size: 1rem;
	}

	.rexsoft-benefits-page-hero__trust {
		display: grid;
		gap: 0.72rem;
	}

	.rexsoft-benefits-page-hero__card {
		padding: 1.4rem;
		border-radius: 18px;
	}

	.rexsoft-benefits-page-hero__card h2 {
		font-size: 1.35rem;
	}

	.rexsoft-about-page-hero {
		padding-top: 3.5rem;
	}

	.rexsoft-about-page-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-about-page-hero__lead {
		font-size: 1rem;
	}

	.rexsoft-about-page-hero__trust {
		display: grid;
		gap: 0.72rem;
	}

	.rexsoft-about-page-hero__card {
		padding: 1.4rem;
		border-radius: 18px;
	}

	.rexsoft-about-page-hero__card h2 {
		font-size: 1.35rem;
	}

	.rexsoft-about-page-practice__steps li {
		grid-template-columns: 2.5rem minmax(0, 1fr);
		gap: 0.8rem;
		padding: 1rem;
	}

	.rexsoft-about-page-practice__steps li > span {
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 0.7rem;
	}

	.rexsoft-legal-hero {
		padding-top: 3.5rem;
	}

	.rexsoft-legal-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-legal-hero p {
		font-size: 1rem;
	}

	.rexsoft-legal-content article {
		padding: 1.2rem;
		border-radius: 18px;
	}

	.rexsoft-contact-page-hero {
		padding-top: 3.5rem;
	}

	.rexsoft-contact-page-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-contact-page-hero__lead {
		font-size: 1rem;
	}

	.rexsoft-contact-page-hero__trust {
		display: grid;
		gap: 0.72rem;
	}

	.rexsoft-contact-page-hero__card {
		padding: 1.4rem;
		border-radius: 18px;
	}

	.rexsoft-contact-page-hero__card h2 {
		font-size: 1.4rem;
	}

	.rexsoft-contact-form__grid {
		grid-template-columns: 1fr;
	}

	.rexsoft-contact-form__field--wide {
		grid-column: auto;
	}

	.rexsoft-contact-form-wrap {
		padding: 1.15rem;
		border-radius: 18px;
	}

	.rexsoft-contact-form .rexsoft-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* =========================================================
   Kundenbereich
   ========================================================= */

.rexsoft-customer-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 8vw, 7.5rem) 0;
	background:
		radial-gradient(circle at 88% 14%, rgba(10, 132, 255, 0.31), transparent 22rem),
		radial-gradient(circle at 8% 90%, rgba(0, 200, 83, 0.18), transparent 19rem),
		linear-gradient(135deg, var(--rexsoft-blue-deep) 0%, var(--rexsoft-blue-dark) 58%, #0d4b6e 100%);
}

.rexsoft-customer-hero::before,
.rexsoft-customer-hero::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rexsoft-customer-hero::before {
	top: -17rem;
	right: -9rem;
	width: 34rem;
	height: 34rem;
}

.rexsoft-customer-hero::after {
	bottom: -23rem;
	left: -12rem;
	width: 29rem;
	height: 29rem;
}

.rexsoft-customer-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 8rem);
}

.rexsoft-customer-hero .rexsoft-eyebrow {
	color: #91c7ff;
}

.rexsoft-customer-hero h1 {
	max-width: 760px;
	margin-bottom: 1.25rem;
	color: #ffffff;
}

.rexsoft-customer-hero__lead {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, 0.77);
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.rexsoft-customer-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.35rem;
	padding: 0;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.84rem;
	font-weight: 700;
	list-style: none;
}

.rexsoft-customer-hero__trust li {
	display: flex;
	align-items: center;
	gap: 0.48rem;
}

.rexsoft-customer-hero__trust li::before {
	width: 0.42rem;
	height: 0.42rem;
	background: var(--rexsoft-green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.16);
	content: "";
}

.rexsoft-customer-login,
.rexsoft-customer-hero__summary {
	padding: clamp(1.6rem, 3vw, 2.4rem);
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 22px;
	box-shadow: 0 24px 54px rgba(1, 16, 40, 0.2);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.rexsoft-customer-login > p,
.rexsoft-customer-hero__summary > p {
	margin: 0 0 0.38rem;
	color: #91c7ff;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rexsoft-customer-login h2 {
	margin-bottom: 1.5rem;
	color: #ffffff;
	font-size: clamp(1.5rem, 2.6vw, 1.8rem);
	letter-spacing: -0.035em;
}

.rexsoft-customer-login form p {
	margin: 0 0 1rem;
}

.rexsoft-customer-login label {
	display: block;
	margin-bottom: 0.42rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.85rem;
	font-weight: 700;
}

.rexsoft-customer-login input:not([type="checkbox"]) {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 0.9rem;
	background: rgba(255, 255, 255, 0.96);
	color: var(--rexsoft-text);
	border: 1px solid rgba(255, 255, 255, 0.46);
	border-radius: 10px;
}

.rexsoft-customer-login .login-remember {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.rexsoft-customer-login .login-remember label {
	display: inline;
	margin: 0;
	font-size: 0.78rem;
}

.rexsoft-customer-login .login-submit {
	margin-top: 1.4rem;
}

.rexsoft-customer-login .button-primary {
	width: 100%;
	min-height: 50px;
	padding: 0.85rem 1rem;
	background: #ffffff;
	color: var(--rexsoft-blue-dark);
	font: inherit;
	font-weight: 800;
	border: 1px solid #ffffff;
	border-radius: 999px;
	cursor: pointer;
	transition: transform var(--rexsoft-transition), background-color var(--rexsoft-transition);
}

.rexsoft-customer-login .button-primary:hover,
.rexsoft-customer-login .button-primary:focus-visible {
	background: #dceeff;
	transform: translateY(-2px);
}

.rexsoft-customer-login__lost {
	display: inline-block;
	margin-top: 0.35rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
	font-weight: 700;
}

.rexsoft-customer-login__lost:hover,
.rexsoft-customer-login__lost:focus-visible {
	color: #ffffff;
}

.rexsoft-customer-hero__summary {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.15rem 0.8rem;
	max-width: 355px;
	justify-self: end;
}

.rexsoft-customer-hero__summary > span {
	grid-row: span 4;
	display: grid;
	width: 3.2rem;
	height: 3.2rem;
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: 850;
	place-items: center;
	background: linear-gradient(135deg, var(--rexsoft-blue), var(--rexsoft-green));
	border-radius: 0.95rem;
}

.rexsoft-customer-hero__summary > strong {
	align-self: end;
	color: #ffffff;
	font-size: 1.65rem;
	line-height: 1.05;
}

.rexsoft-customer-hero__summary > small {
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.76rem;
	font-weight: 650;
}

.rexsoft-customer-hero__summary > a {
	grid-column: 1 / -1;
	margin-top: 1.2rem;
	padding-top: 1rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
	font-weight: 750;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rexsoft-customer-hero__summary > a:hover,
.rexsoft-customer-hero__summary > a:focus-visible {
	color: #ffffff;
}

.rexsoft-customer-dashboard {
	background: var(--rexsoft-surface-muted);
}

.rexsoft-customer-dashboard__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	padding: 0.45rem;
	margin-bottom: 2.2rem;
	background: #ffffff;
	border: 1px solid var(--rexsoft-border);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(8, 26, 53, 0.05);
}

.rexsoft-customer-dashboard__nav a {
	padding: 0.62rem 0.9rem;
	color: var(--rexsoft-text-muted);
	font-size: 0.87rem;
	font-weight: 750;
	border-radius: 9px;
}

.rexsoft-customer-dashboard__nav a:hover,
.rexsoft-customer-dashboard__nav a:focus-visible {
	color: var(--rexsoft-blue-dark);
	background: #eaf4ff;
}

.rexsoft-customer-notice {
	margin: 0 0 1.5rem;
	padding: 1rem 1.15rem;
	font-weight: 700;
	border: 1px solid;
	border-radius: 12px;
}

.rexsoft-customer-notice--success {
	color: #087b3d;
	background: #e7f9ee;
	border-color: #9de3b8;
}

.rexsoft-customer-notice--error {
	color: #aa2436;
	background: #fff0f2;
	border-color: #f1b7c0;
}

.rexsoft-customer-dashboard__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.rexsoft-customer-card,
.rexsoft-customer-support,
.rexsoft-customer-tickets__column,
.rexsoft-customer-restricted__card {
	background: #ffffff;
	border: 1px solid var(--rexsoft-border);
	border-radius: 20px;
	box-shadow: 0 18px 42px rgba(8, 26, 53, 0.06);
}

.rexsoft-customer-card {
	padding: clamp(1.35rem, 3vw, 2rem);
}

.rexsoft-customer-card__heading {
	display: grid;
	grid-template-columns: 2.65rem minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	padding-bottom: 1.35rem;
	margin-bottom: 1.35rem;
	border-bottom: 1px solid var(--rexsoft-border);
}

.rexsoft-customer-card__heading > span {
	display: grid;
	width: 2.65rem;
	height: 2.65rem;
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 850;
	place-items: center;
	background: linear-gradient(135deg, var(--rexsoft-blue-dark), var(--rexsoft-blue));
	border-radius: 0.75rem;
	box-shadow: 0 10px 20px rgba(10, 132, 255, 0.22);
}

.rexsoft-customer-card__heading p {
	margin: 0 0 0.15rem;
	color: var(--rexsoft-blue);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.rexsoft-customer-card__heading h2,
.rexsoft-customer-support h2,
.rexsoft-customer-tickets__column h2,
.rexsoft-customer-restricted__card h2 {
	margin: 0;
	color: var(--rexsoft-text);
	font-size: clamp(1.3rem, 2.3vw, 1.7rem);
	letter-spacing: -0.04em;
}

.rexsoft-customer-data {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
}

.rexsoft-customer-data div {
	min-width: 0;
}

.rexsoft-customer-data__wide {
	grid-column: 1 / -1;
}

.rexsoft-customer-data dt {
	margin-bottom: 0.25rem;
	color: var(--rexsoft-text-muted);
	font-size: 0.72rem;
	font-weight: 750;
}

.rexsoft-customer-data dd {
	margin: 0;
	color: var(--rexsoft-text);
	font-size: 0.93rem;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.rexsoft-customer-data a {
	color: var(--rexsoft-blue-dark);
}

.rexsoft-customer-orders {
	display: grid;
	gap: 0.8rem;
}

.rexsoft-customer-order {
	padding: 1rem;
	background: #f7faff;
	border: 1px solid #dce8f5;
	border-radius: 13px;
}

.rexsoft-customer-order__top,
.rexsoft-customer-order__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.35rem 1rem;
}

.rexsoft-customer-order__top strong {
	color: var(--rexsoft-text);
	font-size: 0.9rem;
}

.rexsoft-customer-order__top span,
.rexsoft-customer-order__meta {
	color: var(--rexsoft-text-muted);
	font-size: 0.75rem;
	font-weight: 650;
}

.rexsoft-customer-order ul {
	display: grid;
	gap: 0.25rem;
	padding: 0;
	margin: 0.8rem 0;
	color: var(--rexsoft-text);
	font-size: 0.86rem;
	font-weight: 700;
	list-style: none;
}

.rexsoft-customer-order li::before {
	margin-right: 0.45rem;
	color: var(--rexsoft-green);
	content: "•";
}

.rexsoft-customer-empty {
	margin: 0;
	color: var(--rexsoft-text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.rexsoft-customer-support {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
	gap: clamp(2rem, 5vw, 5rem);
	padding: clamp(1.5rem, 4vw, 3rem);
	margin-top: 1.5rem;
	background:
		radial-gradient(circle at 10% 100%, rgba(10, 132, 255, 0.1), transparent 17rem),
		#ffffff;
}

.rexsoft-customer-support__intro > p:not(.rexsoft-eyebrow) {
	margin: 1rem 0 1.35rem;
	color: var(--rexsoft-text-muted);
	line-height: 1.65;
}

.rexsoft-customer-support__form-wrap {
	padding: 1.35rem;
	background: #f6f9fd;
	border: 1px solid #dce8f5;
	border-radius: 15px;
}

.rexsoft-customer-support__form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.rexsoft-customer-support__form > p {
	margin: 0;
}

.rexsoft-customer-support__field--wide {
	grid-column: 1 / -1;
}

.rexsoft-customer-support__form label {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--rexsoft-text);
	font-size: 0.84rem;
	font-weight: 750;
}

.rexsoft-customer-support__form input,
.rexsoft-customer-support__form select,
.rexsoft-customer-support__form textarea {
	width: 100%;
	padding: 0.75rem 0.85rem;
	color: var(--rexsoft-text);
	font: inherit;
	background: #ffffff;
	border: 1px solid #ccdaea;
	border-radius: 9px;
}

.rexsoft-customer-support__form input,
.rexsoft-customer-support__form select {
	min-height: 47px;
}

.rexsoft-customer-support__form textarea {
	resize: vertical;
}

.rexsoft-customer-support__form input:focus,
.rexsoft-customer-support__form select:focus,
.rexsoft-customer-support__form textarea:focus {
	border-color: var(--rexsoft-blue);
	outline: 3px solid rgba(10, 132, 255, 0.17);
}

.rexsoft-customer-support__form .rexsoft-button {
	grid-column: 1 / -1;
	justify-self: start;
	border: 0;
	cursor: pointer;
}

.rexsoft-customer-tickets {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.rexsoft-customer-tickets__column {
	min-width: 0;
	padding: 1.35rem;
}

.rexsoft-customer-tickets__column h2 {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	font-size: 1.12rem;
	border-bottom: 1px solid var(--rexsoft-border);
}

.rexsoft-customer-ticket {
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--rexsoft-border);
}

.rexsoft-customer-ticket:last-child {
	border-bottom: 0;
}

.rexsoft-customer-ticket h3 {
	margin: 0.55rem 0 0.25rem;
	color: var(--rexsoft-text);
	font-size: 0.95rem;
	line-height: 1.35;
}

.rexsoft-customer-ticket time {
	color: var(--rexsoft-text-muted);
	font-size: 0.74rem;
	font-weight: 650;
}

.rexsoft-customer-ticket__status {
	display: inline-flex;
	padding: 0.27rem 0.48rem;
	font-size: 0.65rem;
	font-weight: 850;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-radius: 999px;
}

.rexsoft-customer-ticket__status--open {
	color: #075ba7;
	background: #e5f2ff;
}

.rexsoft-customer-ticket__status--in_progress {
	color: #875400;
	background: #fff1ce;
}

.rexsoft-customer-ticket__status--closed {
	color: #087b3d;
	background: #e4f8eb;
}

.rexsoft-customer-ticket__status--archived {
	color: #59687a;
	background: #edf1f5;
}

.rexsoft-customer-ticket form {
	margin-top: 0.8rem;
}

.rexsoft-customer-ticket button {
	padding: 0;
	color: var(--rexsoft-blue-dark);
	font: inherit;
	font-size: 0.8rem;
	font-weight: 800;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.rexsoft-customer-ticket button:hover,
.rexsoft-customer-ticket button:focus-visible {
	color: var(--rexsoft-blue);
	text-decoration: underline;
}

.rexsoft-customer-restricted {
	background: var(--rexsoft-surface-muted);
}

.rexsoft-customer-restricted__card {
	max-width: 760px;
	padding: clamp(1.7rem, 4vw, 3rem);
}

.rexsoft-customer-restricted__card > p:not(.rexsoft-eyebrow) {
	margin: 1rem 0 0;
	color: var(--rexsoft-text-muted);
	line-height: 1.65;
}

.rexsoft-button--outline {
	color: var(--rexsoft-blue-dark);
	background: transparent;
	border-color: var(--rexsoft-blue-dark);
	box-shadow: none;
}

.rexsoft-button--outline:hover,
.rexsoft-button--outline:focus-visible {
	color: #ffffff;
	background: var(--rexsoft-blue-dark);
	border-color: var(--rexsoft-blue-dark);
	box-shadow: none;
}

@media (max-width: 920px) {
	.rexsoft-customer-hero__grid,
	.rexsoft-customer-support {
		grid-template-columns: minmax(0, 1fr);
	}

	.rexsoft-customer-login,
	.rexsoft-customer-hero__summary {
		width: min(100%, 540px);
		justify-self: start;
	}

	.rexsoft-customer-tickets {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.rexsoft-customer-dashboard__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.rexsoft-customer-hero {
		padding-top: 3.5rem;
	}

	.rexsoft-customer-hero h1 {
		font-size: clamp(2rem, 10vw, 2.25rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.rexsoft-customer-hero__lead {
		font-size: 1rem;
	}

	.rexsoft-customer-hero__trust {
		display: grid;
		gap: 0.72rem;
	}

	.rexsoft-customer-login,
	.rexsoft-customer-hero__summary,
	.rexsoft-customer-card,
	.rexsoft-customer-support,
	.rexsoft-customer-tickets__column,
	.rexsoft-customer-restricted__card {
		border-radius: 18px;
	}

	.rexsoft-customer-data,
	.rexsoft-customer-support__form {
		grid-template-columns: 1fr;
	}

	.rexsoft-customer-data__wide,
	.rexsoft-customer-support__field--wide {
		grid-column: auto;
	}

	.rexsoft-customer-support__form .rexsoft-button {
		width: 100%;
		justify-self: stretch;
	}

	.rexsoft-customer-dashboard__nav a {
		width: 100%;
	}
}
