:root {
    --home-ink: #1d1d1f;
    --home-muted: #6e6e73;
    --home-surface: #f5f5f7;
    --home-card: #ffffff;
    --home-blue: #0071e3;
    --home-blue-hover: #0077ed;
    --home-green: #087c53;
    --home-line: rgba(0, 0, 0, 0.08);
    --home-radius-lg: 32px;
    --home-radius-md: 22px;
}

body.home-modern {
    max-width: 100%;
    overflow-x: hidden;
    color: var(--home-ink);
    background: var(--home-surface);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

html:has(body.home-modern) {
    max-width: 100%;
    overflow-x: hidden;
}

.home-modern .scroll-progress,
.home-modern .scroll-indicator {
    display: none;
}

.home-modern .site-header {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    backdrop-filter: saturate(180%) blur(22px);
}

.home-modern .site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.home-modern .primary-nav {
    max-width: 1440px;
    padding: 0.68rem clamp(1.25rem, 4vw, 3.75rem);
}

.home-modern .logo {
    padding: 0;
}

.home-modern .logo img {
    height: 40px;
}

.home-modern .logo:hover img {
    transform: none;
}

.home-modern .nav-links {
    gap: clamp(0.8rem, 1.6vw, 1.55rem);
}

.home-modern .nav-links a,
.home-modern .dropdown-toggle {
    color: #424245;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
}

.home-modern .nav-links a::after,
.home-modern .dropdown-toggle::after {
    display: none;
}

.home-modern .nav-links a:hover,
.home-modern .nav-links a.active,
.home-modern .dropdown-toggle:hover {
    color: var(--home-blue);
    transform: none;
}

.home-modern .dropdown-menu {
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--home-line);
    border-radius: 16px;
    box-shadow: none;
}

.home-modern .login-button {
    min-height: 40px;
    padding: 0.55rem 1rem;
    color: #fff;
    background: var(--home-blue);
    border-radius: 999px;
    box-shadow: none;
}

.home-modern .login-button:hover {
    color: #fff;
    background: var(--home-blue-hover);
    box-shadow: none;
    transform: scale(1.02);
}

.home-modern main {
    overflow: hidden;
}

.home-modern .home-hero {
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-height: min(860px, 100svh);
    height: auto;
    padding: 126px clamp(1.5rem, 5vw, 5rem) 72px;
    color: var(--home-ink);
    text-align: left;
    background:
        radial-gradient(circle at 78% 30%, rgba(0, 113, 227, 0.16), transparent 28%),
        radial-gradient(circle at 88% 74%, rgba(191, 90, 242, 0.1), transparent 26%),
        var(--home-surface);
    isolation: isolate;
}

.home-modern .home-hero::before,
.home-modern .home-hero::after {
    display: none;
}

.home-modern .home-hero-shell {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 7rem);
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.home-modern .home-hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 720px;
}

.home-modern .home-hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.35rem;
    color: var(--home-ink);
    text-decoration: none;
}

.home-modern .home-hero-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.home-modern .home-hero-brand > span {
    display: grid;
    gap: 0.05rem;
}

.home-modern .home-hero-brand strong {
    color: var(--home-ink);
    font-size: 1.22rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.home-modern .home-hero-brand small {
    color: #bf4800;
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.25;
}

.home-modern .home-eyebrow {
    display: block;
    margin-bottom: 1.15rem;
    color: #bf4800;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.home-modern .home-hero h1 {
    max-width: 800px;
    margin: 0 0 1.45rem;
    color: var(--home-ink);
    font-size: clamp(3.35rem, 5vw, 6.1rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.065em;
    text-shadow: none;
}

.home-modern .home-gradient-word {
    display: block;
    padding-bottom: 0.08em;
    color: transparent;
    background: linear-gradient(90deg, #0071e3 5%, #7c3aed 48%, #e5484d 92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-modern #home-hero-lead {
    max-width: 670px;
    margin: 0;
    color: var(--home-muted);
    font-size: clamp(1.18rem, 1.8vw, 1.58rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.home-modern .home-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.home-modern .home-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.home-modern .home-btn-primary {
    color: #fff;
    background: var(--home-blue);
}

.home-modern .home-btn-primary:hover {
    color: #fff;
    background: var(--home-blue-hover);
    transform: scale(1.02);
}

.home-modern .home-btn-secondary {
    padding-inline: 0.2rem;
    color: var(--home-blue);
}

.home-modern .home-btn-secondary:hover {
    color: var(--home-blue-hover);
    text-decoration: underline;
}

.home-modern .home-btn-secondary span {
    margin-left: 0.2rem;
    font-size: 1.4rem;
    line-height: 0;
}

.home-modern .home-hero-trust {
    display: flex;
    gap: 0.65rem 1.1rem;
    margin-top: 1.75rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--home-line);
    flex-wrap: wrap;
}

.home-modern .home-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #424245;
    font-size: 0.86rem;
    font-weight: 600;
}

.home-modern .home-hero-trust i {
    color: var(--home-green);
}

.home-modern .home-hero-trust .home-germany-flag {
    display: inline-block;
    width: 20px;
    height: 13px;
    flex: 0 0 20px;
    background: linear-gradient(
        to bottom,
        #111 0 33.333%,
        #dd0000 33.333% 66.666%,
        #ffce00 66.666% 100%
    );
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.home-modern .home-hero-press {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.home-modern .home-hero-press-label {
    margin-right: 0.2rem;
    color: var(--home-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-modern .home-hero-press a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    color: #424245;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--home-line);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
}

.home-modern .home-hero-press a:hover {
    color: var(--home-blue);
    border-color: rgba(0, 113, 227, 0.25);
}

.home-modern .home-hero-press i {
    color: var(--home-blue);
}

.home-modern .home-hero-references {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: min(100%, 760px);
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--home-line);
    flex-wrap: wrap;
}

.home-modern .home-hero-references-label {
    margin-right: 0.15rem;
    color: var(--home-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-modern .home-hero-reference-logos {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.home-modern .home-hero-reference-logos > span {
    display: flex;
    width: 56px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.45rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--home-line);
    border-radius: 9px;
}

.home-modern .home-hero-reference-logos > .home-reference-wide {
    width: 82px;
}

.home-modern .home-hero-reference-logos img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(0.72);
    opacity: 0.82;
    transition: filter 180ms ease, opacity 180ms ease;
}

.home-modern .home-hero-reference-logos > span:hover img {
    filter: saturate(1);
    opacity: 1;
}

.home-modern .home-hero-references-more {
    color: var(--home-blue);
    font-size: 0.72rem;
    font-weight: 650;
    text-decoration: none;
}

.home-modern .home-hero-references-more:hover {
    color: var(--home-blue-hover);
    text-decoration: underline;
}

.home-modern .home-hero-visual {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-modern .home-device-frame {
    width: min(100%, 860px);
}

.home-modern .home-device-frame img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 34px 30px rgba(23, 32, 55, 0.17));
}

.home-modern .home-authority {
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 5rem);
    background: #fff;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home-modern .home-authority-inner {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
}

.home-modern .home-authority-intro {
    max-width: 980px;
    margin: 0 auto clamp(2rem, 4vw, 3.5rem);
    text-align: center;
}

.home-modern .home-authority-intro > span {
    display: block;
    margin-bottom: 0.7rem;
    color: #bf4800;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-modern .home-authority-intro h2 {
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(2rem, 3.6vw, 3.7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
}

.home-modern .home-authority-intro h2 strong {
    display: block;
    color: #86868b;
    font-weight: inherit;
}

.home-modern .home-authority-statements {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-modern .home-authority-marquee {
    width: 100%;
    overflow-x: auto;
    padding: 0.15rem 0 0.65rem;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.home-modern .home-authority-marquee::-webkit-scrollbar {
    display: none;
}

.home-modern .home-authority-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

.home-modern .home-authority-track.is-animated {
    animation: home-authority-scroll 42s linear infinite reverse;
}

.home-modern .home-authority-marquee:hover .home-authority-track {
    animation-play-state: paused;
}

@keyframes home-authority-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.home-modern .home-authority-statement {
    display: flex;
    width: clamp(330px, 33vw, 430px);
    min-height: 440px;
    flex: 0 0 clamp(330px, 33vw, 430px);
    flex-direction: column;
    padding: clamp(1.4rem, 2.5vw, 2rem);
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
}

.home-modern .home-authority-statement-visual {
    display: flex;
    height: 92px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 14px;
}

.home-modern .home-authority-statement-visual img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-modern .home-authority-statement-visual-wide img {
    width: min(100%, 290px);
}

.home-modern .home-authority-statement-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bf4800;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-modern .home-authority-statement-meta i {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    border-radius: 9px;
}

.home-modern .home-authority-statement h3 {
    margin: 1.15rem 0 0.75rem;
    color: var(--home-ink);
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.home-modern .home-authority-statement p {
    margin: 0 0 1.3rem;
    color: var(--home-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.home-modern .home-authority-statement > a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    margin-top: auto;
    color: var(--home-blue);
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
}

.home-modern .home-authority-statement > a:hover {
    text-decoration: underline;
}

.home-modern .home-authority-support {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.9rem;
    flex-wrap: wrap;
}

.home-modern .home-authority-support a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
    color: #424245;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 650;
    text-decoration: none;
}

.home-modern .home-authority-support a:hover {
    color: var(--home-blue);
    border-color: rgba(0, 113, 227, 0.25);
}

.home-modern .home-authority-support i {
    color: var(--home-blue);
}

.home-modern .home-authority-availability {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.9rem;
    flex-wrap: wrap;
}

.home-modern .home-authority-availability > span {
    color: var(--home-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-modern .home-authority-availability a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
    color: #424245;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 650;
    text-decoration: none;
}

.home-modern .home-authority-availability a:hover {
    color: var(--home-blue);
    border-color: rgba(0, 113, 227, 0.25);
}

.home-modern .home-authority-availability i {
    color: var(--home-blue);
}

.home-modern .home-authority-signals {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.home-modern .home-authority-signals > a {
    display: flex;
    min-height: 96px;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem;
    color: var(--home-ink);
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.home-modern .home-authority-signals > a:hover {
    border-color: rgba(0, 113, 227, 0.28);
    transform: translateY(-2px);
}

.home-modern .home-authority-signals > a > i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    border-radius: 10px;
}

.home-modern .home-authority-signals > a > span {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.home-modern .home-authority-signals strong {
    color: var(--home-ink);
    font-size: 0.98rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.home-modern .home-authority-signals small {
    color: var(--home-muted);
    font-size: 0.7rem;
    line-height: 1.25;
}

.home-modern .home-authority-customers {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--home-line);
    flex-wrap: wrap;
}

.home-modern .home-authority-customers-label {
    color: var(--home-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-modern .home-authority-logos {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.home-modern .home-authority-logos > span {
    display: flex;
    width: 58px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.45rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 9px;
}

.home-modern .home-authority-logos > .home-authority-logo-wide {
    width: 84px;
}

.home-modern .home-authority-logos img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(0.75);
    opacity: 0.84;
}

.home-modern .home-authority-customers > a {
    color: var(--home-blue);
    font-size: 0.76rem;
    font-weight: 650;
    text-decoration: none;
}

.home-modern .home-authority-customers > a:hover {
    text-decoration: underline;
}

.home-modern .home-product-bridge {
    padding: clamp(6rem, 10vw, 10rem) clamp(1.5rem, 5vw, 5rem);
    color: #f5f5f7;
    background: #000;
}

.home-modern .home-product-bridge-inner {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
}

.home-modern .home-product-bridge-copy {
    max-width: 760px;
}

.home-modern .home-bridge-eyebrow {
    display: block;
    margin-bottom: 1.1rem;
    color: #ff9f0a;
    font-size: 1rem;
    font-weight: 700;
}

.home-modern .home-product-bridge h2 {
    margin: 0 0 1.5rem;
    color: #f5f5f7;
    font-size: clamp(3.2rem, 6.4vw, 6.8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.home-modern .home-product-bridge h2 span {
    display: block;
    color: #86868b;
}

.home-modern .home-product-bridge-copy > p {
    max-width: 690px;
    margin: 0;
    color: #a1a1a6;
    font-size: clamp(1.12rem, 1.7vw, 1.42rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.home-modern .home-bridge-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.home-modern .home-bridge-primary,
.home-modern .home-bridge-secondary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.home-modern .home-bridge-primary {
    padding: 0.75rem 1.4rem;
    color: #fff;
    background: var(--home-blue);
}

.home-modern .home-bridge-primary:hover {
    color: #fff;
    background: #0077ed;
    transform: scale(1.02);
}

.home-modern .home-bridge-secondary {
    padding-inline: 0.2rem;
    color: #2997ff;
}

.home-modern .home-bridge-secondary:hover {
    color: #66b5ff;
    text-decoration: underline;
}

.home-modern .home-bridge-secondary span {
    margin-left: 0.2rem;
    font-size: 1.4rem;
    line-height: 0;
}

.home-modern .home-product-bridge-panel {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--home-radius-lg);
}

.home-modern .home-bridge-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.home-modern .home-bridge-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    color: #2997ff;
    background: rgba(41, 151, 255, 0.12);
    border-radius: 15px;
}

.home-modern .home-bridge-product > div {
    display: grid;
    gap: 0.15rem;
}

.home-modern .home-bridge-product strong {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.home-modern .home-bridge-product span {
    color: #a1a1a6;
    font-size: 0.9rem;
}

.home-modern .home-product-bridge-panel ul {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.home-modern .home-product-bridge-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #d2d2d7;
    line-height: 1.45;
}

.home-modern .home-product-bridge-panel li i {
    margin-top: 0.25rem;
    color: #34c759;
}

.home-modern .home-product-bridge-header {
    max-width: 1000px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.home-modern .home-product-bridge-header .home-bridge-eyebrow {
    text-align: center;
}

.home-modern .home-product-bridge-header h2 {
    max-width: 1000px;
    margin-inline: auto;
}

.home-modern .home-product-bridge-header > p {
    max-width: 800px;
    margin: 0 auto;
    color: #a1a1a6;
    font-size: clamp(1.12rem, 1.7vw, 1.42rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.home-modern .home-product-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
}

.home-modern .home-product-card {
    display: flex;
    min-height: 570px;
    flex-direction: column;
    padding: clamp(1.6rem, 3vw, 2.6rem);
    border-radius: var(--home-radius-lg);
}

.home-modern .home-product-card-kita {
    color: var(--home-ink);
    background: #f5f5f7;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-modern .home-product-card-admin {
    color: #f5f5f7;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-modern .home-product-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 74px;
}

.home-modern .home-product-logo {
    display: inline-flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    flex: 0 0 66px;
    overflow: hidden;
    border-radius: 18px;
}

.home-modern .home-product-logo-kita {
    background: #fff;
    border: 1px solid var(--home-line);
}

.home-modern .home-product-logo-admin {
    width: 82px;
    flex-basis: 82px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-modern .home-product-logo img {
    display: block;
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
}

.home-modern .home-product-logo-admin img {
    max-width: 100%;
    max-height: 100%;
}

.home-modern .home-product-brand > div {
    display: grid;
    gap: 0.2rem;
}

.home-modern .home-product-brand strong {
    color: inherit;
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.home-modern .home-product-brand > div > span {
    color: #86868b;
    font-size: 0.88rem;
    font-weight: 600;
}

.home-modern .home-product-audience {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 2rem;
    padding: 0.45rem 0.7rem;
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.home-modern .home-product-card-admin .home-product-audience {
    color: #66b5ff;
    background: rgba(41, 151, 255, 0.12);
}

.home-modern .home-product-card h3 {
    margin: 1.35rem 0 0.85rem;
    color: inherit;
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.home-modern .home-product-card > p {
    margin: 0;
    color: #6e6e73;
    font-size: 1.02rem;
    line-height: 1.55;
}

.home-modern .home-product-card-admin > p {
    color: #a1a1a6;
}

.home-modern .home-product-card ul {
    display: grid;
    gap: 0.85rem;
    margin: 1.6rem 0 2rem;
    padding: 1.4rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    list-style: none;
}

.home-modern .home-product-card-admin ul {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.home-modern .home-product-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #424245;
    line-height: 1.45;
}

.home-modern .home-product-card-admin li {
    color: #d2d2d7;
}

.home-modern .home-product-card li i {
    margin-top: 0.25rem;
    color: #34c759;
}

.home-modern .home-product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    align-self: flex-start;
    margin-top: auto;
    color: var(--home-blue);
    font-weight: 650;
    text-decoration: none;
}

.home-modern .home-product-card-admin .home-product-card-link {
    color: #2997ff;
}

.home-modern .home-product-card-link:hover {
    text-decoration: underline;
}

.home-modern .home-product-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    color: #86868b;
}

.home-modern .home-product-connector > span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    font-size: 1.35rem;
}

.home-modern .home-product-connector small {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-modern .home-product-license {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.1rem;
    margin-top: 1.25rem;
    padding: 1.1rem 1.25rem;
    background: rgba(41, 151, 255, 0.09);
    border: 1px solid rgba(41, 151, 255, 0.2);
    border-radius: 18px;
}

.home-modern .home-product-license-badge {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0.4rem 0.7rem;
    color: #fff;
    background: var(--home-blue);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

.home-modern .home-product-license > div {
    display: grid;
    gap: 0.2rem;
}

.home-modern .home-product-license strong {
    color: #fff;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.home-modern .home-product-license p {
    margin: 0;
    color: #a1a1a6;
    font-size: 0.84rem;
    line-height: 1.45;
}

.home-modern .home-product-license > a {
    color: #2997ff;
    font-size: 0.84rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.home-modern .home-product-license > a:hover {
    color: #66b5ff;
    text-decoration: underline;
}

.home-modern .home-product-shared {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.home-modern .home-product-shared span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    color: #d2d2d7;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.home-modern .home-product-shared i {
    color: #34c759;
}

.home-modern .ai-answer {
    max-width: 1120px;
    margin: 1.4rem auto;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 16px;
    box-shadow: none;
}

.home-modern .ai-answer summary {
    color: #424245;
    font-size: 0.88rem;
    font-weight: 700;
}

.home-modern .ai-answer-tldr {
    color: var(--home-muted);
    line-height: 1.65;
}

.home-modern .certification-section,
.home-modern .features-new,
.home-modern .blog-section {
    padding: clamp(6rem, 10vw, 10rem) 1.5rem !important;
    background: #fff !important;
}

.home-modern .home-proof-archive {
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home-modern .home-proof-archive > summary {
    display: flex;
    max-width: 1180px;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    color: var(--home-blue);
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.home-modern .home-proof-archive > summary::-webkit-details-marker {
    display: none;
}

.home-modern .home-proof-archive > summary i {
    font-size: 0.72rem;
    transition: transform 180ms ease;
}

.home-modern .home-proof-archive[open] > summary i {
    transform: rotate(180deg);
}

.home-modern .home-proof-archive-content {
    max-width: 1440px;
    margin: 1.25rem auto 0;
    overflow: hidden;
    border-radius: var(--home-radius-lg);
}

.home-modern .home-features-archive {
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home-modern .home-features-archive > summary {
    display: flex;
    max-width: 1180px;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    color: var(--home-blue);
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.home-modern .home-features-archive > summary::-webkit-details-marker {
    display: none;
}

.home-modern .home-features-archive > summary i {
    font-size: 0.72rem;
    transition: transform 180ms ease;
}

.home-modern .home-features-archive[open] > summary i {
    transform: rotate(180deg);
}

.home-modern .home-features-archive > .features-new {
    margin-top: 1.25rem;
    overflow: hidden;
    border-radius: var(--home-radius-lg);
}

.home-modern .advantages-new,
.home-modern .faq-section {
    padding: clamp(6rem, 10vw, 10rem) 1.5rem !important;
    background: var(--home-surface) !important;
}

.home-modern .press-section,
.home-modern .kvx-diff {
    padding: clamp(5.5rem, 9vw, 9rem) 1.5rem !important;
    background: var(--home-surface) !important;
}

.home-modern .photo-gallery-section {
    padding: clamp(5.5rem, 9vw, 9rem) 1.5rem !important;
    background: #fff !important;
}

.home-modern .certification-container,
.home-modern .press-container,
.home-modern .features-container,
.home-modern .kvx-diff-container,
.home-modern .advantages-container,
.home-modern .dsgvo-container,
.home-modern .download-container,
.home-modern .faq-section > .container,
.home-modern .blog-section > .container {
    max-width: 1280px;
    margin-inline: auto;
}

.home-modern .certification-content-wrapper,
.home-modern .certification-main {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-modern .certification-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding: 0;
}

.home-modern .certification-text h2,
.home-modern .features-header h2,
.home-modern .kvx-diff-header h2,
.home-modern .advantages-header h2,
.home-modern .dsgvo-text h2,
.home-modern .download-header h2,
.home-modern .faq-section h2,
.home-modern .blog-section h2,
.home-modern .contact-header h2 {
    max-width: 1040px;
    margin: 0 auto 1.35rem;
    color: var(--home-ink);
    background: none;
    font-size: clamp(2.8rem, 5.7vw, 5.8rem);
    font-weight: 700;
    line-height: 0.99;
    letter-spacing: -0.06em;
    text-shadow: none;
    -webkit-text-fill-color: currentColor;
}

.home-modern .certification-text h2,
.home-modern .certification-text p {
    margin-inline: 0;
    text-align: left;
}

.home-modern .certification-text p,
.home-modern .features-subtitle,
.home-modern .kvx-diff-sub,
.home-modern .advantages-subtitle,
.home-modern .faq-intro,
.home-modern .blog-intro,
.home-modern .contact-subtitle {
    max-width: 760px;
    color: var(--home-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    font-weight: 500;
    line-height: 1.55;
}

.home-modern .certification-partners {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--home-line);
}

.home-modern .partner-mini-logo,
.home-modern .partner-more {
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    box-shadow: none;
}

.home-modern .certification-logos {
    padding: 1.5rem;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
}

.home-modern .press-section-label,
.home-modern .features-badge,
.home-modern .kvx-diff-badge,
.home-modern .advantages-label,
.home-modern .download-badge,
.home-modern .contact-badge,
.home-modern .testimonials-badge {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
    padding: 0;
    color: #bf4800;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
}

.home-modern .press-notebook {
    padding: 0;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-lg);
    box-shadow: none;
    transform: none;
}

.home-modern .press-pin,
.home-modern .press-notebook::before,
.home-modern .press-notebook::after {
    display: none;
}

.home-modern .press-tabs {
    gap: 0.35rem;
    padding: 0.75rem;
    background: var(--home-surface);
    border-bottom: 1px solid var(--home-line);
}

.home-modern .press-tab {
    min-height: 52px;
    color: var(--home-muted);
    background: transparent;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    transform: none;
}

.home-modern .press-tab.active {
    color: var(--home-ink);
    background: #fff;
    box-shadow: none;
}

.home-modern .press-slide {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    background: #fff;
}

.home-modern .press-highlight,
.home-modern .press-partners,
.home-modern .press-source,
.home-modern .ref-card,
.home-modern .review-card {
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: none;
    transform: none;
}

.home-modern .press-icon,
.home-modern .press-koinno-badge {
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    box-shadow: none;
}

.home-modern .press-text h3,
.home-modern .reviews-header-text h3 {
    color: var(--home-ink);
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    letter-spacing: -0.04em;
}

.home-modern .press-text p,
.home-modern .reviews-header-text p,
.home-modern .review-card-text {
    color: var(--home-muted);
}

.home-modern .features-header,
.home-modern .kvx-diff-header,
.home-modern .advantages-header,
.home-modern .faq-section > .container > h2,
.home-modern .faq-intro,
.home-modern .blog-section > .container > h2,
.home-modern .blog-intro,
.home-modern .contact-header {
    max-width: 1080px;
    margin-inline: auto;
    text-align: center;
}

.home-modern .features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1240px;
    margin: 4rem auto 0;
}

.home-modern .features-grid:not(.is-expanded) > .feature-card:nth-child(n+7):not(.feature-kvadmin):not(.feature-more) {
    display: none;
}

.home-modern .feature-card,
.home-modern .feature-card.feature-ai,
.home-modern .feature-card.feature-kvadmin,
.home-modern .feature-card.feature-more {
    min-height: 220px;
    color: var(--home-ink);
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
    box-shadow: none;
    transform: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.home-modern .feature-card:hover {
    border-color: rgba(0, 113, 227, 0.28);
    box-shadow: none;
    transform: translateY(-2px);
}

.home-modern .feature-card-inner {
    height: 100%;
    padding: 1.55rem;
}

.home-modern .feature-card-icon,
.home-modern .feature-card.feature-ai .feature-card-icon,
.home-modern .feature-card .feature-card-icon[style] {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    border-radius: 13px;
    box-shadow: none;
}

.home-modern .feature-card h3 {
    color: var(--home-ink);
    font-size: 1.15rem;
}

.home-modern .feature-card p {
    color: var(--home-muted);
}

.home-modern .icon-badge,
.home-modern .kvadmin-badge {
    color: #bf4800;
    background: rgba(191, 72, 0, 0.08);
    border: 0;
}

.home-modern .home-feature-toggle {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 1.5rem auto 0;
    padding: 0.7rem 1.2rem;
    color: var(--home-blue);
    background: transparent;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.home-modern .home-feature-toggle:hover {
    text-decoration: underline;
}

.home-modern .home-feature-toggle i {
    font-size: 0.72rem;
    transition: transform 180ms ease;
}

.home-modern .home-feature-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.home-modern .features-cta {
    margin-top: 2.5rem;
}

.home-modern .features-more-btn {
    min-height: 48px;
    padding: 0.75rem 1.4rem;
    color: #fff;
    background: var(--home-blue);
    border-radius: 999px;
    box-shadow: none;
}

.home-modern .features-more-btn:hover {
    color: #fff;
    background: var(--home-blue-hover);
    box-shadow: none;
    transform: scale(1.02);
}

.home-modern .kvx-card,
.home-modern .kvx-card-us,
.home-modern .kvx-card-others {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
    box-shadow: none;
}

.home-modern .kvx-diff-sub {
    margin: 0 auto !important;
    text-align: center !important;
}

.home-modern .kvx-card-us {
    border-color: rgba(0, 113, 227, 0.28);
}

.home-modern .kvx-best-badge {
    color: var(--home-blue);
    background: #fff;
    border: 1px solid rgba(0, 113, 227, 0.22);
    box-shadow: none;
}

.home-modern .kvx-card-label,
.home-modern .kvx-card-us .kvx-card-label {
    color: var(--home-muted);
}

.home-modern .kvx-module {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: none;
}

.home-modern .kvx-module:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.home-modern .kvx-module-icon,
.home-modern .kvx-module li::before {
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.09);
}

.home-modern .kvx-proof-badge {
    background: #fff;
    border: 1px solid var(--home-line);
    box-shadow: none;
}

.home-modern .photo-gallery-section {
    padding-inline: 0 !important;
}

.home-modern .gallery-title {
    margin-bottom: 2.5rem;
    color: var(--home-ink) !important;
    background: none !important;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.045em;
    -webkit-text-fill-color: currentColor !important;
}

.home-modern .gallery-title::after {
    height: 2px;
    background: var(--home-blue);
}

.home-modern .photo-item {
    border-radius: 18px;
    box-shadow: none;
}

.home-modern .photo-caption {
    color: #424245 !important;
    background: #fff !important;
    border-top: 1px solid var(--home-line);
    font-weight: 600;
}

.home-modern .advantages-new::before,
.home-modern .advantages-new::after,
.home-modern .advantage-highlight,
.home-modern .card-decorator,
.home-modern .icon-bg,
.home-modern .btn-bg,
.home-modern .button-glow {
    display: none;
}

.home-modern .partners-showcase {
    margin-top: 4rem;
}

.home-modern .partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.home-modern .partner-card {
    min-height: 190px;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: none;
    transform: none;
}

.home-modern .partner-card:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.home-modern .partner-logo {
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    border: 1px solid var(--home-line);
    box-shadow: none;
}

.home-modern .partner-logo::before {
    display: none;
}

.home-modern .partner-logo i {
    display: block;
    color: var(--home-blue) !important;
    font-size: 1.75rem;
}

.home-modern .partner-logo.has-image {
    background: #fff;
}

.home-modern .partner-logo.has-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-modern .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 5rem;
}

.home-modern .advantage-card {
    min-height: 140px;
    padding: 1.4rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: none;
    transform: none;
}

.home-modern .advantage-card:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.home-modern .advantage-icon {
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    box-shadow: none;
}

.home-modern .advantage-icon i {
    color: var(--home-blue) !important;
}

.home-modern .contact {
    width: auto;
    max-width: 1400px;
    margin-top: clamp(6rem, 10vw, 10rem);
    margin-right: auto;
    margin-left: auto;
    padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem) !important;
    color: #f5f5f7;
    background: #000 !important;
    border: 0;
    border-radius: var(--home-radius-lg);
    box-shadow: none;
}

.home-modern .contact-header {
    max-width: 940px;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-modern .contact::before,
.home-modern .contact::after {
    display: none;
}

.home-modern .contact-header h2 {
    color: #f5f5f7 !important;
    background: none !important;
    font-size: clamp(2.8rem, 5.7vw, 5.8rem) !important;
    -webkit-text-fill-color: currentColor !important;
    animation: none !important;
}

.home-modern .contact-subtitle {
    margin-inline: auto;
    color: #a1a1a6;
}

.home-modern .contact-badge {
    color: #ff9f0a;
}

.home-modern .contact-options {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.2rem;
    margin-top: 0;
}

.home-modern .contact-option,
.home-modern .contact-option.glass-card {
    padding: clamp(1.5rem, 3vw, 2.5rem) !important;
    color: #f5f5f7;
    background: #111 !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    border-radius: var(--home-radius-md) !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none;
}

.home-modern .contact-option::before,
.home-modern .contact-option.glass-card::before {
    display: none !important;
}

.home-modern .contact-option:hover {
    border-color: rgba(41, 151, 255, 0.3);
    box-shadow: none !important;
    transform: none;
}

.home-modern .option-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.home-modern .option-icon,
.home-modern .option-icon-wrapper {
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
    box-shadow: none;
    animation: none;
}

.home-modern .option-icon-wrapper {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 14px;
}

.home-modern .option-icon-wrapper .option-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0;
    background: rgba(41, 151, 255, 0.12);
    border-radius: 14px;
}

.home-modern .option-icon i,
.home-modern .option-icon-wrapper .option-icon i {
    color: #2997ff !important;
    font-size: 1.15rem !important;
}

.home-modern .option-header h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.35rem !important;
    letter-spacing: -0.035em;
}

.home-modern .option-description {
    margin-bottom: 1.5rem;
    color: #a1a1a6;
    font-size: 0.95rem;
    line-height: 1.55;
}

.home-modern .modern-form {
    display: grid;
    gap: 1rem;
}

.home-modern .modern-form .form-row {
    gap: 0.8rem;
}

.home-modern .modern-form .form-group {
    margin: 0;
}

.home-modern .modern-form input,
.home-modern .modern-form select,
.home-modern .modern-form textarea {
    width: 100%;
    color: #f5f5f7;
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    box-shadow: none;
    outline: none;
}

.home-modern .modern-form input {
    min-height: 54px;
    padding: 1.45rem 1rem 0.55rem;
}

.home-modern .modern-form select {
    min-height: 54px;
    padding: 0.8rem 2.6rem 0.8rem 1rem;
}

.home-modern .modern-form textarea {
    min-height: 140px;
    padding: 1.55rem 1rem 0.75rem;
    resize: vertical;
}

.home-modern .modern-form input:focus,
.home-modern .modern-form select:focus,
.home-modern .modern-form textarea:focus {
    border-color: #2997ff;
    box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.12);
}

.home-modern .modern-form select option {
    color: #f5f5f7;
    background: #1c1c1e;
}

.home-modern .floating-label label {
    top: 1rem;
    left: 1rem;
    color: #86868b;
    pointer-events: none;
}

.home-modern .floating-label input:focus ~ label,
.home-modern .floating-label input:not(:placeholder-shown) ~ label,
.home-modern .floating-label textarea:focus ~ label,
.home-modern .floating-label textarea:not(:placeholder-shown) ~ label {
    top: 0.35rem;
    left: 1rem;
    color: #2997ff;
    font-size: 0.68rem;
}

.home-modern .form-line {
    display: none;
}

.home-modern .select-icon {
    color: #86868b;
}

.home-modern .submit-btn,
.home-modern .demo-button,
.home-modern .calendly-button {
    min-height: 48px;
    color: #fff;
    background: var(--home-blue);
    border-radius: 999px;
    box-shadow: none;
    transform: none;
}

.home-modern .submit-btn {
    margin-top: 0.15rem;
}

.home-modern .submit-btn:hover,
.home-modern .demo-button:hover,
.home-modern .calendly-button:hover {
    color: #fff;
    background: var(--home-blue-hover);
    box-shadow: none;
    transform: scale(1.01);
}

.home-modern .booking-benefits {
    padding: 1.1rem;
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.home-modern .benefit-item-compact {
    color: #a1a1a6;
}

.home-modern .benefit-item-compact i {
    color: #2997ff;
}

.home-modern .benefit-item-compact strong {
    color: #f5f5f7;
}

.home-modern .button-hint {
    color: #86868b;
}

.home-modern .button-hint i {
    color: #34c759;
}

.home-modern .partner-testimonials {
    margin-top: clamp(6rem, 10vw, 9rem);
}

.home-modern .testimonial-card {
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: none;
}

.home-modern .dsgvo-section {
    padding: clamp(6rem, 10vw, 10rem) 1.5rem !important;
    color: #f5f5f7;
    background: #000 !important;
}

.home-modern .dsgvo-container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 7rem);
}

.home-modern .dsgvo-text,
.home-modern .dsgvo-image {
    width: 100%;
    padding-right: 0;
}

.home-modern .dsgvo-eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: #ff9f0a;
    font-size: 0.92rem;
    font-weight: 700;
}

.home-modern .dsgvo-text h2 {
    margin-inline: 0;
    color: #f5f5f7;
    text-align: left;
}

.home-modern .dsgvo-text h2 span {
    display: block;
    color: #86868b;
}

.home-modern .dsgvo-text p {
    color: #a1a1a6;
}

.home-modern .dsgvo-badges .badge {
    color: #f5f5f7;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.home-modern .dsgvo-badges .badge:hover {
    box-shadow: none;
    transform: none;
}

.home-modern .dsgvo-badges .badge span {
    color: #f5f5f7;
}

.home-modern .dsgvo-badges .badge i {
    color: #2997ff;
}

.home-modern .certification-info {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.home-modern .dsgvo-text .cta-button {
    min-height: 44px;
    padding: 0.7rem 1rem !important;
    color: #2997ff !important;
    background: transparent !important;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
}

.home-modern .dsgvo-image {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--home-radius-lg);
}

.home-modern .dsgvo-image::after {
    display: none;
}

.home-modern .dsgvo-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: none;
}

.home-modern .dsgvo-image img:hover {
    transform: none;
}

.home-modern .download {
    padding: clamp(6rem, 10vw, 10rem) 1.5rem !important;
    color: var(--home-ink);
    background: var(--home-surface) !important;
}

.home-modern .download::before,
.home-modern .download::after {
    display: none;
}

.home-modern .download-header h2 {
    color: var(--home-ink);
}

.home-modern .download-header {
    max-width: 1080px;
    margin: 0 auto 3rem;
    text-align: center;
    animation: none;
}

.home-modern .download-badge {
    margin-bottom: 1rem;
    padding: 0;
    color: #bf4800;
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.home-modern .download-header h2 .highlight {
    display: block;
    color: #86868b !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.home-modern .download-subtitle {
    max-width: 720px;
    color: var(--home-muted);
    font-size: 1.08rem;
}

.home-modern .download-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 900px;
    margin: 0 auto;
}

.home-modern .store-button {
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 82px;
    justify-content: flex-start;
    padding: 0.9rem 1.1rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: none;
    transform: none;
}

.home-modern .store-button::before {
    display: none;
}

.home-modern .store-button:hover {
    border-color: rgba(0, 113, 227, 0.26);
    box-shadow: none;
    transform: translateY(-2px);
}

.home-modern .store-button .button-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: rgba(0, 113, 227, 0.08);
    border-radius: 12px;
}

.home-modern .store-button .button-icon i {
    color: var(--home-blue);
    font-size: 1.2rem;
}

.home-modern .store-button-ios .button-icon {
    background: rgba(0, 0, 0, 0.06);
}

.home-modern .store-button-ios .button-icon i {
    color: #1d1d1f;
}

.home-modern .store-button-android .button-icon {
    background: rgba(52, 199, 89, 0.1);
}

.home-modern .store-button-android .button-icon i {
    color: #1f9d4c;
}

.home-modern .store-button .button-label {
    color: var(--home-muted);
}

.home-modern .store-button .button-action {
    color: var(--home-ink);
}

.home-modern .download-features {
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: var(--home-muted);
    animation: none;
}

.home-modern .download-features .feature-item {
    min-height: 34px;
    padding: 0.45rem 0.7rem;
    color: #424245;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--home-line);
    border-radius: 999px;
    font-size: 0.78rem;
}

.home-modern .download-features .feature-item i {
    color: #34a853;
}

.home-modern .home-deep-dive {
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
    background: #fff;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home-modern .home-deep-dive > summary {
    display: flex;
    max-width: 980px;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto;
    padding: 0.85rem 1rem;
    color: var(--home-blue);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.home-modern .home-deep-dive > summary::-webkit-details-marker {
    display: none;
}

.home-modern .home-deep-dive > summary:hover {
    background: var(--home-surface);
}

.home-modern .home-deep-dive > summary i {
    font-size: 0.75rem;
    transition: transform 180ms ease;
}

.home-modern .home-deep-dive[open] > summary i {
    transform: rotate(180deg);
}

.home-modern .home-deep-dive .feature-excellence-section {
    margin-top: 2rem;
    padding: clamp(4rem, 7vw, 7rem) 1.5rem !important;
    background: var(--home-surface) !important;
    border-radius: var(--home-radius-lg);
}

.home-modern .excellence-bg-animation,
.home-modern .floating-shape,
.home-modern .hover-effect,
.home-modern .title-decoration {
    display: none;
}

.home-modern .glass-card,
.home-modern .glass-section,
.home-modern .metric-card,
.home-modern .leadership-stat,
.home-modern .feature-card-modern,
.home-modern .tech-item,
.home-modern .highlight-item {
    background: #fff !important;
    border: 1px solid var(--home-line) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: none !important;
}

.home-modern .faq-items {
    max-width: 980px;
    margin: 4rem auto 0;
}

.home-modern .faq-item {
    margin-bottom: 0.75rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 16px;
    box-shadow: none;
}

.home-modern .faq-question {
    min-height: 70px;
    padding: 1.2rem 1.35rem;
    background: transparent;
}

.home-modern .faq-question h3 {
    color: var(--home-ink);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.home-modern .faq-answer {
    color: var(--home-muted);
}

.home-modern .faq-icon {
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
}

.home-modern .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 4rem;
}

.home-modern .blog-card,
.home-modern .blog-card[style] {
    overflow: hidden;
    background: var(--home-surface);
    border: 1px solid var(--home-line) !important;
    border-radius: var(--home-radius-md);
    box-shadow: none;
    transform: none;
}

.home-modern .blog-card:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.home-modern .blog-content h3 {
    color: var(--home-ink);
    letter-spacing: -0.025em;
}

.home-modern .blog-content p {
    color: var(--home-muted);
}

.home-modern .blog-tag,
.home-modern .blog-tag[style] {
    color: #bf4800 !important;
    background: rgba(191, 72, 0, 0.08) !important;
    border-radius: 999px;
}

.home-modern footer {
    color: #f5f5f7;
    background: #000;
    border-top: 0;
}

.home-modern footer a,
.home-modern footer p,
.home-modern footer li {
    color: #a1a1a6;
}

.home-modern footer a:hover {
    color: #fff;
}

.home-modern :focus-visible {
    outline: 3px solid rgba(0, 113, 227, 0.35);
    outline-offset: 3px;
}

.home-modern .cookie-banner,
.home-modern .cookie-details {
    box-sizing: border-box;
    font-family: inherit;
}

.home-modern .cookie-banner {
    max-width: 360px;
}

.home-modern .cookie-btn {
    min-width: 0;
}

.home-modern .floating-contact-btn {
    background: #fff;
    border: 2px solid var(--home-blue);
    box-shadow: none;
    animation: none;
}

.home-modern .floating-contact-btn:hover {
    box-shadow: none;
    transform: scale(1.03);
}

.home-modern .floating-tooltip {
    color: var(--home-ink);
    background: #fff;
    border: 1px solid var(--home-line);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
}

.home-modern .floating-tooltip::after {
    border-left-color: #fff;
}

.home-modern .floating-contact-btn:hover .floating-tooltip,
.home-modern .floating-contact-btn:focus-visible .floating-tooltip {
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
}

.home-modern .tooltip-content .greeting,
.home-modern .tooltip-content .message {
    color: var(--home-ink);
}

.home-modern .tooltip-content .cta {
    color: var(--home-blue);
    background: rgba(0, 113, 227, 0.08);
}

@media (max-width: 1180px) {
    .home-modern .home-hero-shell {
        grid-template-columns: 1fr;
    }

    .home-modern .home-hero-copy {
        max-width: 980px;
        text-align: center;
        margin-inline: auto;
    }

    .home-modern #home-hero-lead {
        margin-inline: auto;
    }

    .home-modern .home-hero-actions,
    .home-modern .home-hero-trust,
    .home-modern .home-hero-press,
    .home-modern .home-hero-references {
        justify-content: center;
    }

    .home-modern .home-device-frame {
        max-width: 920px;
    }

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

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

    .home-modern .home-authority-signals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-modern .home-authority-statement {
        width: min(82vw, 410px);
        min-height: 440px;
        flex-basis: min(82vw, 410px);
    }

    .home-modern .home-product-split {
        grid-template-columns: 1fr;
    }

    .home-modern .home-product-card {
        min-height: auto;
    }

    .home-modern .home-product-connector {
        min-height: 64px;
        flex-direction: row;
    }

    .home-modern .home-product-connector > span {
        transform: rotate(90deg);
    }

    .home-modern .download-options {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .home-modern .home-product-license {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .home-modern .certification-main,
    .home-modern .dsgvo-container,
    .home-modern .contact-options {
        grid-template-columns: 1fr;
    }

    .home-modern .certification-logos {
        max-width: 220px;
    }

    .home-modern .features-grid,
    .home-modern .partners-grid,
    .home-modern .advantages-grid,
    .home-modern .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-modern .primary-nav {
        width: 100%;
        gap: 0.4rem;
        padding-inline: 1rem;
    }

    .home-modern #mobile-download-button {
        min-width: 0;
        max-width: 122px;
        overflow: hidden;
        padding: 0.52rem 0.78rem;
        font-size: 0.82rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home-modern .home-hero {
        min-height: auto;
        padding: 112px 1.25rem 58px;
    }

    .home-modern .home-hero h1 {
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: clamp(2.65rem, 12.5vw, 3.6rem);
        letter-spacing: -0.055em;
    }

    .home-modern .home-eyebrow {
        font-size: 0.86rem;
        line-height: 1.35;
    }

    .home-modern .cookie-banner {
        right: 16px !important;
        left: 16px !important;
        width: auto !important;
        max-width: none;
        padding: 16px !important;
    }

    .home-modern .cookie-details {
        right: 16px !important;
        left: 16px !important;
        width: auto !important;
    }

    .home-modern .floating-tooltip {
        display: block;
        right: 56px;
        min-width: 180px;
        max-width: 190px;
    }

    .home-modern .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .home-modern .home-btn {
        width: 100%;
    }

    .home-modern .home-btn-secondary {
        width: auto;
        align-self: center;
    }

    .home-modern .home-hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .home-modern .home-hero-press {
        gap: 0.4rem;
    }

    .home-modern .home-hero-press-label {
        width: 100%;
        margin: 0 0 0.15rem;
        text-align: center;
    }

    .home-modern .home-hero-references {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.45rem;
    }

    .home-modern .home-hero-reference-logos {
        justify-content: center;
    }

    .home-modern .home-product-bridge {
        padding: 5rem 1.25rem;
    }

    .home-modern .home-authority {
        padding: 3.5rem 1rem;
    }

    .home-modern .home-authority-signals {
        grid-template-columns: 1fr;
    }

    .home-modern .home-proof-archive,
    .home-modern .home-features-archive {
        padding-inline: 1rem;
    }

    .home-modern .home-product-bridge h2 {
        font-size: clamp(3rem, 13vw, 4.6rem);
    }

    .home-modern .home-bridge-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .home-modern .home-bridge-primary {
        width: 100%;
    }

    .home-modern .home-bridge-secondary {
        align-self: center;
    }

    .home-modern .certification-section,
    .home-modern .features-new,
    .home-modern .advantages-new,
    .home-modern .faq-section,
    .home-modern .blog-section,
    .home-modern .press-section,
    .home-modern .kvx-diff {
        padding: 5rem 1rem !important;
    }

    .home-modern .certification-text h2,
    .home-modern .features-header h2,
    .home-modern .kvx-diff-header h2,
    .home-modern .advantages-header h2,
    .home-modern .dsgvo-text h2,
    .home-modern .download-header h2,
    .home-modern .faq-section h2,
    .home-modern .blog-section h2,
    .home-modern .contact-header h2 {
        font-size: clamp(2.65rem, 13vw, 4.3rem);
    }

    .home-modern .features-grid,
    .home-modern .partners-grid,
    .home-modern .advantages-grid,
    .home-modern .blog-grid {
        grid-template-columns: 1fr;
    }

    .home-modern .features-grid:not(.is-expanded) > .feature-card:nth-child(n+5):not(.feature-kvadmin):not(.feature-more) {
        display: none;
    }

    .home-modern .press-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .home-modern .press-tabs::-webkit-scrollbar {
        display: none;
    }

    .home-modern .press-tab {
        min-width: 160px;
    }

    .home-modern .contact {
        padding-inline: 1rem;
        border-radius: 24px;
    }
}

@media (forced-colors: active) {
    .home-modern .home-gradient-word {
        color: CanvasText;
        background: none;
        -webkit-text-fill-color: currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-modern .home-authority-track,
    .home-modern .home-authority-track.is-animated {
        animation: none !important;
        transform: none !important;
    }

    .home-modern *,
    .home-modern *::before,
    .home-modern *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
