/* Know Me Startseite – bewusst vollständig gekapselt unter .kmc-home. */
.kmc-home {
    --kmc-ink: #07111f;
    --kmc-navy: #0b1728;
    --kmc-blue: #2f6bff;
    --kmc-blue-bright: #5f8cff;
    --kmc-ice: #eef4ff;
    --kmc-paper: #f5f6f8;
    --kmc-line: rgba(7, 17, 31, 0.12);
    --kmc-warm: #8eacff;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
    overflow: clip;
    background: #fff;
    color: var(--kmc-ink);
    font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.kmc-home :where(h1, h2, h3, p, ul) {
    margin-top: 0;
}

.kmc-home :where(h1, h2, h3) {
    color: inherit;
    font-family: inherit;
    letter-spacing: -0.032em;
}

.kmc-home a {
    color: inherit;
}

.kmc-home img,
.kmc-home svg {
    display: block;
}

.kmc-home-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.kmc-home-section {
    position: relative;
    padding: clamp(68px, 7vw, 108px) 0;
}

.kmc-home-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.kmc-home-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.kmc-home-button--primary {
    background: #fff;
    color: var(--kmc-ink) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.kmc-home-button--primary:hover,
.kmc-home-button--primary:focus-visible {
    transform: translateY(-3px);
    background: var(--kmc-ice);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.kmc-home-button--ghost {
    border-color: rgba(255,255,255,.28);
    color: #fff !important;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}

.kmc-home-button--ghost:hover,
.kmc-home-button--ghost:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.58);
    background: rgba(255,255,255,.11);
}

.kmc-home-button:focus-visible,
.kmc-home a:focus-visible,
.kmc-home summary:focus-visible {
    outline: 3px solid var(--kmc-warm);
    outline-offset: 4px;
}

/* Hero */
.kmc-home-hero {
    position: relative;
    display: grid;
    min-height: clamp(620px, 82vh, 760px);
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--kmc-ink);
    background-image: var(--kmc-hero-image);
    background-position: 52% center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.kmc-home-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 10, 20, .98) 0%, rgba(3, 10, 20, .88) 32%, rgba(3, 10, 20, .25) 67%, rgba(3, 10, 20, .1) 100%),
        linear-gradient(0deg, rgba(3, 10, 20, .72), transparent 35%);
    content: "";
}

.kmc-home-hero__glow {
    position: absolute;
    z-index: -1;
    top: -200px;
    left: -200px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(47, 107, 255, .16);
    filter: blur(90px);
}

.kmc-home-hero__inner {
    display: flex;
    align-items: center;
    min-height: inherit;
    padding-block: 82px 92px;
}

.kmc-home-hero__copy {
    position: relative;
    z-index: 3;
    width: min(550px, 47%);
}

.kmc-home-hero h1 {
    max-width: 550px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(3rem, 4.7vw, 4.65rem);
    font-weight: 640;
    line-height: 1.02;
}

.kmc-home-hero h1 span {
    color: #a9c0ff;
    font: inherit;
    letter-spacing: inherit;
}

.kmc-home-hero__lead {
    max-width: 515px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.76);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.58;
}

.kmc-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kmc-home-actions--center {
    justify-content: center;
}

.kmc-home-hero-phone {
    position: absolute;
    z-index: 2;
    right: clamp(270px, 29vw, 440px);
    bottom: 5.5%;
    width: clamp(190px, 17vw, 240px);
    color: #fff;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,.44));
    transform: rotate(3.5deg);
}

.kmc-home-hero-phone__frame {
    position: relative;
    padding: 7px;
    border: 1px solid #495265;
    border-radius: 34px;
    background: #05070a;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.kmc-home-hero-phone__camera {
    position: absolute;
    z-index: 4;
    top: 13px;
    left: 50%;
    width: 34%;
    height: 15px;
    border-radius: 10px;
    background: #020305;
    transform: translateX(-50%);
}

.kmc-home-hero-phone__screen {
    aspect-ratio: 390 / 844;
    overflow: hidden;
    border-radius: 27px;
    background: #fff;
}

.kmc-home-hero-phone__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.kmc-home-scroll-cue {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.58) !important;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.kmc-home-scroll-cue i {
    position: relative;
    width: 27px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 20px;
}

.kmc-home-scroll-cue i::after {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: #fff;
    content: "";
    transform: translateX(-50%);
    animation: kmc-scroll-dot 2s infinite;
}

.kmc-home-signal {
    border-bottom: 1px solid var(--kmc-line);
    background: #fff;
}

.kmc-home-signal__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: #48556a;
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .015em;
    text-align: center;
}

.kmc-home-signal__inner i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--kmc-blue);
}

/* Tap-Demo */
.kmc-home-moment {
    background: var(--kmc-paper);
}

.kmc-home-moment__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.kmc-home-moment h2,
.kmc-home-section-head h2,
.kmc-home-products__intro h2,
.kmc-home-comparison__intro h2,
.kmc-home-plans h2,
.kmc-home-faq h2,
.kmc-home-final h2 {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    font-weight: 670;
    line-height: 1.03;
}

.kmc-home-moment h2 {
    font-size: clamp(2.3rem, 3.8vw, 3.9rem);
}

.kmc-home-moment__copy > p {
    max-width: 570px;
    margin-bottom: 40px;
    color: #5b6678;
    font-size: 1.08rem;
}

.kmc-home-checklist {
    display: grid;
    gap: 0;
    padding: 0;
    list-style: none;
}

.kmc-home-checklist li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--kmc-line);
}

.kmc-home-checklist li > span {
    color: var(--kmc-blue);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.kmc-home-checklist strong,
.kmc-home-checklist small {
    display: block;
}

.kmc-home-checklist strong {
    margin-bottom: 3px;
    font-size: 1rem;
}

.kmc-home-checklist small {
    color: #687386;
    font-size: .88rem;
}

.kmc-home-tap-demo {
    --kmc-card-shift: 38px;
    --kmc-phone-rest: 3deg;
    --kmc-phone-active: 2deg;
    position: relative;
    min-height: 620px;
    border-radius: 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 28%, rgba(78,117,220,.2), transparent 31%),
        linear-gradient(145deg, #132035, #070c14 72%);
    box-shadow: 0 38px 90px rgba(7,17,31,.2);
}

.kmc-home-tap-demo::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.kmc-home-tap-demo__halo {
    position: absolute;
    top: 27%;
    left: 38%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(47,107,255,.17);
    filter: blur(45px);
}

.kmc-home-demo-card {
    position: absolute;
    z-index: 2;
    top: 27%;
    left: -6%;
    width: 61%;
    aspect-ratio: 1.58;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,.55);
    transform: rotate(-9deg);
    transform-origin: 70% 50%;
    will-change: transform;
}

.kmc-home-demo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

.kmc-home-demo-card__mark {
    position: absolute;
    right: 10%;
    bottom: 12%;
    color: rgba(255,255,255,.82);
    font-size: clamp(.8rem, 1.5vw, 1.15rem);
    font-weight: 830;
    letter-spacing: .14em;
    line-height: .83;
}

.kmc-home-demo-phone {
    position: absolute;
    z-index: 3;
    right: 8%;
    bottom: 2%;
    width: 39%;
    min-width: 215px;
    height: auto;
    aspect-ratio: auto;
    container-type: inline-size;
    padding: 6px;
    border: 3px solid #38465b;
    border-radius: 40px;
    background: #02050a;
    box-shadow: 0 34px 70px rgba(0,0,0,.6);
    transform: rotate(3deg);
    transform-origin: 50% 85%;
    will-change: transform, filter;
}

.kmc-home-demo-phone__speaker {
    position: absolute;
    z-index: 2;
    top: 8px;
    top: 3.8cqi;
    left: 50%;
    width: 35%;
    height: 11px;
    height: 5cqi;
    border-radius: 10px;
    background: #02050a;
    transform: translateX(-50%);
}

.kmc-home-demo-screen {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1125 / 2436;
    container-type: inline-size;
    overflow: hidden;
    border-radius: 31px;
    background: #02050a;
}

.kmc-home-ios-status {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 26px;
    height: 13.333cqi;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px 4px;
    padding: 3cqi 6cqi 2cqi;
    background: #02050a;
    color: #fff;
    font-size: .58rem;
    font-size: 4.2cqi;
    line-height: 1;
}

.kmc-home-ios-status > strong {
    font-size: .64rem;
    font-size: 4.8cqi;
    font-weight: 700;
}

.kmc-home-ios-status__right {
    display: flex;
    align-items: center;
    gap: 4px;
    gap: 2.3cqi;
}

.kmc-home-ios-signal {
    display: flex;
    height: 10px;
    height: 5.3cqi;
    align-items: end;
    gap: 1px;
    gap: .65cqi;
}

.kmc-home-ios-signal i {
    display: block;
    width: 2px;
    width: 1.1cqi;
    border-radius: 2px;
    background: #fff;
}

.kmc-home-ios-signal i:nth-child(1) { height: 35%; }
.kmc-home-ios-signal i:nth-child(2) { height: 58%; }
.kmc-home-ios-signal i:nth-child(3) { height: 78%; }
.kmc-home-ios-signal i:nth-child(4) { height: 100%; }

.kmc-home-ios-wifi {
    width: 14px;
    width: 7.1cqi;
    height: 10px;
    height: 5.3cqi;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-width: 2;
}

.kmc-home-ios-battery {
    position: relative;
    display: grid;
    min-width: 21px;
    min-width: 10.7cqi;
    height: 11px;
    height: 5.8cqi;
    place-items: center;
    border-radius: 4px;
    background: rgba(255,255,255,.78);
    color: #02050a;
}

.kmc-home-ios-battery::after {
    position: absolute;
    top: 31%;
    right: -2px;
    right: -1.3cqi;
    width: 2px;
    width: 1cqi;
    height: 38%;
    border-radius: 0 2px 2px 0;
    background: rgba(255,255,255,.55);
    content: "";
}

.kmc-home-ios-battery b {
    font-size: .46rem;
    font-size: 2.7cqi;
    font-weight: 800;
}

.kmc-home-demo-screen__idle {
    position: absolute;
    inset: 26px 0 0;
    inset: 13.333cqi 0 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 7px;
    color: rgba(255,255,255,.7);
    text-align: center;
}

.kmc-home-demo-screen__idle span {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 1px solid rgba(105,151,255,.55);
    border-radius: 50%;
    background: rgba(47,107,255,.13);
    color: #a9c0ff;
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .15em;
}

.kmc-home-demo-screen__idle small {
    color: rgba(255,255,255,.42);
    font-size: .64rem;
}

.kmc-home-demo-contact-sheet {
    position: absolute;
    z-index: 2;
    top: 26px;
    top: 13.333cqi;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    opacity: 0;
    background: #285a86;
    transform: translateY(102%) scale(.97);
    transform-origin: 50% 100%;
    will-change: transform, opacity, border-radius;
}

.kmc-home-demo-contact-image {
    position: absolute;
    top: -26px;
    top: -13.333333cqi;
    left: 0;
    width: 100%;
    height: calc(100% + 26px);
    height: calc(100% + 13.333333cqi);
    object-fit: fill;
}

.kmc-home-nfc-waves {
    position: absolute;
    z-index: 4;
    top: 30%;
    left: 42%;
    width: 135px;
    height: 135px;
    transform: rotate(12deg);
}

.kmc-home-nfc-waves i {
    position: absolute;
    inset: 50%;
    border: 2px solid rgba(95,140,255,.85);
    border-radius: 50%;
    opacity: 0;
    animation: none;
}

.kmc-home-tap-demo.is-demo-running .kmc-home-demo-card {
    animation: kmc-card-approach 5.8s cubic-bezier(.4,0,.2,1) infinite;
}

.kmc-home-tap-demo.is-demo-running .kmc-home-demo-phone {
    animation: kmc-phone-response 5.8s cubic-bezier(.4,0,.2,1) infinite;
}

.kmc-home-tap-demo.is-demo-running .kmc-home-demo-contact-sheet {
    animation: kmc-vcard-open 5.8s linear infinite;
}

.kmc-home-tap-demo.is-demo-running .kmc-home-demo-screen__idle {
    animation: kmc-idle-fade 5.8s ease infinite;
}

.kmc-home-tap-demo.is-demo-running .kmc-home-nfc-waves i {
    animation: kmc-nfc-pulse 5.8s ease-out infinite;
}

.kmc-home-tap-demo.is-demo-running .kmc-home-nfc-waves i:nth-child(2) { animation-delay: .18s; }
.kmc-home-tap-demo.is-demo-running .kmc-home-nfc-waves i:nth-child(3) { animation-delay: .36s; }

/* Vorteile */
.kmc-home-benefits {
    background: #fff;
}

.kmc-home-section-head {
    max-width: 870px;
    margin-bottom: clamp(42px, 5.5vw, 70px);
}

.kmc-home-section-head--light {
    color: #fff;
}

.kmc-home-section-head h2 {
    margin-bottom: 0;
}

.kmc-home-benefit-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.kmc-home-benefit {
    position: relative;
    grid-column: span 4;
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--kmc-line);
    border-radius: 26px;
    overflow: hidden;
    background: #f7f8fa;
}

.kmc-home-benefit--large {
    grid-column: span 8;
    padding-right: 38%;
    background: var(--kmc-ink);
    color: #fff;
}

.kmc-home-benefit--accent {
    grid-column: span 8;
    min-height: 330px;
    padding-right: 42%;
    background: var(--kmc-blue);
    color: #fff;
}

.kmc-home-benefit__number {
    margin-bottom: 65px;
    color: #7e899b;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.kmc-home-benefit--large .kmc-home-benefit__number,
.kmc-home-benefit--accent .kmc-home-benefit__number {
    color: rgba(255,255,255,.55);
}

.kmc-home-benefit__icon {
    position: absolute;
    top: 34px;
    right: 34px;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--kmc-blue);
    box-shadow: 0 15px 40px rgba(7,17,31,.1);
}

.kmc-home-benefit__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.kmc-home-benefit--large .kmc-home-benefit__icon,
.kmc-home-benefit--accent .kmc-home-benefit__icon {
    top: 50%;
    right: 9%;
    width: 150px;
    height: 150px;
    transform: translateY(-50%);
}

.kmc-home-benefit--large .kmc-home-benefit__icon {
    background: rgba(255,255,255,.08);
    color: var(--kmc-blue-bright);
}

.kmc-home-benefit--accent .kmc-home-benefit__icon {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.kmc-home-benefit--large .kmc-home-benefit__icon svg,
.kmc-home-benefit--accent .kmc-home-benefit__icon svg {
    width: 64px;
    height: 64px;
}

.kmc-home-benefit h3 {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    font-weight: 680;
    line-height: 1.08;
}

.kmc-home-benefit p {
    max-width: 510px;
    margin-bottom: 0;
    color: #687386;
    font-size: .95rem;
}

.kmc-home-benefit--large p,
.kmc-home-benefit--accent p {
    color: rgba(255,255,255,.68);
}

/* Ablauf */
.kmc-home-how {
    background: var(--kmc-ink);
    color: #fff;
}

.kmc-home-how::before {
    position: absolute;
    top: 0;
    right: -18%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(47,107,255,.16), transparent 65%);
    content: "";
}

.kmc-home-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,.12);
}

.kmc-home-steps article {
    position: relative;
    min-height: 450px;
    padding: 30px;
    background: #0a1525;
}

.kmc-home-steps__index {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.kmc-home-steps__visual {
    position: relative;
    display: grid;
    height: 220px;
    margin: 22px 0 30px;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,.045);
}

.kmc-home-steps__visual--card img {
    width: 82%;
    height: 82%;
    object-fit: cover;
    border-radius: 18px;
    transform: rotate(-7deg) scale(1.12);
}

.kmc-home-steps__visual--profile {
    align-content: center;
    gap: 10px;
    padding: 35px 26%;
}

.kmc-home-steps__visual--profile i {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--kmc-blue), #8fb0ff);
}

.kmc-home-steps__visual--profile b,
.kmc-home-steps__visual--profile span {
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background: rgba(255,255,255,.14);
}

.kmc-home-steps__visual--profile b { width: 74%; background: rgba(255,255,255,.7); }
.kmc-home-steps__visual--profile span:last-child { width: 68%; }

.kmc-home-steps__visual--tap span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: var(--kmc-blue);
    box-shadow: 0 0 60px rgba(47,107,255,.5);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
}

.kmc-home-steps__visual--tap i {
    position: absolute;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(95,140,255,.42);
    border-radius: 50%;
    animation: kmc-tap-ring 3s infinite ease-out;
}

.kmc-home-steps__visual--tap i:nth-of-type(2) { animation-delay: 1s; }
.kmc-home-steps__visual--tap i:nth-of-type(3) { animation-delay: 2s; }

.kmc-home-steps h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 680;
}

.kmc-home-steps p {
    margin-bottom: 0;
    color: rgba(255,255,255,.58);
    font-size: .9rem;
}

.kmc-home-how__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 36px;
}

/* Einsatzfelder */
.kmc-home-usecases {
    background: #f1f3f6;
}

.kmc-home-usecase-list {
    border-top: 1px solid var(--kmc-line);
}

.kmc-home-usecase-list article {
    display: grid;
    grid-template-columns: 70px 1fr 1.25fr;
    gap: 32px;
    align-items: center;
    padding: 32px 10px;
    border-bottom: 1px solid var(--kmc-line);
    transition: padding .25s ease, background .25s ease;
}

.kmc-home-usecase-list article:hover {
    padding-inline: 24px;
    background: rgba(255,255,255,.72);
}

.kmc-home-usecase-list span {
    color: var(--kmc-blue);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.kmc-home-usecase-list h3,
.kmc-home-usecase-list p {
    margin-bottom: 0;
}

.kmc-home-usecase-list h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 660;
}

.kmc-home-usecase-list p {
    color: #657083;
}

/* Vergleich */
.kmc-home-comparison {
    background: #fff;
}

.kmc-home-comparison__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
    gap: clamp(36px, 7vw, 90px);
    align-items: end;
    margin-bottom: 34px;
}

.kmc-home-comparison__intro h2 {
    margin-bottom: 0;
}

.kmc-home-comparison__intro p {
    margin-bottom: 8px;
    color: #657083;
    font-size: 1.02rem;
}

.kmc-home-comparison-table {
    overflow: hidden;
    border: 1px solid var(--kmc-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(7,17,31,.06);
}

.kmc-home-comparison-table [role="row"] {
    display: grid;
    grid-template-columns: .78fr 1fr 1.08fr;
    border-bottom: 1px solid var(--kmc-line);
}

.kmc-home-comparison-table [role="row"]:last-child {
    border-bottom: 0;
}

.kmc-home-comparison-table [role="row"]:first-child {
    background: #07111f;
    color: #fff;
}

.kmc-home-comparison-table span {
    min-width: 0;
    padding: 18px 20px;
    border-right: 1px solid var(--kmc-line);
    color: #647084;
    font-size: .9rem;
}

.kmc-home-comparison-table span:last-child {
    border-right: 0;
}

.kmc-home-comparison-table [role="columnheader"],
.kmc-home-comparison-table [role="rowheader"] {
    color: inherit;
    font-weight: 760;
}

.kmc-home-comparison-table [role="row"]:first-child span {
    border-color: rgba(255,255,255,.12);
    color: rgba(255,255,255,.78);
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.kmc-home-comparison-table [role="row"] span:last-child {
    color: #182235;
    font-weight: 650;
}

.kmc-home-comparison-table [role="row"]:first-child span:last-child {
    color: rgba(255,255,255,.9);
}

/* Produkte */
.kmc-home-products {
    background: #f7f8fb;
}

.kmc-home-products__intro {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.kmc-home-products__intro h2 {
    margin-bottom: 0;
}

.kmc-home-products__intro > p {
    margin-bottom: 8px;
    color: #657083;
}

.kmc-home-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kmc-home-product {
    position: relative;
    min-height: 520px;
    padding: 26px;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none !important;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}

.kmc-home-product:hover,
.kmc-home-product:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(7,17,31,.16);
}

.kmc-home-product--black {
    border: 1px solid #cbd5e1;
    background: linear-gradient(145deg, #edf2f7, #d8e0ea);
    color: var(--kmc-ink);
}

.kmc-home-product--white {
    border: 1px solid var(--kmc-line);
    background: #f5f6f8;
    color: var(--kmc-ink);
}

.kmc-home-product--wood {
    background: #ececec;
    color: #2a2118;
}

.kmc-home-product__tag {
    position: relative;
    z-index: 3;
    display: inline-flex;
    padding: 6px 11px;
    border: 1px solid currentColor;
    border-radius: 99px;
    font-size: .67rem;
    font-weight: 750;
    letter-spacing: .06em;
    opacity: .62;
    text-transform: uppercase;
}

.kmc-home-product > img {
    position: absolute;
    top: 9%;
    left: 50%;
    width: 135%;
    height: 68%;
    object-fit: cover;
    transform: translateX(-50%) rotate(-6deg);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.kmc-home-product:hover > img,
.kmc-home-product:focus-visible > img {
    transform: translateX(-50%) rotate(-3deg) scale(1.04);
}

.kmc-home-product > img.kmc-home-product__wood-image {
    z-index: 2;
    top: 7%;
    width: 126%;
    height: 73%;
    object-fit: cover;
    transform: translateX(-50%) rotate(-4deg);
}

.kmc-home-product:hover > img.kmc-home-product__wood-image,
.kmc-home-product:focus-visible > img.kmc-home-product__wood-image {
    transform: translateX(-50%) rotate(0deg) scale(1.025);
}

.kmc-home-product > div:last-child {
    position: absolute;
    right: 26px;
    bottom: 25px;
    left: 26px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
}

.kmc-home-product h3 {
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 650;
}

.kmc-home-product__price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kmc-home-product__price > span:first-child {
    display: grid;
    gap: 1px;
    line-height: 1.2;
    text-align: right;
}

.kmc-home-product__price strong {
    font-size: .82rem;
    font-weight: 750;
}

.kmc-home-product__price small {
    color: #667085;
    font-size: .63rem;
    font-weight: 600;
}

.kmc-home-product__arrow {
    display: inline-grid;
    width: 32px;
    height: 32px;
    margin-left: 7px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .9rem;
}

.kmc-home-product__arrow svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.kmc-home-products__action {
    margin-top: 38px;
    text-align: center;
}

.kmc-home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid currentColor;
    color: var(--kmc-ink) !important;
    font-size: .93rem;
    font-weight: 750;
    text-decoration: none !important;
}

.kmc-home-text-link span {
    transition: transform .2s ease;
}

.kmc-home-text-link:hover span {
    transform: translateX(5px);
}

/* Kontakterfassung */
.kmc-home-leads {
    background: #fff;
}

.kmc-home-leads__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: clamp(56px, 8vw, 108px);
    align-items: center;
}

.kmc-home-leads__copy h2 {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
    font-weight: 620;
    line-height: .98;
}

.kmc-home-leads__copy > p:not(.kmc-home-leads__note) {
    max-width: 680px;
    color: #5f6b7d;
    font-size: 1.04rem;
}

.kmc-home-leads__benefits {
    display: grid;
    gap: 12px;
    margin: 30px 0 28px;
    padding: 0;
    list-style: none;
}

.kmc-home-leads__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1a2638;
    font-size: .93rem;
    font-weight: 650;
}

.kmc-home-leads__benefits li > span {
    display: inline-grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 1px;
    place-items: center;
    border-radius: 50%;
    background: #e9f0ff;
    color: #2459da;
    font-size: .72rem;
}

.kmc-home-leads__note {
    max-width: 680px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--kmc-line);
    color: #6c7788;
    font-size: .8rem;
}

.kmc-home-leads__preview {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    padding: 22px;
    border: 1px solid #dce2ea;
    border-radius: 28px;
    background: #f4f6f9;
    box-shadow: 0 28px 70px rgba(7, 17, 31, .12);
}

.kmc-home-leads__preview-head,
.kmc-home-leads__contact,
.kmc-home-leads__source {
    display: flex;
    align-items: center;
}

.kmc-home-leads__preview-head {
    justify-content: space-between;
    gap: 18px;
    padding: 3px 3px 19px;
}

.kmc-home-leads__preview-head div,
.kmc-home-leads__contact div {
    display: grid;
}

.kmc-home-leads__preview-head small {
    color: #7b8595;
    font-size: .68rem;
    font-weight: 700;
}

.kmc-home-leads__preview-head strong {
    color: #101b2c;
    font-size: 1.04rem;
    font-weight: 740;
}

.kmc-home-leads__preview-head > span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #e6edff;
    color: #2758c7;
    font-size: .66rem;
    font-weight: 780;
}

.kmc-home-leads__contact {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e0e5ec;
    border-radius: 18px;
    background: #fff;
}

.kmc-home-leads__avatar {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #17386c;
    color: #fff;
    font-size: .75rem;
    font-weight: 760;
}

.kmc-home-leads__contact strong {
    overflow: hidden;
    color: #152033;
    font-size: .87rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kmc-home-leads__contact small,
.kmc-home-leads__contact time {
    color: #7a8595;
    font-size: .7rem;
}

.kmc-home-leads__context {
    margin: 12px 0;
    padding: 16px;
    border-radius: 18px;
    background: #eaf0ff;
}

.kmc-home-leads__context span,
.kmc-home-leads__source span {
    display: block;
    color: #647083;
    font-size: .65rem;
    font-weight: 760;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.kmc-home-leads__context p {
    margin: 6px 0 0;
    color: #263854;
    font-size: .78rem;
    line-height: 1.5;
}

.kmc-home-leads__source {
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    border: 1px solid #e0e5ec;
    border-radius: 16px;
    background: #fff;
}

.kmc-home-leads__source strong {
    color: #263348;
    font-size: .76rem;
    font-weight: 720;
    text-align: right;
}

/* Abos */
.kmc-home-plans {
    background: linear-gradient(135deg, #17386c, #07111f 67%);
    color: #fff;
}

.kmc-home-plans::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.kmc-home-plans__inner {
    position: relative;
}

.kmc-home-plans__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: end;
}

.kmc-home-plans__intro h2 {
    max-width: 760px;
}

.kmc-home-plans__intro p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255,255,255,.65);
    font-size: 1.04rem;
}

.kmc-home-plan-facts {
    display: grid;
    gap: 9px;
    padding-bottom: 4px;
    color: rgba(255,255,255,.72);
    font-size: .8rem;
    font-weight: 650;
}

.kmc-home-plan-facts span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.kmc-home-plan-facts span::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #85a8ff;
    content: "";
}

.kmc-home-plan-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 54px;
}

.kmc-home-plan-cards article {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 350px;
    flex-direction: column;
    padding: 25px 22px 22px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(14px);
}

.kmc-home-plan-cards__featured {
    background: #fff !important;
    color: var(--kmc-ink);
}

.kmc-home-plan-card__type {
    display: block;
    min-height: 24px;
    color: rgba(255,255,255,.58);
    font-size: .65rem;
    font-weight: 780;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.kmc-home-plan-cards__featured .kmc-home-plan-card__type {
    color: var(--kmc-blue) !important;
}

.kmc-home-plan-card__badge {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 4px 8px;
    border-radius: 99px;
    background: #e9f0ff;
    color: #2459da;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.kmc-home-plan-cards h3 {
    margin: 8px 0 0;
    color: inherit;
    font-size: 1.35rem;
    font-weight: 680;
    line-height: 1.1;
}

.kmc-home-plan-card__price {
    margin-top: 25px;
    line-height: 1.1;
}

.kmc-home-plan-card__price strong {
    display: block;
    color: inherit;
    font-size: clamp(2rem, 2.6vw, 2.45rem);
    font-weight: 650;
    letter-spacing: -.055em;
    white-space: nowrap;
}

.kmc-home-plan-card__price span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.55);
    font-size: .72rem;
    font-weight: 650;
}

.kmc-home-plan-card__tax {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.45);
    font-size: .65rem;
}

.kmc-home-plan-card__lead-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #b9ccff;
    font-size: .68rem;
    font-weight: 720;
    line-height: 1.3;
}

.kmc-home-plan-card__lead-feature::before {
    color: #85a8ff;
    content: "✓";
    font-weight: 800;
}

.kmc-home-plan-card__lead-feature--muted {
    color: rgba(255,255,255,.48);
}

.kmc-home-plan-card__lead-feature--muted::before {
    color: rgba(255,255,255,.38);
    content: "–";
}

.kmc-home-plan-cards__featured .kmc-home-plan-card__lead-feature {
    color: #2859c9;
}

.kmc-home-plan-cards__featured .kmc-home-plan-card__lead-feature::before {
    color: #2859c9;
}

.kmc-home-plan-cards__featured .kmc-home-plan-card__price span,
.kmc-home-plan-cards__featured .kmc-home-plan-card__tax,
.kmc-home-plan-cards .kmc-home-plan-cards__featured p {
    color: #687386;
}

.kmc-home-plan-cards p {
    margin: 24px 0;
    color: rgba(255,255,255,.62);
    font-size: .8rem;
    line-height: 1.5;
}

.kmc-home-plan-cards a {
    margin-top: auto;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 99px;
    font-size: .74rem;
    font-weight: 750;
    text-align: center;
    text-decoration: none !important;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.kmc-home-plan-cards article:not(.kmc-home-plan-cards__featured) a:hover,
.kmc-home-plan-cards article:not(.kmc-home-plan-cards__featured) a:focus-visible {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.1);
}

.kmc-home-plan-cards__featured a {
    border-color: var(--kmc-blue);
    background: var(--kmc-blue);
    color: #fff !important;
}

.kmc-home-plan-cards__featured a:hover,
.kmc-home-plan-cards__featured a:focus-visible {
    border-color: #2459da;
    background: #2459da;
}

/* FAQ */
.kmc-home-faq {
    background: #fff;
}

.kmc-home-faq__grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 100px;
}

.kmc-home-faq__intro {
    position: sticky;
    top: 50px;
    align-self: start;
}

.kmc-home-faq__items {
    border-top: 1px solid var(--kmc-line);
}

.kmc-home-faq details {
    border-bottom: 1px solid var(--kmc-line);
}

.kmc-home-faq summary {
    position: relative;
    padding: 26px 52px 26px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 680;
    list-style: none;
}

.kmc-home-faq summary::-webkit-details-marker { display: none; }

.kmc-home-faq summary span,
.kmc-home-faq summary span::after {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 18px;
    height: 1.5px;
    background: var(--kmc-blue);
    content: "";
    transition: transform .2s ease;
}

.kmc-home-faq summary span::after {
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.kmc-home-faq details[open] summary span::after {
    transform: rotate(0deg);
}

.kmc-home-faq details p {
    max-width: 650px;
    margin: -4px 0 27px;
    color: #657083;
}

/* Finale CTA */
.kmc-home-final {
    position: relative;
    isolation: isolate;
    padding: clamp(100px, 13vw, 180px) 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 86% 78% at 50% 0%, rgba(70, 116, 255, .46) 0%, rgba(30, 70, 157, .28) 36%, rgba(3, 9, 20, 0) 76%),
        linear-gradient(180deg, #102852 0%, #091a36 38%, #030914 100%);
    color: #fff;
    text-align: center;
}

.kmc-home-final__orb {
    position: absolute;
    z-index: -1;
    top: -380px;
    left: 50%;
    width: min(900px, 130vw);
    height: 760px;
    border-radius: 50%;
    background: rgba(95, 140, 255, .2);
    filter: blur(140px);
    transform: translateX(-50%);
}

.kmc-home-final__inner {
    position: relative;
}

.kmc-home-final h2 {
    max-width: 1000px;
    margin-inline: auto;
    color: #fff;
    font-size: clamp(2.7rem, 5.5vw, 5.8rem);
}

.kmc-home-final .kmc-home-actions {
    margin-top: 40px;
}

/* Progressive Scroll-Animationen: Ohne JS bleibt alles sichtbar. */
.kmc-home.is-motion-ready [data-kmc-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
}

.kmc-home.is-motion-ready [data-kmc-reveal][data-kmc-delay="1"] { transition-delay: .1s; }
.kmc-home.is-motion-ready [data-kmc-reveal][data-kmc-delay="2"] { transition-delay: .2s; }

.kmc-home.is-motion-ready [data-kmc-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes kmc-scroll-dot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

@keyframes kmc-nfc-pulse {
    0%, 25% { inset: 50%; opacity: 0; }
    31% { opacity: .78; }
    46% { inset: 0; opacity: 0; }
    100% { inset: 0; opacity: 0; }
}

@keyframes kmc-card-approach {
    0%, 16%, 100% { transform: translate3d(0, 0, 0) rotate(-9deg); }
    29%, 45% { transform: translate3d(var(--kmc-card-shift, 38px), 4px, 0) rotate(-5deg); }
    62% { transform: translate3d(0, 0, 0) rotate(-9deg); }
}

@keyframes kmc-phone-response {
    0%, 27%, 100% { filter: brightness(.93); transform: rotate(var(--kmc-phone-rest, 3deg)) scale(1); }
    37%, 61% { filter: brightness(1.04) drop-shadow(0 0 20px rgba(78,124,255,.22)); transform: rotate(var(--kmc-phone-active, 2deg)) scale(1.018); }
    76% { filter: brightness(.93); transform: rotate(var(--kmc-phone-rest, 3deg)) scale(1); }
}

@keyframes kmc-vcard-open {
    0%, 31% {
        border-radius: 32px 32px 0 0;
        opacity: 0;
        transform: translateY(102%) scale(.97);
    }
    32% {
        border-radius: 32px 32px 0 0;
        opacity: 1;
        transform: translateY(102%) scale(.97);
        animation-timing-function: cubic-bezier(.22, 1, .36, 1);
    }
    45%, 76% {
        border-radius: 0;
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    85%, 100% {
        border-radius: 22px 22px 0 0;
        opacity: 0;
        transform: translateY(102%) scale(.98);
    }
}

@keyframes kmc-idle-fade {
    0%, 30%, 88%, 100% { opacity: 1; transform: scale(1); }
    40%, 78% { opacity: .2; transform: scale(.96); }
}

@keyframes kmc-tap-ring {
    0% { opacity: .65; transform: scale(.65); }
    100% { opacity: 0; transform: scale(1.55); }
}

@media (max-width: 1024px) {
    .kmc-home-hero { background-position: 60% center; }
    .kmc-home-hero__copy { width: 51%; }
    .kmc-home-hero-phone { right: 23vw; width: 190px; }
    .kmc-home-moment__grid { grid-template-columns: .85fr 1.15fr; gap: 45px; }
    .kmc-home-tap-demo { min-height: 550px; }
    .kmc-home-benefit--large .kmc-home-benefit__icon,
    .kmc-home-benefit--accent .kmc-home-benefit__icon { right: 7%; width: 120px; height: 120px; }
    .kmc-home-products__intro { gap: 45px; }
    .kmc-home-product { min-height: 500px; }
    .kmc-home-leads__grid { gap: 48px; }
    .kmc-home-plan-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .kmc-home-faq__grid { gap: 60px; }
}

@media (max-width: 820px) {
    .kmc-home-container { width: min(calc(100% - 32px), 680px); }
    .kmc-home-section { padding-block: 72px; }
    .kmc-home-hero {
        min-height: 840px;
        align-items: end;
        background-position: 70% top;
        background-size: auto 58%;
    }
    .kmc-home-hero::before {
        background: linear-gradient(0deg, rgba(3,10,20,.99) 0%, rgba(3,10,20,.91) 45%, rgba(3,10,20,.2) 100%);
    }
    .kmc-home-hero__inner { align-items: end; padding-block: 330px 68px; }
    .kmc-home-hero__copy { width: 100%; }
    .kmc-home-hero-phone { top: 55px; right: 24%; bottom: auto; width: 160px; }
    .kmc-home-scroll-cue { display: none; }
    .kmc-home-signal__inner { flex-wrap: wrap; gap: 9px 15px; padding-block: 20px; }
    .kmc-home-moment__grid,
    .kmc-home-products__intro,
    .kmc-home-comparison__intro,
    .kmc-home-leads__grid,
    .kmc-home-faq__grid { grid-template-columns: 1fr; }
    .kmc-home-moment__grid { gap: 60px; }
    .kmc-home-tap-demo { min-height: 600px; }
    .kmc-home-benefit,
    .kmc-home-benefit--large,
    .kmc-home-benefit--accent { grid-column: span 6; min-height: 350px; padding: 30px; }
    .kmc-home-benefit--large,
    .kmc-home-benefit--accent { padding-right: 30px; }
    .kmc-home-benefit--large .kmc-home-benefit__icon,
    .kmc-home-benefit--accent .kmc-home-benefit__icon { top: 30px; right: 30px; width: 66px; height: 66px; transform: none; }
    .kmc-home-benefit--large .kmc-home-benefit__icon svg,
    .kmc-home-benefit--accent .kmc-home-benefit__icon svg { width: 30px; height: 30px; }
    .kmc-home-steps { grid-template-columns: 1fr; }
    .kmc-home-steps article { display: grid; grid-template-columns: 52% 1fr; column-gap: 26px; min-height: 330px; }
    .kmc-home-steps__index { grid-column: 1 / -1; }
    .kmc-home-steps__visual { grid-row: 2 / 5; height: 240px; margin: 20px 0 0; }
    .kmc-home-steps h3 { align-self: end; margin-top: 35px; }
    .kmc-home-how__action { flex-direction: column; text-align: center; }
    .kmc-home-product-grid { grid-template-columns: repeat(2, 1fr); }
    .kmc-home-product--wood { grid-column: 1 / -1; min-height: 440px; }
    .kmc-home-product--wood > img.kmc-home-product__wood-image { top: 2%; width: 82%; height: 80%; }
    .kmc-home-products__intro { gap: 20px; }
    .kmc-home-leads__grid { gap: 48px; }
    .kmc-home-leads__preview { max-width: 560px; margin: 0; }
    .kmc-home-plans__intro { grid-template-columns: 1fr; gap: 28px; align-items: start; }
    .kmc-home-plan-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kmc-home-plan-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kmc-home-faq__grid { gap: 40px; }
    .kmc-home-faq__intro { position: static; }
}

@media (max-width: 560px) {
    .kmc-home { font-size: 15px; }
    .kmc-home-container { width: calc(100% - 28px); }
    .kmc-home-section { padding-block: 58px; }
    .kmc-home-hero { min-height: 760px; background-position: 71% top; background-size: auto 49%; background-color: #030a14; }
    .kmc-home-hero__inner { padding-block: 295px 42px; }
    .kmc-home-hero h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 10.8vw, 3.15rem); line-height: 1.03; }
    .kmc-home-hero-phone { top: 62px; right: auto; left: 20px; width: 128px; transform: rotate(-2.5deg); }
    .kmc-home-hero-phone__frame { padding: 5px; border-radius: 24px; }
    .kmc-home-hero-phone__screen { border-radius: 19px; }
    .kmc-home-hero-phone__camera { top: 9px; height: 10px; }
    .kmc-home-hero__lead { max-width: 340px; margin-bottom: 24px; font-size: .96rem; }
    .kmc-home-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
    .kmc-home-button { width: 100%; }
    .kmc-home-signal__inner { justify-content: center; gap: 7px 16px; text-align: center; }
    .kmc-home-signal__inner i { display: none; }
    .kmc-home-moment h2,
    .kmc-home-section-head h2,
    .kmc-home-products__intro h2,
    .kmc-home-comparison__intro h2,
    .kmc-home-leads__copy h2,
    .kmc-home-plans h2,
    .kmc-home-faq h2 { font-size: 2.2rem; }
    .kmc-home-tap-demo {
        --kmc-card-shift: 28px;
        --kmc-phone-rest: 1deg;
        --kmc-phone-active: 0deg;
        min-height: 560px;
        border-radius: 26px;
    }
    .kmc-home-demo-card { top: 13%; left: 6%; width: 58%; }
    .kmc-home-demo-card__mark { right: auto; bottom: 14%; left: 11%; font-size: .68rem; }
    .kmc-home-demo-phone { right: 3%; bottom: 2%; width: 54%; min-width: 0; height: auto; padding: 5px; border-radius: 32px; transform: rotate(1deg); }
    .kmc-home-demo-screen { border-radius: 26px; }
    .kmc-home-nfc-waves { top: 24%; left: 42%; width: 82px; height: 82px; }
    .kmc-home-tap-demo.is-demo-running .kmc-home-demo-card,
    .kmc-home-tap-demo.is-demo-running .kmc-home-demo-phone,
    .kmc-home-tap-demo.is-demo-running .kmc-home-demo-contact-sheet,
    .kmc-home-tap-demo.is-demo-running .kmc-home-demo-screen__idle,
    .kmc-home-tap-demo.is-demo-running .kmc-home-nfc-waves i { animation-duration: 6.4s; }
    .kmc-home-benefit-grid { grid-template-columns: 1fr; }
    .kmc-home-benefit,
    .kmc-home-benefit--large,
    .kmc-home-benefit--accent { grid-column: 1; min-height: 330px; }
    .kmc-home-benefit__number { margin-bottom: 72px; }
    .kmc-home-steps article { display: block; min-height: auto; padding: 24px; }
    .kmc-home-steps__visual { height: 220px; margin: 18px 0 28px; }
    .kmc-home-steps h3 { margin-top: 0; }
    .kmc-home-usecase-list article { grid-template-columns: 38px 1fr; gap: 10px 15px; padding: 25px 0; }
    .kmc-home-usecase-list p { grid-column: 2; }
    .kmc-home-usecase-list article:hover { padding-inline: 10px; }
    .kmc-home-comparison__intro { gap: 18px; margin-bottom: 26px; }
    .kmc-home-comparison-table {
        display: grid;
        gap: 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .kmc-home-comparison-table [role="row"] {
        grid-template-columns: 1fr;
        border: 1px solid var(--kmc-line);
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
    }
    .kmc-home-comparison-table [role="row"]:first-child {
        display: none;
    }
    .kmc-home-comparison-table span {
        padding: 13px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--kmc-line);
    }
    .kmc-home-comparison-table span:last-child {
        border-bottom: 0;
    }
    .kmc-home-comparison-table [role="rowheader"] {
        background: #f3f6fb;
    }
    .kmc-home-comparison-table [role="cell"]:nth-child(2)::before,
    .kmc-home-comparison-table [role="cell"]:nth-child(3)::before {
        display: block;
        margin-bottom: 3px;
        color: #7d889a;
        font-size: .66rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    .kmc-home-comparison-table [role="cell"]:nth-child(2)::before { content: "Papier"; }
    .kmc-home-comparison-table [role="cell"]:nth-child(3)::before { content: "Know Me"; }
    .kmc-home-product-grid { grid-template-columns: 1fr; }
    .kmc-home-product,
    .kmc-home-product--wood { grid-column: 1; min-height: 470px; }
    .kmc-home-product--wood > img.kmc-home-product__wood-image { top: 7%; width: 126%; height: 73%; }
    .kmc-home-leads__copy h2 { margin-top: 16px; }
    .kmc-home-leads__preview { padding: 16px; border-radius: 22px; }
    .kmc-home-leads__contact { padding: 14px; }
    .kmc-home-leads__source { align-items: flex-start; flex-direction: column; gap: 4px; }
    .kmc-home-leads__source strong { text-align: left; }
    .kmc-home-plan-facts { grid-template-columns: 1fr; }
    .kmc-home-plan-cards { grid-template-columns: 1fr; }
    .kmc-home-plan-cards article { min-height: 305px; }
    .kmc-home-final h2 { font-size: 2.75rem; }
}

@media (prefers-reduced-motion: reduce) {
    .kmc-home *,
    .kmc-home *::before,
    .kmc-home *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .kmc-home.is-motion-ready [data-kmc-reveal] {
        opacity: 1;
        transform: none;
    }

    .kmc-home-demo-contact-sheet {
        border-radius: 0 !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .kmc-home-demo-screen__idle {
        opacity: 0 !important;
    }
}
