.company-rollout-section {
    width: 100%;
    min-height: clamp(320px, 42vw, 520px);
    display: flex;
    align-items: stretch;
}

/* Company hero – Produktvideo */
.company-hero .company-hero-video-col {
    position: relative;
    display: flex;
    align-items: center;
}

.company-hero .columns > .column:first-child {
    position: relative;
}

.company-hero .company-hero-video-wrap {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    position: relative;
}

.company-hero .company-hero-video,
.company-hero .company-hero-video video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.company-hero .company-one {
    bottom: 1rem;
    right: -20rem;
}

.company-hero .company-two {
    top: -4rem;
    right: 3rem;
}

.company-hero .company-three {
    bottom: -2.5rem;
    right: -0.5rem;
}

.company-rollout-section .company-rollout-timeline {
    flex: 1;
    min-height: inherit;
}

.company-rollout-timeline {
    --orange: #ff7e0c;
    --brand-50: #fef6ee;
    --brand-100: #fff4da;
    --brand-200: #ffe6b5;
    --brand-700: #cd4b17;
    --gray-100: #f2f4f7;
    --gray-200: #eaecf0;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-500: #667085;
    --gray-600: #475467;
    --gray-700: #344054;
    --gray-900: #101828;
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background: transparent;
    text-align: left;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    font-size: clamp(10px, 1.1vw, 20px);
}

.company-rollout-timeline,
.company-rollout-timeline *,
.company-rollout-timeline *::before,
.company-rollout-timeline *::after {
    box-sizing: border-box;
}

.company-rollout-timeline .scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: transparent;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    font-size: clamp(10px, 1.1vw, 20px);
}

.company-rollout-timeline .bg {
    display: none;
}
/* ── Glow ── */
.company-rollout-timeline .glow {
    position: absolute;
    width: 22em;
    height: 22em;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 126, 12, 0.09) 0%,
        transparent 70%
    );
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: crt-glowPulse 3.5s ease-in-out 0.8s infinite;
}
@keyframes crt-glowPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.18);
    }
}
/* ══════════════════════════════
         STEPS PANEL
         ══════════════════════════════ */
.company-rollout-timeline .steps-panel {
    position: absolute;
    right: 10%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 14em;
    font-size: 1.2em;
    text-align: left;
}
.company-rollout-timeline .step-row {
    display: block;
    width: 100%;
    opacity: 0;
    position: relative;
}
.company-rollout-timeline .step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 2em;
    flex-shrink: 0;
}
.company-rollout-timeline .step-num {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62em;
    font-weight: 700;
    color: var(--gray-400);
    flex-shrink: 0;
}
.company-rollout-timeline .step-line {
    width: 2px;
    height: 2.2em;
    background: var(--gray-200);
    flex-shrink: 0;
}
.company-rollout-timeline .step-row:last-child .step-line {
    display: none;
}
.company-rollout-timeline .step-text {
    padding-top: 0.15em;
    text-align: left;
    min-width: 0;
}
.company-rollout-timeline .step-label {
    font-size: 0.65em;
    font-weight: 700;
    color: var(--gray-600);
    white-space: nowrap;
    text-align: left;
}
.company-rollout-timeline .step-desc {
    font-size: 0.5em;
    color: var(--gray-400);
    margin-top: 0.1em;
    line-height: 1.35;
    text-align: left;
}
.company-rollout-timeline .step-state-inactive {
    display: grid;
    grid-template-columns: 2em minmax(0, 1fr);
    gap: 0.7em;
    align-items: start;
    width: 100%;
}
.company-rollout-timeline .step-state-active {
    display: grid;
    grid-template-columns: 2em minmax(0, 1fr);
    gap: 0.7em;
    align-items: start;
    width: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
}
.company-rollout-timeline .step-state-done {
    display: grid;
    grid-template-columns: 2em minmax(0, 1fr);
    gap: 0.7em;
    align-items: start;
    width: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
}
.company-rollout-timeline .step-state-active .step-num {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    box-shadow: 0 0 0 3px rgba(255, 126, 12, 0.22);
}
.company-rollout-timeline .step-state-active .step-label {
    color: var(--orange);
    font-weight: 700;
}
.company-rollout-timeline .step-state-active .step-line {
    background: var(--brand-200);
}
.company-rollout-timeline .step-state-done .step-num {
    background: var(--brand-50);
    border-color: var(--brand-200);
    color: var(--orange);
    font-size: 0.58em;
}
.company-rollout-timeline .step-state-done .step-label {
    color: var(--gray-400);
}
.company-rollout-timeline .step-state-done .step-line {
    background: var(--brand-200);
}
/* Timing:
         s1: 1.0 appear · 1.6 active · 3.2 done
         s2: 3.8 appear · 4.4 active · 6.0 done
         s3: 6.6 appear · 7.2 active · 8.8 done
         s4: 9.4 appear · 10.0 active · 11.6 done
         s5: 12.2 appear · 12.8 active (stays) */
.company-rollout-timeline .step-row.s1 {
    animation: crt-slideInRight 0.5s ease 1s forwards;
}
.company-rollout-timeline .step-row.s1 .step-state-inactive {
    animation: crt-fadeOut 0.3s ease 1.6s forwards;
}
.company-rollout-timeline .step-row.s1 .step-state-active {
    animation:
        crt-fadeIn 0.3s ease 1.6s forwards,
        crt-fadeOut 0.3s ease 3.2s forwards;
}
.company-rollout-timeline .step-row.s1 .step-state-done {
    animation: crt-fadeIn 0.3s ease 3.2s forwards;
}
.company-rollout-timeline .step-row.s2 {
    animation: crt-slideInRight 0.5s ease 3.8s forwards;
}
.company-rollout-timeline .step-row.s2 .step-state-inactive {
    animation: crt-fadeOut 0.3s ease 4.4s forwards;
}
.company-rollout-timeline .step-row.s2 .step-state-active {
    animation:
        crt-fadeIn 0.3s ease 4.4s forwards,
        crt-fadeOut 0.3s ease 6s forwards;
}
.company-rollout-timeline .step-row.s2 .step-state-done {
    animation: crt-fadeIn 0.3s ease 6s forwards;
}
.company-rollout-timeline .step-row.s3 {
    animation: crt-slideInRight 0.5s ease 6.6s forwards;
}
.company-rollout-timeline .step-row.s3 .step-state-inactive {
    animation: crt-fadeOut 0.3s ease 7.2s forwards;
}
.company-rollout-timeline .step-row.s3 .step-state-active {
    animation:
        crt-fadeIn 0.3s ease 7.2s forwards,
        crt-fadeOut 0.3s ease 8.8s forwards;
}
.company-rollout-timeline .step-row.s3 .step-state-done {
    animation: crt-fadeIn 0.3s ease 8.8s forwards;
}
.company-rollout-timeline .step-row.s4 {
    animation: crt-slideInRight 0.5s ease 9.4s forwards;
}
.company-rollout-timeline .step-row.s4 .step-state-inactive {
    animation: crt-fadeOut 0.3s ease 10s forwards;
}
.company-rollout-timeline .step-row.s4 .step-state-active {
    animation:
        crt-fadeIn 0.3s ease 10s forwards,
        crt-fadeOut 0.3s ease 11.6s forwards;
}
.company-rollout-timeline .step-row.s4 .step-state-done {
    animation: crt-fadeIn 0.3s ease 11.6s forwards;
}
.company-rollout-timeline .step-row.s5 {
    animation: crt-slideInRight 0.5s ease 12.2s forwards;
}
.company-rollout-timeline .step-row.s5 .step-state-inactive {
    animation: crt-fadeOut 0.3s ease 12.8s forwards;
}
.company-rollout-timeline .step-row.s5 .step-state-active {
    animation: crt-fadeIn 0.3s ease 12.8s forwards;
}
/* ══════════════════════════════
         PHONE WRAPPER
         ══════════════════════════════ */
.company-rollout-timeline .phone-wrapper {
    position: absolute;
    left: 36%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    animation: crt-popInPhone 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s
        forwards;
}
@keyframes crt-popInPhone {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.65);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
/* QR-Scan: Blitzlichter um das Smartphone (ab 12.9s) */
.company-rollout-timeline .scan-flashes {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 17.5em;
    height: 21em;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 25;
    opacity: 0;
    animation: crt-fadeIn 0.35s ease 12.9s forwards;
}
.company-rollout-timeline .scan-burst {
    position: absolute;
    width: 2.2em;
    height: 2.2em;
    opacity: 0;
    background: radial-gradient(
        circle,
        #fff 0%,
        rgba(255, 255, 255, 0.92) 18%,
        rgba(255, 255, 255, 0.35) 42%,
        transparent 68%
    );
    filter: drop-shadow(0 0 0.35em rgba(255, 255, 255, 0.9));
}
.scan-burst::before,
.company-rollout-timeline .scan-burst::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: linear-gradient(
        90deg,
        transparent 38%,
        rgba(255, 255, 255, 0.95) 50%,
        transparent 62%
    );
    transform: translate(-50%, -50%);
}
.company-rollout-timeline .scan-burst::before {
    width: 160%;
    height: 22%;
}
.company-rollout-timeline .scan-burst::after {
    width: 22%;
    height: 160%;
    background: linear-gradient(
        0deg,
        transparent 38%,
        rgba(255, 255, 255, 0.95) 50%,
        transparent 62%
    );
}
.company-rollout-timeline .scan-burst--tl {
    top: 2%;
    left: -6%;
    animation: crt-scanBurst 2.7s ease-in-out 13.1s infinite;
}
.company-rollout-timeline .scan-burst--tr {
    top: 8%;
    right: -8%;
    animation: crt-scanBurst 2.7s ease-in-out 13.55s infinite;
}
.company-rollout-timeline .scan-burst--bl {
    bottom: 12%;
    left: -9%;
    animation: crt-scanBurst 2.7s ease-in-out 14s infinite;
}
.company-rollout-timeline .scan-burst--br {
    bottom: 6%;
    right: -7%;
    animation: crt-scanBurst 2.7s ease-in-out 14.45s infinite;
}
.company-rollout-timeline .scan-burst--l {
    top: 42%;
    left: -11%;
    width: 1.6em;
    height: 1.6em;
    animation: crt-scanBurst 2.7s ease-in-out 13.75s infinite;
}
.company-rollout-timeline .scan-burst--r {
    top: 38%;
    right: -10%;
    width: 1.6em;
    height: 1.6em;
    animation: crt-scanBurst 2.7s ease-in-out 14.2s infinite;
}
@keyframes crt-scanBurst {
    0%,
    76%,
    100% {
        opacity: 0;
        transform: scale(0.35);
    }
    7% {
        opacity: 1;
        transform: scale(1.25);
    }
    14% {
        opacity: 0.2;
        transform: scale(0.95);
    }
    22% {
        opacity: 0;
        transform: scale(0.6);
    }
}
.company-rollout-timeline .scan-ray {
    position: absolute;
    width: 0.22em;
    height: 3.2em;
    border-radius: 100px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.15) 55%,
        transparent
    );
    opacity: 0;
    transform-origin: center bottom;
}
.company-rollout-timeline .scan-ray--1 {
    top: 0;
    left: 18%;
    transform: rotate(-28deg);
    animation: crt-scanRay 2.5s ease-in-out 13.25s infinite;
}
.company-rollout-timeline .scan-ray--2 {
    top: 4%;
    right: 14%;
    transform: rotate(32deg);
    animation: crt-scanRay 2.5s ease-in-out 13.7s infinite;
}
.company-rollout-timeline .scan-ray--3 {
    bottom: 8%;
    left: 22%;
    transform: rotate(22deg) scaleY(-1);
    animation: crt-scanRay 2.5s ease-in-out 14.15s infinite;
}
.company-rollout-timeline .scan-ray--4 {
    bottom: 4%;
    right: 20%;
    transform: rotate(-24deg) scaleY(-1);
    animation: crt-scanRay 2.5s ease-in-out 14.6s infinite;
}
@keyframes crt-scanRay {
    0%,
    74%,
    100% {
        opacity: 0;
    }
    6% {
        opacity: 0.95;
    }
    13% {
        opacity: 0;
    }
}
.company-rollout-timeline .phone {
    position: relative;
    width: 13em;
    background: #111;
    border-radius: 2.6em;
    padding: 0.46em;
    box-shadow:
        0 0 0 0.09em #222,
        inset 0 0 0 0.06em rgba(255, 255, 255, 0.07),
        0 10px 50px rgba(0, 0, 0, 0.45),
        0 30px 30px rgba(0, 0, 0, 0.25);
}
.company-rollout-timeline .phone::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 50%;
    transform: translateX(-50%);
    width: 31%;
    height: 0.85em;
    background: #111;
    border-radius: 0 0 0.6em 0.6em;
    z-index: 30;
}
.company-rollout-timeline .phone::after {
    content: "";
    position: absolute;
    bottom: 0.7em;
    left: 50%;
    transform: translateX(-50%);
    width: 27%;
    height: 0.2em;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    z-index: 30;
}
.company-rollout-timeline .phone-screen {
    border-radius: 2.15em;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
}
/* ══════════════════════════════
         VCARD CONTENT
         ══════════════════════════════ */
/* Step 1: neutral gray placeholder */
.company-rollout-timeline .vc-bg-neutral {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(151deg, #c6c6c6 0%, #adadad 100%);
}
/* Step 3: brand color wipes in at 7.2s */
.company-rollout-timeline .vc-bg-brand {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(151deg, #ff7e0c -2%, #f24b2d 101%);
    clip-path: inset(0 100% 0 0);
    animation: crt-colorWipe 1.3s cubic-bezier(0.65, 0, 0.35, 1) 7.2s forwards;
}
@keyframes crt-colorWipe {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0% 0 0);
    }
}
/* White card */
.company-rollout-timeline .vc-card {
    position: absolute;
    top: 9%;
    left: 0.55em;
    right: 0.55em;
    bottom: 0.45em;
    z-index: 5;
    background: white;
    border-radius: 1.55em 1.55em 1.35em 1.35em;
    display: flex;
    flex-direction: column;
    padding: 1em 0.95em 0.85em;
    overflow: hidden;
}
.company-rollout-timeline .vc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
    margin-bottom: 0.55em;
}
/* Avatar */
.company-rollout-timeline .vc-avatar {
    position: relative;
    width: 3.5em;
    height: 3.5em;
    flex-shrink: 0;
}
.vc-ring-gray,
.company-rollout-timeline .vc-ring-grad {
    position: absolute;
    inset: -0.15em;
    border-radius: 50%;
}
.company-rollout-timeline .vc-ring-gray {
    background: #b8bcc4;
    animation: crt-fadeOut 0.7s ease 7.2s forwards;
}
.company-rollout-timeline .vc-ring-grad {
    background: linear-gradient(135deg, #ff6b8b 0%, #ff7e0c 65%, #ffa336 100%);
    opacity: 0;
    animation: crt-fadeIn 0.7s ease 7.2s forwards;
}
.company-rollout-timeline .vc-avatar-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 0.1em solid white;
    overflow: hidden;
    background: var(--gray-300);
}
/* Step 4: photo fills in at 10.0s */
.company-rollout-timeline .vc-avatar-photo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 32%,
        #ffb877 0%,
        #ff8a3c 55%,
        #e0691c 100%
    );
    opacity: 0;
    animation: crt-fadeIn 0.6s ease 10s forwards;
}
.company-rollout-timeline .vc-avatar-photo::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}
.company-rollout-timeline .vc-avatar-photo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 50%;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 255, 255, 0.42);
}
/* Logo slides in at 1.5s (visible in step 1) */
.company-rollout-timeline .vc-logo {
    width: 2.05em;
    height: 2.05em;
    flex-shrink: 0;
    margin-top: 0.25em;
    opacity: 0;
    transform: translateX(1.8em);
    animation: crt-logoSlideIn 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) 1.5s
        forwards;
}
@keyframes crt-logoSlideIn {
    from {
        opacity: 0;
        transform: translateX(1.8em);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.company-rollout-timeline .vc-logo svg {
    width: 100%;
    height: 100%;
}
/* Logo grau bis Schritt 3, dann gemeinsam mit CI-Farben */
.company-rollout-timeline .vc-logo svg path:first-child {
    fill: var(--gray-400);
    animation: crt-vcLogoBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcLogoBrand {
    to {
        fill: #ff7e0c;
    }
}
/* Skeleton shimmer — fades out at step 2 active (4.4s) */
.company-rollout-timeline .vc-skeleton {
    position: absolute;
    top: 5.7em;
    left: 0.95em;
    right: 0.95em;
    display: flex;
    flex-direction: column;
    gap: 0.32em;
    animation: crt-fadeOut 0.4s ease 4.4s forwards;
    pointer-events: none;
}
.company-rollout-timeline .skel {
    border-radius: 100px;
    background: var(--gray-200);
    animation: crt-skelShimmer 1.6s ease-in-out infinite;
}
@keyframes crt-skelShimmer {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}
.company-rollout-timeline .sk-n {
    height: 0.8em;
    width: 66%;
    margin-bottom: 0.15em;
}
.company-rollout-timeline .sk-s {
    height: 0.42em;
    width: 82%;
}
.company-rollout-timeline .sk-s2 {
    height: 0.42em;
    width: 64%;
}
.company-rollout-timeline .sk-u {
    height: 0.42em;
    width: 46%;
    margin-top: 0.1em;
}
.company-rollout-timeline .sk-div {
    height: 1px;
    width: 100%;
    background: var(--gray-200);
    margin: 0.45em 0 0.25em;
}
.company-rollout-timeline .sk-c {
    height: 0.34em;
}
/* Step 2: Daten einblenden — alles grau; Schritt 3 (7.2s): Markenfarben gemeinsam */
.company-rollout-timeline .vc-name-wrap {
    position: relative;
    height: 1.25em;
    flex-shrink: 0;
}
.company-rollout-timeline .vc-name {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 1.02em;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: -0.02em;
    opacity: 0;
    animation:
        crt-fadeIn 0.5s ease 4.4s forwards,
        crt-vcNameBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcNameBrand {
    to {
        color: var(--gray-900);
    }
}
.company-rollout-timeline .vc-subtitle {
    font-size: 0.5em;
    color: var(--gray-500);
    line-height: 1.4;
    font-weight: 600;
    margin-top: 0.45em;
    flex-shrink: 0;
    opacity: 0;
    animation: crt-fadeIn 0.5s ease 4.6s forwards;
}
.company-rollout-timeline .vc-url {
    font-size: 0.52em;
    color: var(--gray-500);
    font-weight: 700;
    margin-top: 0.3em;
    flex-shrink: 0;
    opacity: 0;
    animation:
        crt-fadeIn 0.5s ease 4.8s forwards,
        crt-vcUrlBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcUrlBrand {
    to {
        color: var(--orange);
    }
}
.company-rollout-timeline .vc-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-300);
    border: 0;
    margin: 0.7em 0 0.5em;
    flex-shrink: 0;
    opacity: 0;
    animation: crt-fadeIn 0.4s ease 4.85s forwards;
}
.company-rollout-timeline .vc-lower {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.45em 0 0.2em;
}
.company-rollout-timeline .vc-citem {
    opacity: 0;
}
.company-rollout-timeline .vc-citem.i1 {
    animation: crt-fadeIn 0.5s ease 5s forwards;
}
.company-rollout-timeline .vc-citem.i2 {
    animation: crt-fadeIn 0.5s ease 5.15s forwards;
}
.company-rollout-timeline .vc-contact-label {
    font-size: 0.36em;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 0.3em;
}
.company-rollout-timeline .vc-contact-row {
    display: flex;
    align-items: center;
    gap: 0.55em;
}
.company-rollout-timeline .vc-cicon {
    width: 0.8em;
    height: 0.8em;
    fill: var(--gray-400);
    flex-shrink: 0;
    animation: crt-vcIconBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcIconBrand {
    to {
        fill: var(--orange);
    }
}
.company-rollout-timeline .vc-contact-text {
    font-size: 0.65em;
    color: var(--gray-600);
    text-decoration: underline;
    text-underline-offset: 2px;
    animation: crt-vcContactTextBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcContactTextBrand {
    to {
        color: #0a0a0a;
    }
}
.company-rollout-timeline .vc-socials {
    display: flex;
    gap: 0.5em;
    opacity: 0;
    animation: crt-fadeIn 0.5s ease 5.3s forwards;
}
.company-rollout-timeline .social-linkedin {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: 1.5px solid var(--gray-300);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: crt-vcSocialBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcSocialBrand {
    to {
        border-color: var(--orange);
        background: color-mix(in srgb, var(--orange) 5%, white);
    }
}
.company-rollout-timeline .social-linkedin svg {
    width: 1.05em;
    height: 1.05em;
    fill: var(--gray-400);
    animation: crt-vcSocialIconBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcSocialIconBrand {
    to {
        fill: var(--orange);
    }
}
.company-rollout-timeline .vc-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    padding-top: 0.5em;
    flex-shrink: 0;
    opacity: 0;
    animation: crt-fadeIn 0.6s ease 5.45s forwards;
}
.company-rollout-timeline .vc-btn {
    border-radius: 100px;
    background: var(--gray-400);
    color: white;
    font-size: 0.44em;
    font-weight: 600;
    padding: 0.75em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    box-shadow: none;
    animation: crt-vcBtnBrand 0.7s ease 7.2s forwards;
}
@keyframes crt-vcBtnBrand {
    to {
        background: var(--orange);
        box-shadow: 0 3px 12px rgba(255, 126, 12, 0.32);
    }
}
.company-rollout-timeline .vc-btn svg {
    width: 0.9em;
    height: 0.9em;
    fill: white;
    flex-shrink: 0;
}
/* ══════════════════════════════
         LOCK SCREEN OVERLAY (step 5)
         Slides up from bottom at 12.2s
         ══════════════════════════════ */
.company-rollout-timeline .ls-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    transform: translateY(100%);
    animation: crt-lockSlideUp 0.7s cubic-bezier(0.65, 0, 0.35, 1) 12.2s
        forwards;
}
@keyframes crt-lockSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
.company-rollout-timeline .ls-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 1;
}
.company-rollout-timeline .ls-logo {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
}
.company-rollout-timeline .ls-logo-icon {
    width: 1.8em;
    height: 1.8em;
    border-radius: 0.35em;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-rollout-timeline .ls-logo-icon svg {
    width: 1em;
    height: 1em;
}
.company-rollout-timeline .ls-logo-name {
    font-size: 0.38em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}
.company-rollout-timeline .ls-time {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}
.company-rollout-timeline .ls-time-digits {
    font-size: 2.8em;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.02em;
    line-height: 1;
}
.company-rollout-timeline .ls-time-date {
    font-size: 0.55em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.3em;
}
/* QR pops in after lock screen arrives (~12.9s) */
.company-rollout-timeline .ls-qr-area {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
    opacity: 0;
    animation: crt-qrPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 12.9s forwards;
}
/* Scan-Blitz: leicht größeres Rechteck nur über dem QR-Code */
.company-rollout-timeline .qr-scan-flash {
    position: absolute;
    top: -0.22em;
    left: 50%;
    width: 4.35em;
    height: 4.35em;
    transform: translateX(-50%);
    border-radius: 0.52em;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
    animation: crt-qrScanFlash 2.6s ease-in-out 13.15s infinite;
}
@keyframes crt-qrScanFlash {
    0%,
    72%,
    100% {
        opacity: 0;
        background: rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
    5% {
        opacity: 1;
        background: rgba(255, 255, 255, 0.72);
        box-shadow:
            0 0 0.6em rgba(255, 255, 255, 0.85),
            0 0 1.2em rgba(255, 255, 255, 0.35);
    }
    12% {
        opacity: 0;
        background: rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes crt-qrPopIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.7) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
    }
}
.company-rollout-timeline .qr-box {
    position: relative;
    z-index: 3;
    width: 3.8em;
    height: 3.8em;
    background: white;
    border-radius: 0.4em;
    padding: 0.28em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 0.06em;
}
.company-rollout-timeline .qr-cell {
    border-radius: 0.06em;
}
.company-rollout-timeline .qr-cell.b {
    background: #101828;
}
.company-rollout-timeline .qr-cell.w {
    background: transparent;
}
.company-rollout-timeline .ls-qr-label {
    font-size: 0.42em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.4em;
}
.company-rollout-timeline .ls-qr-dot {
    width: 0.45em;
    height: 0.45em;
    border-radius: 50%;
    background: var(--orange);
    animation: crt-dotPulse 2s ease-in-out 13.5s infinite;
}
/* "Griffbereit" badge */
.company-rollout-timeline .griffbereit {
    position: absolute;
    top: -1.2em;
    left: -3.5em;
    right: auto;
    z-index: 20;
    opacity: 0;
    white-space: nowrap;
    animation: crt-fadeIn 0.4s ease 13.5s forwards;
}
.company-rollout-timeline .gb-badge {
    background: #fff;
    border: 1px solid var(--brand-200);
    border-radius: 100px;
    padding: 0.22em 0.65em;
    font-size: 0.52em;
    font-weight: 700;
    color: var(--orange);
    box-shadow: 0 2px 8px rgba(255, 126, 12, 0.2);
    display: flex;
    align-items: center;
    gap: 0.3em;
}
/* ══════════════════════════════
         HEADLINE BADGE (bottom)
         ══════════════════════════════ */
.company-rollout-timeline .headline {
    position: absolute;
    bottom: 9%;
    left: 58%;
    transform: translateX(-50%);
    z-index: 20;
    opacity: 0;
    white-space: nowrap;
    animation: crt-fadeDown 0.7s ease 0.2s forwards;
}
.company-rollout-timeline .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: var(--brand-50);
    border: 1px solid var(--brand-200);
    border-radius: 100px;
    padding: 0.3em 1.1em;
    font-size: 0.68em;
    font-weight: 600;
    color: var(--brand-700);
}
.company-rollout-timeline .badge-dot {
    width: 0.46em;
    height: 0.46em;
    border-radius: 50%;
    background: var(--orange);
    animation: crt-dotPulse 2s ease-in-out 1s infinite;
}
/* ══════════════════════════════
         TIME INDICATOR
         ══════════════════════════════ */
.company-rollout-timeline .time-pill {
    position: absolute;
    right: 16.5em;
    left: auto;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 0.18em 0.55em;
    font-size: 0.38em;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}
.company-rollout-timeline .s1 .time-pill {
    animation:
        crt-fadeIn 0.3s ease 1.6s forwards,
        crt-fadeOut 0.3s ease 3.2s forwards;
    top: 0.15em;
}
.company-rollout-timeline .s2 .time-pill {
    animation:
        crt-fadeIn 0.3s ease 4.4s forwards,
        crt-fadeOut 0.3s ease 6s forwards;
    top: 0.15em;
}
.company-rollout-timeline .s3 .time-pill {
    animation:
        crt-fadeIn 0.3s ease 7.2s forwards,
        crt-fadeOut 0.3s ease 8.8s forwards;
    top: 0.15em;
}
.company-rollout-timeline .s4 .time-pill {
    animation:
        crt-fadeIn 0.3s ease 10s forwards,
        crt-fadeOut 0.3s ease 11.6s forwards;
    top: 0.15em;
}
.company-rollout-timeline .s5 .time-pill {
    animation: crt-fadeIn 0.3s ease 12.8s forwards;
    top: 0.15em;
}
/* ── Shared keyframes ── */
@keyframes crt-fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes crt-fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
@keyframes crt-fadeDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
@keyframes crt-slideInRight {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes crt-dotPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.72);
    }
}
